Everything posted by Joseph
-
Enter Amount boolean snippet
For those wondering how to find out if the enter amount is up for people to handle it correctly and not miss up. Here the snippet. Best fail safe so a character doesnt type an amount in the chatbox. /** * the interface is usually never null, but changes location when visible or not * * @return true if the 'enter amount' interface is visible */ public boolean canEnterAmount() { RS2Widget warning = getWidgets().get(548, 119); return warning != null && !warning.getPosition().equals(new Point(-1,-1)); } have fun and happy scripting
-
Looking for PHP snippet for updating MYSQL data
Opps http://osbot.org/forum/topic/70713-dynamic-signature-php-snippet/
-
What is allowed in a script
you can do what ever you want its your script. As long as there is no malicious code. Also it cant not be time limited. It can be featureless.
-
Found fl studio 11 cracked
send me a pm and ill link you guys to the software
-
Found fl studio 11 cracked
If you are interested in the software. i found it free and cracked. It comes with the key. Let me know if you want it. FL Studio Producer Edition 11.1.1
-
COMPLETED (for now) Space Invaders [Java Project]
Where the source? I'm really digging the little game.
-
Looking for PHP snippet for updating MYSQL data
Tom I found this
- @Mald
-
Looking for developers to team up with for future botting related projects
good luck finding someone to answer those questions
-
For scripters
http://prntscr.com/72mwkv http://prntscr.com/72mv9k better pictures @Valkyr
-
For scripters
this is like a few line of code to initialize it and its an easy and quick paint. seeing as im trying to make a few scripts. Its annoying to have to repeat / remake the paint edit: ill post pics in a little
-
For scripters
http://prntscr.com/72mgae i just made this painter to make things easier for me. Would you guys use it if i release it?
-
SimpleCombat by Foulwerp
me like it
-
WTF is this?
hes splashing magic, magic bonus so low he cant hit. Defend so high imp cant hurt him lol
-
Event executor is taking too long to suspend; terminating now...
I believe its because of the logout method above the world hop. I believe the world hop class should automatically log out and hop worlds for you without having to force the logout.
-
HUMFIDY SCRIPT
I'm working on a magic script, lend me your account I'll be glad to do it for you
-
Checking to see if an item in your inventory has a certain action?
Twin do not use != false If you do If (boolean) <-- its already checking to see if its true. If (!boolean) <-- false check
-
OSBot (Free)
Sometime we even have free scripts out. Its working perfectly and we have nobody replying on the thread. Util something break and out of no where we have everybody complainning. Perfect example: my plunder script.
-
Webwalker
play with this, have fun. getMap().getRegion(); //return regionn instance http://osbot.org/api/org/osbot/rs07/api/map/Region.html
-
Mayweather....
Learn to listen lol. If you truly listen to the fight you'll see they were horse riding may the whole time. Not once did they speak good about PAC. So if you don't watch boxing and either do I. How you going to say listen to the game.On top of that all may did was hide and play defence. What if PAC did the same thing, it wouldn't be a good game.
-
Implementing mouse presses?
Oh nice op seeing as you already implemented the interface. Just do in the onStart getBot().getCanvas().addKeyListener(this);
-
Game Object Issue
Inb4 2 plunder scripts on the sdn
-
Implementing mouse presses?
I don't see anything to add key listener.Op I do know in keyboard class you can grab the key Listener class.so use that instance to do want you need
-
Implementing mouse presses?
Do you see that keyevent use the argument to know when the key has been pressed You talk about mouse pressed title. But in the op it talks about key pressed
-
How to filter inventory items that only contains a certein action?
getInventory().filter(new ActionFliter<Item>(actions)); This will return a list of items with the action. Actions I think is a varg aka array