Everything posted by Joseph
-
OSBot 2.1.X Being Released This Weekend!
Was the Cpu fixed for osbot 2
-
What the min and max?
ill probably do it tomorrow, im working on other thing. This isnt such a big issue just wanted to know
-
What the min and max?
Does anybody know?
-
What the min and max?
So what the minimum & maximum amount that you could step the mouse speed to? All i know that the default speed would be 12.
-
OSBot2 Event (Node) Driven Script Skeleto
if (!(myPlayer().getAnimation() == _618)) Should be if (myPlayer().getAnimation() != _618)
-
Checking the player's height.
getZ() return the players plane aka the position(x, y, z) . edit: what about try using client.getMyPlayer().getHeight();
-
What's sex?
I don't know I've never had it ;P
-
Overriding default BankPin Script
Where do you put this at?
-
Simple door snippet
You could also use that. Which return a rs2Object at the specific location. client.getCurrentRigion.getObjectAtLocal(id, x, y, z);
-
Looting Bag
i updated it, but i will fixing two - three methods and i might add in a method. But that will be done later
-
Looting Bag
I'll fix up the class and add in more methods
-
How can i detect if players are nearby?
Not everything has to be in he snippet. Snippets are for more advance stuff. You could also check the issues sub-forum. Something someone might have the same question. And another person could answer for them. Here a link: http://osbot.org/forum/topic/46118-following-players/ That method give you a list of people in your area not including your self. You can simply do getPlayer(area).size > 0
-
Drop method
I made a drop method I'll see if I can find it
-
Flawless Path Walking
Check it out and let us know
-
API Question
Ya that's what your looking for. You need to activate the change to figure out which config it is. It's hard to explain it, it's better if you see it for your self. A great example would be for you to go into your construction house in building mode. Then change it to non building mode. And you see how config 780 changes from 0 to 1024 when buildings mode is on. You could create you own little method. private boolean buildingModeOn() { return client.getConfig(780) == 1024; }
-
Would I get permed?
usually the first ban is a warming temp, the second is usally a perm
- How to detect pkers?
-
Null pointer with .getZ()
dont let onGround extend script, make a constructor for the onGround and like swizz said initialize it. Use this as an example.
-
Null pointer with .getZ()
its a null pointer exception so check to see if your player isnt null null checking it plane
-
Get current tree
Shit I didn't know what sout was when I first saw I though it was like shout out. So does that make me a nub
-
How to detect pkers?
I'm pretty sure I made a method for someone that asked a question just like this before. I'll see if I could find it. edit: here return a list of players in your area
-
How to detect pkers?
Create an area. Get all local people within that area. Loop through them and remove your self.
-
Priority
How would you do that? Could you provide an example
- What is "For"?
-
Make GUI open on start.
Create a Boolean within your GUI class. Add an event handler on your start button , within the event handler invert the Boolean, also dispose the GUI. In your main class within your onloop set the GUI visible. Then you will sleep while your GUI is still running