Jump to content

Reminiscence

Lifetime Sponsor
  • Posts

    128
  • Joined

  • Last visited

  • Feedback

    100%

1 Follower

About Reminiscence

Profile Information

  • Gender
    Male

Recent Profile Visitors

2560 profile views

Reminiscence's Achievements

Steel Poster

Steel Poster (4/10)

33

Reputation

  1. 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.
  2. 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
  3. woooooooowwwwww global mod

    well deserved, gj gj

  4. 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
  5. 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?
  6. 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(); } }
  7. he has it spelled correctly, lol @op how are you calling this method?
  8. 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.
  9. Imagine actually wearing this, lol. Painful enough seeing people wear Jamflex shirts.
  10. 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
  11. 14.5m per acc, shouldn't take more than a couple days tops. Can start right now.
×
×
  • Create New...