Jump to content

Ragnar Lothbrok

Members
  • Posts

    210
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    100%

Everything posted by Ragnar Lothbrok

  1. Need an account that is NMZ ready - preferably flat 70's. Don't care about any other stats or quests as I'll be botting this account until ban. Let me know your prices.
  2. Nah you need a custom login handler - @Explv posted one in the snippets section. That should be a good starting point.
  3. Currently I'm working on a NMZ script which I plan to release publicly. Most of the script is complete however I'm looking for a few people to help aid the testing process. This process will probably last about 1 week and over this time the script will be updated daily (sometimes more than once). If you're interested in helping test this out message please reply to this thread using the following template: Account Level: Average Botting Hours Per Day: Stats You're Looking To Train:
  4. Looking nice mate, looking forward to seeing this released
  5. That's true! I'll ask @gearing if it's cool that his can be release as I took it on under the assumption it would be private so wouldn't want to go back on that without asking. All others will be released, I'll edit the thread.
  6. Release what publicly? If you mean the NMZ script I referenced that's the plan
  7. Currently working on a public NMZ script which is nearing release however I'm just doing some extensive testing at the moment. Taking on a couple of scripts for users to keep me busy while I'm testing the NMZ script. Because these are free I'm not going to take on any ridiculous scripts that are going to require a lot of time and effort - simple scripts only. Let me know what you're looking for and I'll let you know if I can find time to create it for you. I'm also happy to provide full source code should you wish to inspect this or even use it as a learning tool. You'll need to provide an account and basic supplies if the script you require has any sort of reqs that are not easily achievable.
  8. I'm assuming this is an instance? You can try using local positions - failing that I'd find some static object that is always there and use that as an anchor point to build your pathing. You can translate a local position to an absolute position by: x = localX + baseX y = localY + baseY z = localZ + baseZ
  9. Do you have all the items required in your inventory/bank for Adamant Armour and Monkfish? Can you let me know your setup and I'll try reproduce.
  10. Can build this if you're able to provide an account with fair ring in your house - I don't meet the requirments
  11. Ragnars Warrior Guild Currently out with the premium Warrior Guild scripts on the SDN there are no feature rich scripts for this mini-game, I hope you appreciate my time and effort to bring this script to you guys. Info Current Version: v1.3 Script Features Running Modes: Collect Tokens Collect Tokens & Kill Cyclops Only Kill Cyclops Misc Settings: Use Quick Prayers Move Mouse Outside Screen During Combat Food Settings: Supports Most Food Bank When Out Of Food Set HP % To Eat At Token Settings: Supports All Armour Types Set Token Amount To Begin Killing Cyclops Cyclops Settings: Progressive (Loots Best Defender) Camp Top Floor (Loots Defenders Up To Rune) Camp Bottom Floor (Loots Dragon Defenders) Do you require any features that are not listed above? Leave a post and I'll be sure to look into the possibility of adding these features. GUI Bug Reports If you come across any bugs while using this script please report them here and I'll be sure to look into them in a timely manner. Download RagnarsWarriorGuildObfuscated.jar
  12. Script has been released man!
  13. Ragnars Giant Mole Full source is on Github - Link below. Feel free to fork the repository and make any changes you wish to customize this script to suit your individual needs Info Current Version: v1.0 Requirments Rock Cake Super Combat Potions(4) Prayer Potions(4) Stamina Potions(4) Spade Bullseye Lantern Tinderbox (The script will try to light your lantern if it's not light) Quick prayers set-up with at least Protect from Melee. House/Falador Teleports depending on what setting you use Falador portal in your house if house teleports are used How To Run The Script Start the bot at Falador East Bank with the inventory set-up you wish to use and the equipment set-up you'd like to use. Here's the set-up I used while building this script: Features Bank when out of supplies or inventory is full and no items can be dropped Drink from any pool that you have in your house Hop if anyone else is in the mole lair Enable/Disable Quick prayers Drinks Prayer/Super Combat/Stamina potions Drops Empty Vials Maintains 1hp using the rock cake Bug Reports If you come across any bugs while using this script please report them here and I'll be sure to look into them in a timely manner. Sourcehttps://github.com/Ragnar-Lothbrok-OSBot/RagnarsGiantMole Download RagnarsGiantMole.jar
  14. There's no free construction scripts on the SDN - could be a good shout.
  15. GroundItem item = getGroundItems().closest(n -> (n != null && n.exists() && lootItems.contains(n.getName()))); //This can still return null item.interact("take"); Change that to: GroundItem item = getGroundItems().closest(n -> lootItems.contains(n.getName()); if (item != null) { item.interact("take"); } You're doing your null check inside your lambda expression however if that call returns null you're not doing a further null check before trying to interact.
  16. Looking for someone to create a few script icons for me. Base template that all the icons will follow - changing only the script name and background images etc to keep costs lower. Let me know your price per icon - understandably the first icon may be dearer as that's when the base template will be created.
  17. Pretty sure I had a similar issue before when I was trying to: <class>.exchangeContext(getBot()); in a class that extends MethodProvider - could be wrong though.
  18. if (dialogues.completeDialogue("SeamenOption")) { new ConditionalSleep(9000, (int) (Math.random() * 436 + 247)) { @Override public boolean condition() throws InterruptedException { return !getDialogues().inDialogue(); } }.sleep(); } This wont work as I assume the option from the dialog isn't "SeamenOption" - this needs to match the String they offer exactly. You know WebWalking takes care of this all for you? Area karamjaDocks = new Area(2943, 3149, 2947, 3145); if (!karamjaDocks.contains(myPosition)) { getWalking.webWalk(karamjaDocks); } else { // We are on Karamja }
×
×
  • Create New...