Everything posted by Ragnar Lothbrok
-
Need NMZ Account
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.
-
Ragnar's NMZ - Need some help testing
Still looking for a few more people!
-
Logout sleep
Nah you need a custom login handler - @Explv posted one in the snippets section. That should be a good starting point.
-
Ragnar's NMZ - Need some help testing
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:
-
Sorceress's Garden Script - Development Log
Looking nice mate, looking forward to seeing this released
-
Doing Some Free Scripts
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.
-
Doing Some Free Scripts
Release what publicly? If you mean the NMZ script I referenced that's the plan
-
Doing Some Free Scripts
Doing a script for @gearing atm
-
Doing Some Free Scripts
Ragnar Lothbrok#7873
-
Doing Some Free Scripts
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.
-
Walking around under runescape
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
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
-
Dapper-ISH Wildy Altar | PKER DETECTION | WORLD HOPPING | NO RISK
Nice release man!
-
p2p Runecrafting
Can build this if you're able to provide an account with fair ring in your house - I don't meet the requirments
- Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
-
Ragnars Warrior Guild - 「Collect Tokens」「Progressive Defender Looting」「Camp Top/Bottom Floors」
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
-
My dicing/ auto typer script.
Fixed it for him
-
WIP
Script has been released man!
- Ragnars Giant Mole -「Source Code」「Dharok's Only」
-
Ragnars Giant Mole -「Source Code」「Dharok's Only」
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
-
Looking for script idea for my first script
There's no free construction scripts on the SDN - could be a good shout.
-
Script lagging out with null errors.
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.
-
Script Icons
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.
-
Help needed - Local script not starting
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.
-
Dialogue Script Help!
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 }