Jump to content

Zappster

Suspended
  • Posts

    1015
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by Zappster

  1. Curly brakets are the fun part

  2. Don't have skype sorry Inbox me how long it will take you What level is it now and what's your asking price?
  3. If you've got an account close to 85, let me know. I prefer it to have just the thieving. Can pay with PP/RSGP.
  4. privet menya comrad. kak tebya zavoot ee kak dela
  5. Try deleting your data folder inside C:/users/USERNAME/OSBot Or /home/USER/OSBot if you're on linux/mac
  6. I would if I didn't get banned
  7. Ok, I know this is going to me hated as it bashes on two of your beloved and respect moderators... Muffins and Assnerd. If you guys have seen my in the chat box, you know I've got a bit of a mouth BUT it's litterly banter. That's all. I dish it and I can take it. If you can't take it, let me know and I'll stop. In the chat, someone, said they where a furry. My response was "Yiff in hell furry fgt". Assnerd didn't like this, so I get kicked. I called Assnerd a furry fgt. (after rejoining the chat) Muffins kicks me. I get pointed to a thread that states the 'hierarchy' of mods, from Muffins. I reply "The heirarchy of mods? You mean the Nazi regime of the mods" <- a nazi joke to demonstrate how strict and ruthless some of the mods are with the powers that they hold. And now I'm banned from the chat box. I asked for an unban in PM with Muffins but got a simple No. As of writing this, I'm not unbanned. Personally I don't think I deserve to be banned from the chatbox for this. This is just my reaction to abuse of mods that are censoring the chat box because they simply don't like what they see. Maybe they get triggered IDK. Please can I get unbanned? I've seen the "errors" in my ways and I promise I'll never talk to a mod again. It's not like I'm here leaching all your scripts. I'm activly trying to write a full sorcGarden minigame script that will be free to all osbot users (since the only one's around are all private or don't work).
  8. So you can get on? At the moment I have bot v2.4.15 and the highest I can download from this site is v2.4.15 and I still can't get on.
  9. If anyone else has this problem, a solution is to check if the gate is open already, and if it's not open, that's when you run your open command. Credit to Explv for giving me this in the chat box public boolean doorIsClosed(RS2Object door) { return Arrays.asList(door.getDefinition().getActions()).contains("Open"); }
  10. I'm getting the rotation of an NPC and .getRoration() returns an int, which is fine. My problem is that in the API it's not documented what the return is for north,east,south and west. I kinda need those and don't have the ability to test for a few days - so, if any of you guys have int value for North,south,east and west can you please post them?
  11. Hey, I managed to resolve the problem thanks to FrostBug. Dumbass me had the wrong type. Here's my line of code: Entity npc1 = npcs.closest(id); The .getRotation belongs to the Character type and needs casting from NPC. So if you have this problem and need to get the N/E/S/W position of an NPC, you need to change the type to NPC like so: NPC npc1 = npcs.closest(id); int rot = npc1.getRotation(); I'm still stuck on what .getRotation returns. Is this correct? 1-North 2- East 3- South 4- West or is it.. 0-North 1-East 2-South 3-West or something I've missed completly?
  12. This has been partially solved, please scroll down to my next reply for the solution So for my script I need to find out which way my NPC is walking. I've checked the API and did some googling to find that: npcs.closest(id).getRotation would work, however it looks like it has been depricated in the API. I can't see anything in the NPCS that would help me find the solution to this. I know I could grab 2 positions of the NPC and work out the direction myself, but my script is heavily reliant on timing and leaves me with not much room to do this calculation. I could make it work for my script so it's not the end of the world, it's just that I'd like to aviod rewriting functions. So, any clean way to get the rotation of an NPC without having to take 2 positions? Thanks.
×
×
  • Create New...