Jump to content

Zappster

Suspended
  • Posts

    1015
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Posts posted by Zappster

  1. I'd suggest going back a page and reading my post a little bit more thoroughly, it details current limitations.

     

    "and all the snazzy stuff like teleporting and taking boats hasn't been included."

    I read that as

    "and all the snazzy stuff like teleporting and taking boats hasn't been tested."

    for some reason.  Nvm. Carry on lol.

    • Like 1
  2. Fast Tables - Mahogany table builder+remover

     

     


    Before you start (check list):

    1. Make sure you can build mahogany tables, if you can't, then this is not the script for you.

    2. Make sure you have a Demon butler

    3. Please make sure your inventory is like this (You'll need maybe more $$$.. but please take more planks than 1 noted)

    4. Make sure you're in your house + on building mode

    5. Make sure you are standing close to the build spot

    6. Make sure your demon is following you with 24 more planks.

     

    **The script will start as soon as you press go, no confirmation windows or anything. If it's a problem I will add in, until then enjoy the crap paint smile.png**

     

    Download:

    v1.0: (media fire download) (virus scan)

     

    Looking for progress reports lol. I know it works because I botted 60-80 in a single night, before I had intentions of releasing it or putting any paint on it. Cons is expensive as f**k and you need like  a 2 hour proggress pic before it can be uploaded to the SDN, so if you can get me a 2hour run report I'll shoot you 10$ worth of PP or RSPGP.

  3. 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).

  4. Yeah was a update earlier, maybe it's that, but theres been a new version out since i last used the bot a couple of hours ago, have you tried downloading that?

     

    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.

  5. 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");
    		}
    
    • Like 1
  6. 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?

     

     

  7. 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?

  8. 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...