-
Reminiscence changed their profile photo
-
Ban waves?
I got a one day ban while making a Slayer script. All I did was check the enchanted gem like 10 separate times and got off. My IP isn't even flagged, I haven't touched OSRS in years and I have no previous bans on my account. This is pretty unexpected. Stealth mode as well, cause I read it was apparently better now than mirror mode.
-
Username Change
Used to be able to do it yourself, until a certain lifetime sponsor abused it and trolled Maldesto with it, so you gotta make request threads now
-
Forum darkmode
dark theme or we riot
-
Picking up small fishing net ?
ah that's awkward, it's tagged as an object instead of a grounditem. i wasn't aware of that lol @LagunaPreza here's something that works then import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; @ScriptManifest(name = "test", author = "Reminiscence", version = 1.0, info = "", logo = "") public class test extends Script { RS2Object net; public int onLoop() throws InterruptedException { net = objects.closestThatContains("Small fishing net"); if (net != null && !inventory.isFull() && map.canReach(net)) { net.interact(); sleepy(2500, net == null); } if (net == null) sleep(200); return 100; } public void sleepy(int time, boolean until) { new ConditionalSleep(time) { @Override public boolean condition() throws InterruptedException { return until; } }.sleep(); } } since the object doesn't seem to disappear, i guess it makes no sense to have a conditionalsleep of this manner. you could just do a sleep(200) or something so it doesn't spam click like a typical bot would
-
Picking up small fishing net ?
What about it doesn't work? Does the script start? Does it hover over the object? Is there anything in the logger? Are you sure you're trying to loot a small fishing net? Is your inventory full? Can you walk to the fishing net? Can you buy a small fishing net, drop it underneath you and run the script to see if it gets picked up?
-
Picking up small fishing net ?
that's odd, the code should work then. either way, here you go. import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import org.osbot.rs07.utility.ConditionalSleep; import java.awt.*; @ScriptManifest(name = "test", author = "Reminiscence", version = 1.0, info = "", logo = "") public class test extends Script { GroundItem net; public int onLoop() throws InterruptedException { net = groundItems.closest("Small fishing net"); if (net != null && !inventory.isFull() && map.canReach(net)) { net.interact(); sleepy(2500, net == null); } if (net == null) sleep(200); return 100; } public void sleepy(int time, boolean until) { new ConditionalSleep(time) { @Override public boolean condition() throws InterruptedException { return until; } }.sleep(); } }
-
Picking up small fishing net ?
he has it spelled correctly, lol @op how are you calling this method?
-
What free scripts would you like to see on the SDN?
that's exactly what my original slayer script did years ago though, lol granted, it only supported lower-tier masters. i'm currently working on a new one that's more modular. it'll be free as well.
-
I've done it boys!
Imagine actually wearing this, lol. Painful enough seeing people wear Jamflex shirts.
-
I've been a part of this site for over 6 years, what do y'all think of me
legit never seen your name before in my life
-
Appealing botting bans
Imo this is kinda how it'll go - 1. They don't let you do the whole account sharing thing IIRC (stronghold of security really emphasizes this) - No 2. This seems like the best-case scenario. Ownership means a lot. - Maybe 3. They'll probably just tell you that it was a valid email. - No 4. They'll emphasize that they haven't, but can't share details. - No 5. They'll probably tell you that you shouldn't use any other clients than the official runescape client in the future. - No 6. They probably already checked if your IP was different when it was banned in comparison to the IP that you played on. - No
-
Bit of Questing
14.5m per acc, shouldn't take more than a couple days tops. Can start right now.
-
The client is fixed
What exactly did you do? test
-
The client is fixed
delete the .jar file you currently have and re-download it afaik deleting the jar and the folder have worked for others over the years
-
The client is fixed
Did you install webwalking when the client launches and asks you to install webwalking?