Everything posted by theholyman
-
Confirming osbot
All good man i could of had a rat but like i said the computer only has osbot to my knowledge but meh shit happens i guess.
-
Confirming osbot
Im just confirming my theory i could be completely wrong not trying to hate on you im just expressing my concerns.
-
Confirming osbot
Obviously didnt read my afk theory 1 week + etc It bad package warriorkiller; import java.awt.Graphics; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.Entity; import org.osbot.script.rs2.model.GroundItem; import org.osbot.script.rs2.model.Player; import org.osbot.script.rs2.skill.Skill; import org.osbot.script.rs2.utility.Area; @ScriptManifest(author = "no thanksy", info = "Kills warriors at al-kharid", name = "Basic warrior", version = 0.2) public class basicwarrior extends Script { static long runTime; final String WARRIOR = "Al-Kharid warrior"; final Area PALACE = new Area (3305, 3175, 3280, 3179); public static int[] FOOD = {333, 347, 325, 315, 319}; @Override public void onStart() { log("Go to the palace at al-kharid for this script to work"); } @Override public void onPaint(Graphics g) { } @Override public int onLoop() throws InterruptedException { Player player = client.getMyPlayer(); Entity kharid = closestAttackableNPCForName(WARRIOR); if (PALACE.contains(player)); { if (kharid !=null) { if (kharid.isVisible()) { if (!client.getMyPlayer().isUnderAttack()) { kharid.interact("Attack"); sleep(random(600, 700)); } else { client.moveCameraToEntity(kharid); } } } } return 50; //sleep time } @Override public void onExit() { //when stopped log("scommed"); } }
-
Confirming osbot
Who said i was smart i made a warrior killing bot not hard. And doesnt mean there wasint a rat in the osbot itself.
-
Confirming osbot
I ran my own scripts so i didnt hack my self and like i said i used a separate computer.
-
Confirming osbot
Im here confirming osbot does go on your account and clean it if you haven't played for a certain amount of time. My proof Been cleaned of osbot like 3 times each time it has happened each time i have left the game and not logged in for a week or so. My theory on how they clean the account after a certain amount of time is because i have left my bot runing for long amount's of time and logged in daily nothing will be touched each time i go for week + Boom all gone. For anyone thinking i was just keylogged or i have a rat on my computer. No i do not have anything i run my bots on a computer i brought for botting So basically nothing else is on the computer but osbot. For any of the random kids who say "No osbot #1 dey never hax me" Stfu the kids who have been cleaned probably just never cared. I do not care they looted my shit i could not care less just informing everyone.
-
Warrior killer
Thanks i didn't realise that ill fix right away
-
Warrior killer
This is my first ever script this is a work in progress i am using this script to learn more and how to do different things so any help is appreciated. The purpose of this script is to kill al-kharid warriors . The code. ( I'm still learning so no need to be harsh but any help is appreciated ) package warriorkiller; import java.awt.Graphics; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.Entity; import org.osbot.script.rs2.model.Player; import org.osbot.script.rs2.utility.Area; @ScriptManifest(author = "Brody", info = "Kills warriors at al-kharid", name = "Basic warrior", version = 0.2) public class basicwarrior extends Script { final String WARRIOR = "Al-Kharid warrior"; final Area PALACE = new Area (3305, 3175, 3280, 3179); @Override public void onStart() { //Before the script starts it goes through this method log("Go to the palace at al-kharid for this script to work"); } @Override public void onPaint(Graphics g) { //Graphics (displaying graphics on screen) } @Override public int onLoop() throws InterruptedException { Player player = client.getMyPlayer(); Entity kharid = closestAttackableNPCForName("WARRIOR"); if (PALACE.contains(player)); { if (kharid !=null) { if (kharid.isVisible()) { if (!client.getMyPlayer().isUnderAttack()) { kharid.interact("Attack"); sleep(random(600, 700)); } else { client.moveCameraToEntity(kharid); } } } } return 50; //sleep time } @Override public void onExit() { //when stopped log("thanks for using my script I hope you enjoyed it and it benefited you!."); } } What needs to be done Banking Picking up items Eating Will add more in future
- Young Maldesto