Jump to content

Ande

Members
  • Posts

    555
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

Everything posted by Ande

  1. Ande

    Apogoly

    I'm not going to talk about it but it actually wasn't that big of a deal and that's why I made this topic.
  2. I've had a lot going on in my life but I wanted to post this for anyone that still uses osbot. I want to apogoly anyone who purchased one of my premium scripts and didn't get to use it enough to make up for the money they used to buy it. I should've keep them updated for longer but it just didn't happen. I made lot's of free scripts because I knew this was going to happen sooner or later. I'm sorry. It's okay if you are angry at me.
  3. Ande

    Farewell friends.

    Bye, I didn't hate you #freescripts
  4. Ande

    Ande's Quester

    Ande's Quester I'm trying to script all F2P quests because why not. After I've done all the f2p ones I'll add some p2p quests too. I think I'll record videos of some quests soon. I'm trying to make the script to collect most of the items if it doesn't take too much time. For most quests you need almost no items. Quests Black Knights' Fortress Cook's Assistant Demon Slayer Doric's Quest Dragon Slayer Ernest the Chicken Goblin Diplomacy Imp Catcher The Knight's Sword Pirate's Treasure Prince Ali Rescue The Restless Ghost Romeo & Juliet Rune Mysteries Sheep Shearer Shield of Arrav Vampire Slayer Witch's Potion Not started | Has some bugs | Working or some minor bugs Things to do: Add all f2p quests and make them flawless Quest chaining system Nice GUI
  5. Something like this would work I think long amount = client.getInventory().getAmount("Item"); item.interact("Take"); sleep(500); while(myPlayer().isMoving()){ sleep(50); } sleep(500); if(amount != client.getInventory().getAmount("Item")){ itemsLooted++; } Yeah basically the same as above...
  6. Some old local version, haven't tried if it works.
  7. Ande

    mfw..

    i assume this is something LoL related. I have no idea but I agree .
  8. if(door.getDefinition().getActions()[0].equals("Open")){ door.interact("Open); }
  9. Ande

    OSBot 1.8.1-6

    java -DsocksProxyHost=IP -DsocksProxyPort=PORT -cp "OSBot 1.8.1.jar" org.osbot.engine.Main forgot the quotes
  10. Ande

    OSBot 1.8.1-6

    take that one extra java out of there java -DsocksProxyHost=IP -DsocksProxyPort=PORT -cp OSBot 1.8.1.jar org.osbot.engine.Main
  11. This seemed to work. bot.getKeyboard().pressKey((char)KeyEvent.VK_ENTER); bot.getKeyboard().releaseKey((char)KeyEvent.VK_ENTER);
  12. I think you could put something like this in your onloop if(!checked && client.getLoginState() == 30){ checkThings(); }
  13. Got this when starting the client Going to test my scripts and see if the emulator runs them correctly Got this when using worldhopper with the emulator. It logs out and then starts throwing that error. I think someone already mentioned this but not sure if it's the same. [ERROR][Bot #1][04/04 08:54:04 ip.]: Error on random executor! java.lang.NullPointerException at org.osbot.legacy.script.rs2.randoms.RandomBehaviourHook.shouldActivate(qj:152) at org.osbot.legacy.script.rs2.randoms.RandomManager$1.shouldActivate(ci:81) at org.osbot.script.event.RandomExecutor.run(rk:161) at java.lang.Thread.run(Unknown Source) Another one, was starting script. I think i tried to start it once before that and it didn't start properly so I tried again. [DEBUG][04/04 09:00:50 ip.]: Launching script... [INFO][Bot #1][04/04 09:00:50 ip.]: Loaded 26 built-in and third-party random solvers! [INFO][04/04 09:00:50 ip.]: Started script : Ande's Chopper v1.23 [ERROR][04/04 09:00:50 ip.]: Uncaught exception! java.lang.ThreadDeath at java.lang.Thread.stop(Unknown Source) at org.osbot.script.event.ScriptExecutor.stop(lh:35) at org.osbot.TA.run(wh:354) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Scrolling in the script selector with mousewheel seems very slow, it took 7 scrolls to scroll through this forum page and 24 scrolls in the script selector to go from top to bottom and I only have 5 sdn scripts and few local ones
  14. Ande

    v1.7.98

    Thanks, had to kill those damn chickens when training new accounts.
  15. Ande

    v1.7.98

    bug report: 1) 1.7.98 http://puu.sh/7V5QT/3817345dfd.png The combat random handler tries to run away from goblins. I tried checking the source but didn't undestand why it does that(if it's the same). Only seems to happen with goblins.
  16. I would probably do it like this public final Position[] positions = {new Position(2827,3087,0), new Position(2827,3036,0), new Position(2826,3087,0), new Position(2826,3085,0)}; public Position getRandomPosition(){ return positions[random(positions.length)]; }
  17. public boolean lootOnGround(){ GroundItem g; for (String s: GUILoot){ g = closestGroundItemForName(s); if(g != null) return true; } return false; } Or just closestGroundItemForName((String[])GUILoot.toArray()) to pass it as a whole
×
×
  • Create New...