Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • mankel200

    Members
    • Posts

      17
    • Joined

    • Last visited

    Recent Profile Visitors

    The recent visitors block is disabled and is not being shown to other users.

    mankel200's Achievements

    1. Hey, im trying to use the level 1 enchant ability on some items. About 20-30% of the time the script will just be stuck on magic tab, as you can see in the embedded picture. Also sometimes it gets stuck on the "Filters" tab, its located on the bottom of magic tab Do you guys have any ideas on how to fix these problems? @Override public int onLoop() { if (Inventory.contains("Emerald ring")){ Magic.castSpell(Normal.LEVEL_1_ENCHANT); sleep(Calculations.random(100, 200)); if (Tabs.isOpen(Tab.INVENTORY)){ Inventory.get("Emerald ring").interact(); sleep(Calculations.random(100, 200)); } }
    2. I did this on an account that was over lvl 6 thieving, with an empty inventory and only ran this part of the script that i pasted here
    3. It does absolutely nothing
    4. Hey, im trying to walk to an exact tile but it doesnt work. Here is my code: Tile cake1 = new Tile(2669,3310,0); if (Skills.getRealLevel(Skill.THIEVING) >= 6 && !getLocalPlayer().getTile().equals(cake1) && Inventory.isEmpty()){ Walking.walk(cake1); sleep(Calculations.random(1000, 2300)); }
    5. mankel200

      Null error

      Pretty sure it was a problem with java or something since it fixed itself lol
    6. mankel200

      Null error

      it happens even though i null check it
    7. mankel200

      Null error

      Hey, is there something wrong with this code since i seem to get an error? I get an nullpointerexception on "if inventory is full" if (Inventory.isFull()) { Walking.walk(TREES.getRandomTile()); sleepUntil(() -> !getLocalPlayer().isMoving(), 20000); sleep(Calculations.random(500, 1200)); Inventory.get("Tinderbox").useOn("logs"); sleepUntil(() -> getLocalPlayer().isMoving(), 20000); sleep(Calculations.random(500, 1200)); }
    8. Hey, is it possible to buy VIP with crypto somehow ?
    9. Basically im trying to get my script read from chat I have tried this but didnt get it to work: public void onGameMessage(@NotNull Message message){ if (message.getMessage().contains("I can't")){ log("vituiks"); Walking.walk(TREES.getRandomTile()); sleep(Calculations.random(1000, 1500)); } }
    10. Im getting errors on console when using GameObject normalTree = GameObjects.closest("Tree"); Is it wrong to use that and normalTree.interact("Chop down") for chopping?
    11. Im getting errors on console when using GameObject normalTree = GameObjects.closest("Tree"); Is it wrong to use that and normalTree.interact("Chop down") for chopping?
    12. Nvm i forgot to import something lmao, u can delete this thread
    13. So for example i wanted to walk inside a random area like this: private final Area TREES = new Area(3293, 3407, 3271, 3465); I thought Walking.walk(TREES.getRandomTile()); would work since i saw it used in another script but it doesnt.. Any tips?
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.