Everything posted by hreyvirtue
-
The script does not change the world
If you're on 2.5.35 then world hopping is bugged, download the latest dev version and it'll fix itself
-
๐ฅ KHAL SCRIPTS TRIALS ๐ฅ HIGHEST QUALITY ๐ฅ BEST REVIEWS ๐ฅ LOWEST BANRATES ๐ฅ TRIALS AVAILABLE ๐ฅ DISCORD SUPPORT ๐ฅ ALMOST EVERY SKILL ๐ฅ CUSTOM BREAKMANAGER ๐ฅ DEDICATED SUPPORT
may i pls have trial for tutorial island script, much appreciate
-
PVP Jug Filler
I still get banned even with new proxies Probably just a bad provider or just unlucky
-
Ton of errors when I put a interruptedexception
That happens when you copy and paste something from a forum Try retyping the whole code you copied
-
PVP Jug Filler
Yeah same here Usually banned before even getting 7qp so I don't think its entirely related to my script rip
- PVP Jug Filler
-
PVP Jug Filler
I'm not going to be home for a couple days but the muling process is just recognizing that your mule is trading with you (onmessage) And then banking (simple copy and paste your banking method) And then trading; which the get trade api is pretty straightforward https://osbot.org/api/org/osbot/rs07/api/Trade.html All you need to do is declare your mule by using Mule = getplayers.closest("") and then mule.interact(Trade with"); also if it's not trading or recognizing your mule and your mule has a space use a replaceall for the spaces and replace with "/u00a0" Also you need to getamount of the item you're trading Or just use a placeholder number like 100,000 Up to you Hopefully this helps at all Good luck =}
-
PVP Jug Filler
The mule system allows you go to onto your mule and manually trade the bot and it'll withdraw jow, trade you and accept & yea
-
PVP Jug Filler
I use an auto clicker to click in place of the button
-
PVP Jug Filler
-
7qp F2P Quester
You can use it now, whenever the script goes to talk to duke, just press 2 and itll proceed as normal
-
Buying all Jugs[osrs]
I think this is the right forum, but buying all jugs 3gp ea thanks contact via discord: Local Raccoon Lover#1337
-
Faster/more frequent bans recently?
Ever since around Friday, my suicide accounts(20+ banned) have gone from lasting 16-20 hours on average to barely lasting 2 hours; The scripts used haven't changed, i've tried changing VPNs, i've tried using the random.dat tool to remove all runescape-related files, but to no avail. Am I just getting really unlucky? Any advice appreciated, thanks
-
An "AIO" Monster killer & looter (up to 4 items)
This week I decided to try and learn how to make a GUI, and by doing so I created a monster killer that allows you to type what monster you want to kill and what item you want to pick up. Case sensitive, by the way. I don't see this as a script worth using to "suicide bot" or even to train an account(for extended periods), but I do see it being useful for very minor tasks like looting, very minimal slayer, or if you simply want to learn off of it and take whatever you can from it, it's up to you really. If looting is used in popular areas (on an ironman), the script will endlessly loop picking up items that you can't pick up because you're an ironman btw. "Preview" of script: If youtube links aren't allowed, just tell me and i'll delete As usual, please leave feedback whether it's negative or positive, I appreciate any Thanks, Main.java AIO Killer.jar
-
Script refusing to acknowledge the widget on screen
270, 3 didn't work Oooh, I see Thanks
-
Script refusing to acknowledge the widget on screen
That worked, thank you so much :3
-
Script refusing to acknowledge the widget on screen
It was my first option, but didn't work so I tried the other way. is this the wrong one? And i've tried 270,16 (white border around bow string) to no avail
-
Script refusing to acknowledge the widget on screen
I'm trying to make a flax bot, but it just refuses to acknowledge the "would you like to spin" widget on screen; the code: RS2Widget wouldyouliketospin = getWidgets().getWidgetContainingText("spin"); //spin RS2Widget spin= getWidgets().get(270, 5); if (getInventory().contains("Flax")) { //Does inventory contain flax? if (!Wheel_Area.contains(myPlayer())) { //Are we near the Spinning Wheel? log("In wheel area"); if (wheel != null) { //Is the Spinning Wheel in clickable distance? wheel.interact("Spin"); //Spin boy new ConditionalSleep(5000){ @Override public boolean condition(){ return myPlayer().isAnimating() || !wheel.exists(); } }.sleep(); log("Beginning to spin flax"); if (spin != null) { //Choose Bowstring this.getKeyboard().typeKey('3'); log("Spinning flax"); } else { log("I broke"); All it does is return "I broke"; what am I doing wrong? I've tried putting in the widget id for the bowstring button as well, with no success Thanks for your help Ignore my awful coding btw thx