Everything posted by Chris
- sell 07 gold
-
My road to 99 Thieving (botted; powered by OmniPocket)
I test my scripts on flagged ips ;) GL
-
Constant NPE? Need help
ahh hot damn folks! Sinatra scripter noob did it again! thanks again!
- buying waterfall quest
-
Constant NPE? Need help
Issue Code Source package me.sinatra.machine.Activities; import me.sinatra.machine.util.Activity; import org.osbot.rs07.api.filter.Filter; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; /** * Created by Sinatra on 8/5/2015. */ public class attackTarget implements Activity { @Override public boolean shouldDoActivity(Script s) { return ((!s.myPlayer().isAnimating()) && (s.myPlayer().isVisible()) && (!s.myPlayer().isUnderAttack())); } @Override public int doActivity(Script s) throws InterruptedException { final NPC cow = s.npcs.closest(new Filter<NPC>() { @Override public boolean match(NPC npc) { return npc != null && npc.getName().equals("Cow") && !npc.isUnderAttack() && npc.getHealth() > 0 && s.map.canReach(npc); } }); if (!cow.isVisible() || (cow == null)) { s.camera.toEntity(cow); s.sleep(s.random(2000)); } else { cow.interact("Attack"); s.sleep(s.random(300)+3000); } return (s.random(500,2000)); } } Need help
- agar
- Selling 1M 07
-
Quests! Powerleveling!
osbotsinatra1 can do the questing
- 50 range?
-
4 Accounts banned at same time...
clay is high banrate ,,,
-
Open for request..
want to test a earth runecrafter for me? if so add my skype: osbotsinatra1
-
Cant load my local scripts
Can anyone teach me GUIs?
-
Need reliable efficient questers
Skype: osbotsinatra1
-
Price check pure
45 attack (Quested) 63 Strength 1 Defence 44 range 73 mage No email attatched
-
Account w/o registered email, up to 50M+
41-63-1 44 range 73 mage 53 hp no email registered Quested 41 attack atm
-
FREE BETA, DREAMSCRIPTS LIVE!
thx /*not postcount*/
-
Open for request..
Do you have an account that can do this? I would love to attempt this.
-
Muffins Amulet Stringer [140k+ Magic Xp/Hr] [Easy To Use]
Nice. Glad to know you fixed your issues m9
-
Whats wrong with my scripts logic?
try to keep it somewhat clean. for example (Credit to Isolate) State getState() { if (skills.getStatic(Skill.THIEVING) >= 5) { if (TEA_STALL_AREA.contains(myPlayer())) { if (inventory.contains("Cup of tea")) { return State.DROP; } else { return State.STEAL; } }else{ return State.WALK_STALL; } }else{ return State.POCKET; } and have functions private void Pick() throws InterruptedException { NPC npc = npcs.closest("Man"); if (npc != null){ if (npc.exists() && (!myPlayer().isAnimating()) && npc.isOnScreen()){ Status = "Interacting: Pickpocket"; npc.interact("Pickpocket"); sleep(random(300,600)); }else{ camera.toEntity(npc); } } } case POCKET: Status = "IDLE"; Pick(); break;
-
PPOSB - AIO Hunter
- My New Signature
how about fire on the sides and not the top? idk still looks good- When RS Gets Srs AF
- What style of script is best for new script writers?
import org.osbot.rs07.api.model.Entity; import org.osbot.rs07.api.model.NPC; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; import java.awt.*; @ScriptManifest(author = "Sinatra", info = "The best bot ever", name = "SPOCKET", version = 1.0, logo = "") public class Spocket extends Script { public void onStart() { } private enum State{ STEAL,DROP } State getState() { if (inventory.contains("Cup of tea")) { return State.DROP; } return State.STEAL; } private void Thieve(){ Entity T_STALL = objects.closest("Tea stall"); if (T_STALL != null && (!myPlayer().isAnimating())){ T_STALL.interact("Steal-from"); } } private void drop(){ log("Dropping shit tea"); inventory.drop("Cup of tea"); } @Override public int onLoop() throws InterruptedException { switch(getState()){ case STEAL: Thieve(); sleep(random(300,600)); break; case DROP: drop(); sleep(random(300,600)); break; } return random(100, 250); } @Override public void onExit() { } @Override public void onPaint(Graphics2D g) { } } Deciding to fix it just for the tea stall :P- Need 1-40 Ranged Cannoned
add my skype: osbotsinatra1 can do this cheap and quick.- What style of script is best for new script writers?
hmm i'll look into it later c: going to bed and dont have time to test :p - My New Signature