Jump to content

Rudie

Members
  • Posts

    2847
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Rudie

  1. Three days grace, Breaking Benjamin, Fall Out Boy, Sum 41, A Day To Remember, Blink 182, The Offspring
  2. 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!
  3. Rudie

    Depositbox

    Sorry, my bad. Version is: 2.3.48.
  4. Rudie

    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
  5. Rudie

    Depositbox

    if(dpbox != null) { if(dpbox.interact("Deposit")) { while (!depositBox.isOpen()) sleep(250); depositBox.depositAllExcept(PICKID); } }
  6. Rudie

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

    MirrorClient v1.04

    Thanks! Awesome work MGI!
  8. Go to settings at the client and click debug inventory, you should get the id's of every item in your inventory.
  9. 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.
  10. if(myPlayer().isInteracting(gardener)) { } Kan je dat proberen, geen idee of het werkt heb het snel even gemaakt
  11. Let me try something, hold on.
  12. 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
  13. 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) { }
  14. 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(); }
  15. Yes, that would indeed be a better solution.
  16. Just add a sleep long enough till it animates again if it will take 1 second for it to animate again add a sleep of 1000ms before the smelt method.
  17. Just use: if(!myPlayer().isAnimating()) { smelt sleep }
  18. Well, I got tot 36 in like 4-5 hours but to 43 is the double amount of XP of 36 so I'm guessing 10-13 hours.
  19. Some scripts are and some aren't here, I defenitly notice every script responds slower than at standard mode.
  20. Yeah I thought it would automatically count up but it didn't I logged it to the console to see and it just pasted it right after, I'll go report it in a few minutes.
  21. Don't worry, I will , thanks for helping out!
×
×
  • Create New...