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
  • Diggington

    Scripter
    • Posts

      82
    • Joined

    • Last visited

    Everything posted by Diggington

    1. Understood - thanks for the advice!
    2. Hey guys, I'm curious as to the consensus on how to test scripts that you don't have an account with the requirements for. For example, if I wanted to create a Vorkath bot, I would need an account with DS2 done, which is a large investment. What is the general approach for these sorts of issues? Is there some private server or development environment we could use for testing these? Or is it just a case of 'git gud noob'?
    3. Elite Cow Killer which kills cows next to the Crafting Guild and banks at Falador! Features: Slays cows in a quiet area Collects cowhides and banks when invent is full Configurable target level to switch combat styles at (melee only) Supports bone burying Supports Skills Necklace
    4. Aware of the issue, working on a fix now
    5. Hey, I need to fix one of my scripts on the SDN, but when I go to push a new version I receive the following error: git push origin master @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: POSSIBLE DNS SPOOFING DETECTED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ The ECDSA host key for ssh.dreambot.org has changed, and the key for the corresponding IP address 143.198.12.24 is unknown. This could either mean that DNS SPOOFING is happening or the IP address for the host and its host key have changed at the same time. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that a host key has just been changed. The fingerprint for the ECDSA key sent by the remote host is SHA256:Sao9YbnD0FxBe2fGha2xDSYYVyhJvh6Y2HuVmWyrmqI. Please contact your system administrator. Add correct host key in /home/XXX/.ssh/known_hosts to get rid of this message. Offending ECDSA key in /home/XXX/.ssh/known_hosts:3 remove with: ssh-keygen -f "/home/XXX/.ssh/known_hosts" -R "ssh.dreambot.org" ECDSA host key for ssh.dreambot.org has changed and you have requested strict checking. Host key verification failed. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. I'm not super familiar with git so any help would be appreciated. I tried some solutions from StackOverflow but couldn't get it working. Thanks
    6. I fixed this btw, it was a problem with caching the local player and starting the script when I was away from the bank :')
    7. Hey guys, Wondering if this is a bug or a problem with my code. Basically, when my script goes to access the bank at Corsair Cove, for some reason after clicking to interact with the bank booth, it will change to the spellbook tab and click on Wind Strike. I have literally nothing in my code which should be causing this behavior. Here's the banking code: private void Bank(Player localPlayer) { Area bankArea = new Area(2562, 2866, 2572, 2858, 0); if (localPlayer.getZ() < 0) { ClimbUpLadder(localPlayer); } while (!bankArea.contains(localPlayer)) { Walking.walk(bankArea.getRandomTile()); sleep(Calculations.random(300, 2600)); } if (bankArea.contains(localPlayer)) { GameObject booth = GameObjects.closest("Bank booth"); if (booth != null){ if (booth.interact("Bank")){ //HERE'S WHERE IT OPENS THE SPELLBOOK AND CLICKS ON WIND STRIKE if(Sleep.sleepUntil(() -> Bank.open(), Calculations.random(5142, 8694))){ if (Bank.depositAllItems()){ sleep(Calculations.random(1066, 2512)); if (localPlayer.getHealthPercent() <= 75) { Bank.withdraw("Tuna", Calculations.random(3,6)); } Bank.close(); sleep(Calculations.random(620, 1582)); } } } } I've got a video of the issue, but it's too big to attach. Happy to upload it to Google Drive or something and share link link, if that's allowed.
    8. Just another clay miner script. Features: Mines clay at Rimmington mine Banks at Falador east Paint to show script duration, ores mined, levels gained and current state Anti-ban measures: Will rarely and randomly prospect rock instead of mining Will randomly examine objects in the environment Randomly toggles run to improve efficiency Setup: On start, select the type of pickaxe to use. MAKE SURE TO HAVE IT EQUIPPED OR IN YOUR INVENTORY
    ×
    ×
    • 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.