Jump to content

Reminiscence

Lifetime Sponsor
  • Posts

    128
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by Reminiscence

  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.

    • Like 1
    • Sad 1
  2. 18 minutes ago, FuryShark said:

    Its not the spelling of the item im meaning...

    Settings -> options -> debug -> Entity hover debug

    ki7YvHT.png
    its missing <col=ff9040> </col>

    @LagunaPreza

    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

    • Like 1
  3. 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?

  4. 2 minutes ago, LagunaPreza said:

    I've put this code in the OnLoop

    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();
    	}
    }

     

  5. On 5/11/2020 at 6:38 PM, JitasrEr said:

    A slayer script would be really nice, but that may be more work than you were planning to put in for a free script. I don't think there are currently any slayer scripts (free or premium) that will do a task, report back to slayer master for another task, and then continue to the next task.

    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.

  6. 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

    • Like 1
  7. 4 minutes ago, caesar78 said:

    I get this option then I press install then it says failed to install webwalk.

    Does anybody have the files I can manually put them in my C drive.

    2019_09_09_15_16_43_Settings.png

    2019_09_09_15_17_19_OSBot_Boot.png 2.png

    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

  8. 4 minutes ago, caesar78 said:

    It's strangely enough not there, I've search the whole of my directory I simply cannot find anything.

    This is strange... Anybody else having issues?

    Did you install webwalking when the client launches and asks you to install webwalking?

  9. 27 minutes ago, raikzun420 said:

    Im just desperate @Mordred
    But yea... Pretty much. You guys makes too many bot farms :D

    I'll take it right now if you're still selling lol

    currently talking to you on discord, can you please confirm that this is you?image.png.3d0e81018b86f2eab4d4bf17980df5fa.png, can y

  10. 3 minutes ago, Muffins said:

    wearing workout clothes to the gym isn't your "brand" ?

     

    Bruh.

    gotta wear name brands to impress all the other people at the gym

    the reps don't matter as long as you're wearing fashionscape

    • Like 1
×
×
  • Create New...