Jump to content

Senpai snippet


botelias

Recommended Posts

Noticed a lack of scripts that pleases Senpai, so decided to make a simple snippet for people to use. 

It will run to Dark Wizards, plead with Senpai, then repeat.

Features a simple GUI. Please share proggies.


Reqs: Low level, low HP, inventory full of high value items. Auto retaliate off. Anime inspired names is a huge + . 

MUST RUN FOR ATLEAST 3 HOURS PER DAY!

package CoreKill;

import java.awt.Color;
import java.awt.Graphics2D;

import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;
import org.osbot.rs07.api.map.Area;


@ScriptManifest(name = "Be Gentle", version = 1.0, info = "Please senpai, be gentle UwU", author = "botelias", logo = "")
public class DarkWizards extends Script {
	int count = -1;
	
	Area area = new Area(
		    new int[][]{
		        { 3233, 3369 },
		        { 3231, 3365 },
		        { 3227, 3364 },
		        { 3224, 3366 },
		        { 3223, 3369 },
		        { 3224, 3373 },
		        { 3228, 3375 },
		        { 3232, 3373 }
		    }
		);
	
    public void onPaint(Graphics2D g)
    {	  
    	g.setColor(Color.GREEN);
   		g.drawString("Roughed upp by senpai: " + count + " times", 20, 50);
    }
    @Override
    public int onLoop() throws InterruptedException {
    	if(!area.contains(myPlayer())) {
    		count = count + 1;
    		keyboard.typeString("Ara ara");
    		sleep(1000);
    		getWalking().webWalk(area);
    		sleep(1000);
    	}else {
    		while(area.contains(myPlayer())) {
    			if(random(1,3) == 1) {
    				keyboard.typeString("Pls be gentle");
    				sleep(1000);
    			}else {
    				if(random(1,3) == 1) {
    					keyboard.typeString("Not so rough senpai");
        				sleep(1000);
    				}else {
    					keyboard.typeString("Uwu Uwu");
        				sleep(1000);
    				}
    			}
				sleep(random(500,1000));
    		}
    	}
    	
        return 500;
    }
}

 

Senpai.jar

Edited by botelias
Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...