Everything posted by Rudie
-
OSBot 2.3.57/58 - Weekend Release - New World API + Filters
Thanks for the updates! Keep up the amazing work!
-
Happy Easter Osbot Members :)
You too, have a good one!
-
April Fools Video Prank in Math Class
No need to be rude, once again: grow up.
-
April Fools Video Prank in Math Class
Nice comeback m9. Oh, and sarcasm is often not recognisable if you're reading it, if you talk you can hear a tone in the voice which then leads to sarcasm, if you just write it down like that no wonder I was thinking you were being dead serious.
-
April Fools Video Prank in Math Class
It's an april fools joke, grow up.
-
Coffee
Only when I'm at work, without coffee I can't work the full 8 hours...
- Goal to 100k Earth Runes
-
VIP Payment Method
You can buy a $10 voucher in the store and buy VIP with that, had the same problem, I had to add a credit card to my paypal account but I didn't have to when I bought a voucher.
-
I keep getting an error telling me I need to be a VIP
Mirror client is currently in beta stage, only available for VIP+. Anyone can purchase premium scripts and use them.
-
Favorite Music
Three days grace, Breaking Benjamin, Fall Out Boy, Sum 41, A Day To Remember, Blink 182, The Offspring
- onMessage()
-
onMessage()
I use this: public void onMessage(Message message) throws java.lang.InterruptedException { String txt = message.getMessage().toLowerCase(); if (txt.contains("the fire catches")) { firesMade++; } } Good luck!
- Depositbox
-
Depositbox
If I wasn't I wouldn't post a report here. It seems to occur randomly, most of the time it works fine, but it happened 2 times now. Newest
-
Depositbox
if(dpbox != null) { if(dpbox.interact("Deposit")) { while (!depositBox.isOpen()) sleep(250); depositBox.depositAllExcept(PICKID); } }
-
Depositbox
Version: 1.04.269 Cosole output: [ERROR][Bot #1][03/22 02:45:47 PM]: Error in script executor! java.lang.NullPointerException at org.osbot.rs07.api.Widgets.isVisible(zg:60) at org.osbot.rs07.api.Widgets.isVisible(zg:55) at org.osbot.rs07.api.DepositBox.isOpen(ii:140) at ClayMiner.Miner.bank(Miner.java:104) at ClayMiner.Miner.onLoop(Miner.java:88) at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(dl:173) at java.lang.Thread.run(Unknown Source) Script: private clayminer. Hooks that failed: DepositBox, would not deposit, interface was open but would not do anything. JVM bit version: 32
- MirrorClient v1.04
-
Noob needs some help
Go to settings at the client and click debug inventory, you should get the id's of every item in your inventory.
-
Noob needs some help
Isn't there a method in the API to select a specific option? I can't make an example method right now cause I shut down my PC cause I'm going to bed in a few minutes.
-
Noob needs some help
if(myPlayer().isInteracting(gardener)) { } Kan je dat proberen, geen idee of het werkt heb het snel even gemaakt
-
Noob needs some help
Let me try something, hold on.
-
Noob needs some help
Well you try to see if a boolean is true but you dont check a variable, when programming you can't just put plain text like you have in line 20 in the if statement. And for the coin id it should be 995 if I remember correctly
-
Noob needs some help
Sorry double posted
-
Noob needs some help
Yes put the coin thing at the beginning of your loop. To define the npc: NPC gardener = npcs.closest("Wyson the gardener"); (Also make sure you import NPC). Line 20 you forgot the brackets at the if statement it should be: if(code here) { }
-
Noob needs some help
Line 30: You want to get to the NPC but you try to define it as an object. Line 31: You try to interact with a variable called stall but that's never made. Line 32: Same as 31. For the coin thing: if(!(inventory.getAmount(COINID) < 20)) { stop(); }