Jump to content

Alek

Ex-Staff
  • Posts

    7878
  • Joined

  • Last visited

  • Days Won

    200
  • Feedback

    100%

Everything posted by Alek

  1. Okay, I'll turn the forums offline until every little detail is perfected.
  2. Alek

    NO.

    We didn't do the upgrade for the hell of it.
  3. We've done one major forum version upgrade once in 3 years and it wouldn't really help bring the site back up any faster (considering I was only working on the theme). So a separate test server that would get used once every couple of years wouldn't be really worth it. All the normal botting services were still available.
  4. Alek

    NO.

    It's the same layout but for IPB4. Still working out the kinks.
  5. I'm not going to invest too much time in updating the Chatbox, since I'd have to be editing the raw files and not config files. Chatbox service is going down in April/May. I'm looking into mobile detection and the SDN right now. Edit: Recent Topics is having an issue right now. Thanks for reporting
  6. Post any issues you may have with the new forum upgrade below. I'll also be looking for feedback on the general design for about the next week. Issues I'm aware of: -Leaderboards not working -SDN page not accessible -Recent Topics not working
  7. The forum has finished upgrading. Sorry for the delay, there were some issues with getting the new theme to work. Over the next week I'll be dedicating some time to restoring forum features and fixing miscellaneous bugs. Please give your feedback below! -The OSBot Staff
  8. Not a chance in hell. I'd rather transform the CBA rank to a "Community Helper" rank and give them the power to edit the posts of new members.
  9. Alek

    Emotes

    There, ??? was changed to ":???:" and all the default smiley faces are back. This community is going to explode when the IPB Chat module EOL happens in May and all the smileys disappear.
  10. Alek

    Emotes

    Only active chatboxers noob.
  11. Alek

    Emotes

    Noah's emote was removed because nobody used it. Jack's emote was removed because nobody used it; I offered to give Jack his emote back but instead he opted it for a new emote which I added. Unless I'm missing some default emotes, we have more emotes than we did before.
  12. Alek

    Emotes

    Oh please! The Chatbox regulars come to me with cool emote ideas and I add them as long as they're appropriate. Maldesto of course has control over the emotes as well. This drama is just as bad as complaining about how many people showed up to Trump's inaugural; who the hell cares?
  13. 19 Jan 17: Finished basic login system, there isn't an interface for it because it would just waste time. Right now it just reads your credentials from a text file. If your username and password doesn't exist, it just creates a new account for you (will definitely change in the future). Since the only thing you can do in the game right now is move around, the only thing saved it your X and Y coords. The game is at a really good point. We have a basic map, the player can move around on the server, you can see other players in the same world as you, and your progress is saved. For now I'm going to take a week or two break to clean up a lot of the disgusting code I wrote.
  14. Using filters! Two ways: 1. getNpcs().filter(new Filter<NPC>() { @[member='Override'] public boolean match(NPC obj) { return obj.getPosition().distance(myPosition()) > 2; } }); 2. java.util.List<NPC> npcs = getNpcs().getAll().stream().filter(n -> n.getPosition().distance(myPosition()) > 2).collect(Collectors.toList()) Edit: Then you can use a comparator: npcs.sort(new Comparator<NPC>() { public int compare(NPC npc1, NPC npc2) { return npc1.getPosition().distance(myPosition()) - npc2.getPosition().distance(myPosition()); } }); So this will return the closest npc which is more than 2 tiles away.
  15. Strange, I drop my inventory horizontally when playing and botting and I haven't been banned for over 2 years.
  16. Because it drops it sequentially in array order.
  17. I went through all of them yesterday. Looks like I forgot his, thanks.
  18. Just a quick patch to the Prayer API so it should be functioning again. The code was a bit older so I made a fix to potentially prevent future updates from re-breaking it. Also if anyone has accounts with any of the new Prayer spells, please PM me.
  19. I'll probably have a test server up at the end of the month.
  20. 16 Jan 17: I've finished writing a simple local player class that sends information to the server, asking for the player to perform a certain action (currently the only action is movement). The server then validates the action and sends it back to the client. Additionally I wrote the code so you can see other players on the server (along with their unique player sprites, movements, etc). So at the very least this is now a multiplayer game. I'm only doing server sided checks for now, but later on I'll be adding a preliminary client-sided check before it asks the server to ease up on the server load. From here I'm going to write a simple player profile for the server to save the player's information. I don't want to get crazy with the login system so for testing, you will have a text document on your computer that will have your username and password.
  21. getMap().getRegion().getTiles()[z][x][y].getObjects()
  22. JavaFX won't work on the SDN but will work locally.
  23. I think if I just cut the existing signature height dimension in half it would be a lot nicer.
  24. I personally have signatures disabled because I don't want to waste my ISPs bandwidth, but for a lot of people it's just plainly an eye sore. Currently VIP+ can have 3 images at 800x600 (although the maximum dimension for the total signature we enforce at 800x600). Choice 1: VIP+ can have 4 images but the total dimension size is reduce to 800x300 Regular members are restricted to 2 images at 400x250 Choice 2: VIP+ can keep the same 3 images, but the total dimensions for each image is 250x250 Regular members are restricted to 2 images at 200x200
×
×
  • Create New...