Everything posted by k9thebeast
-
dialogue.inDialogue() not working
- WebWalking Broken After Update?
From what I see some of the hooks need updating.- 2 all stakers
flick style +3 attack lash style +1 attack +1 def deflect style +3 def flick style / deflect - use when you are 96 str lash - when you are 97+ str you're welcome. Dont stake if you dont have 99hp Video assumes max maining -> this is for odds staking- event.execute always giving me an NPE
NPC storeGuy = script.getNpcs().closest("Store"); if(storeGuy != null){ script.log("Trading store guy"); InteractionEvent e = new InteractionEvent(storeGuy, "Trade"); e.setMaximumAttempts(2); e.execute(); //line 67 https://gyazo.com/8ec12a4cb9a91d57d032238ad0df094f Seems to happen every time I do event.execute (not alone to this type of event)- HOW DO I NOT GET BANNED
- Staking
- Buying bonds
Its a feature- Staking, X'ers?
You dont even mention HP levels. You shouldn't be staking. It isnt a casino if you dont know how to play the game- [Stable] OSBot 2.4.130 - Ads + Input
Nice RSN fgt- Closest bank to you
Wouldn't really call filling your own enum up with all the possible banks cleaner, but your pick lol. Combine the two if you like, his does have some nice components. @LoudPacks- Closest bank to you
public Area getNearBank(){ Field bank = null; int minDist = Integer.MAX_VALUE; for(Field f : Banks.class.getDeclaredFields()){ try { int distance = getMap().distance(((Area) f.get(f.getName())).getRandomPosition()); if(distance < minDist && distance != -1){ minDist = distance; bank = f; } } catch (IllegalArgumentException | IllegalAccessException e) { e.printStackTrace(); } } if(bank != null) try { return (Area) bank.get(bank.getName()); } catch (IllegalArgumentException | IllegalAccessException e) { return null; } else return null; } Can someone plz update this with streams. Thanks @Alek plz turn Banks into actual enums so I dont have to do this gunk- Preventing RS Botting Bans V3
Shit guide. Reported for selling weed. I have premium antiban methods that literally hack jagex- Knew it.
- Price check k
- Would this account work for staking?
No it would be horific. You need 99 hp and 96str- anti afk help
Add this at the top of your onloop if(MethodProvider.random(0,10) == 1){ getCamera().moveYaw(getCamera().getYawAngle() + 10); }- Dialogues sometimes break?
Not 100% sure, havent really editted my tut script in a while. Try sending a space. getKeyboard().typeString(" ");- Dialogues sometimes break?
You on tutorial island? Tutorial island is a bit different since I believe you are always in dialogue- cleint of kourend
50m if u cant do this http://oldschoolrunescape.wikia.com/wiki/Client_of_Kourend/Quick_guide- Nullpointer
Here is helpful logic. Line 80 -> returning null Line 80: switch (s) { s -> must be null Line 78: s = getState(); getState() -> Must be returning null- Looking for investors who are willing to chip in for a semi-private script
How u get no bans?!??!!?- A Simple Login Handler
@Explv No guarantee this works as I havent used it in a while, but found something in one of my older scripts. sleepUntil(20, () -> !client.getLoginStage().equals(null));- A Simple Login Handler
The client hasn't loaded before trying to log in. Simplest way to do this would be to add a 15 second sleep before trying to log in. There are better ways ofcourse..- Proxy; Too many logins?
Change the -bot user:pass differently and you can- Any way to make a script output a text file
Ahhhhh data folder thanks - WebWalking Broken After Update?