March 16, 20205 yr 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 March 16, 20205 yr by botelias
March 16, 20205 yr Just died on my lvl 101 HCIM, refund please. also be careful with that while condition btw
Create an account or sign in to comment