Everything posted by Viston
-
[S] LoL EUW - Rare Skins - 89 Champs - 42 Skins - 21k IP
Bump
-
1-30 agility hand trained x4
2-2.5m for 1-30 agility, are people nuts?
-
[S] LoL EUW - Rare Skins - 89 Champs - 42 Skins - 21k IP
Bump
-
Chip Butties
- [S] LoL EUW - Rare Skins - 89 Champs - 42 Skins - 21k IP
Bump- [S] LoL EUW - Rare Skins - 89 Champs - 42 Skins - 21k IP
Bump- Pricecheck Starter main
- Attack NPC that isn't under attack
Thank you, will do- Attack NPC that isn't under attack
I appreciate your responds. Your piece of code works Also, just noticed that my code above checks useless stuff in the If statements lel- Pc nice starter pure
- Attack NPC that isn't under attack
But will that fix the issue with people splashing on NPCs? Because, isUnderAttack() seems to fix the issue with people normally attacking the NPC. But when people splash on NPCs, you can't see their HitBar, so it doesn't work- Anybody know what happens if someone chargebacks but you have no funds?
Torture included?- Attack NPC that isn't under attack
So I'm trying to make the bot not attack the NPC that is under attack. I tried using !closestMonster.isInteracting() but no luck. NPC closestMonster = s.getNpcs().closest(Vars.radius, Vars.combatMonster); if (closestMonster != null && !closestMonster.isAttackable() && s.getInventory().contains(Vars.combatFood)) { s.getWalking().walk(closestMonster); } else if (closestMonster != null && !s.myPlayer().isUnderAttack() && s.getInventory().contains(Vars.combatFood)) { if (s.myPlayer().isAnimating()) { Vars.lastAnimation = System.currentTimeMillis(); } else if (closestMonster.interact("Attack") && System.currentTimeMillis() > (Vars.lastAnimation + 1000)) { Paint.status = "Attacking..."; Sleep.sleepUntil(() -> s.myPlayer().isUnderAttack(), 5000); } }- Anybody know what happens if someone chargebacks but you have no funds?
Wasn't it easier to just write -100 in here?- [S] LoL EUW - Rare Skins - 89 Champs - 42 Skins - 21k IP
1. Pictures of the account stats- Anybody know what happens if someone chargebacks but you have no funds?
They don't take from your bank a penny, since they are not authorised without your consent. Your paypal balance will just be -. So to be able to use paypal again, you have to clear out your balance.- HOW DO I NOT GET BANNED
- Priminex - Hi :)
Welcome, we are in the chatbox if you need anything- BITCH SIT DOWN
- Where did I go wrong?
I'm thinking it's because of your states. They all have the same if statements. I can't really identify the problem without logging each statement, and see where the issue is. If you want, I can help you via teamviewer.- Where did I go wrong?
Are you sure that your inventory is not full before walking to the tree? Also, are you sure that the area you have selected for the yew trees isn't including the bank as well?- Where did I go wrong?
Show me the code you have written- Where did I go wrong?
Yes, in your WalkToTree method, say something like v if (!WC.contains(myPlayer.getPosition()) { getWalking.walk(yew); } In this, you are saying if the player isn't in the WC area, let's walk to it.- Where did I go wrong?
Also, to make your player only cut the yew trees within the area you have selected, you have to do this v RS2Object yew = getObjects().closest(WC, "Yew"); As you can see, you are telling the bot to check the closest tree in the WC area, against the tree "Yew"- Where did I go wrong?
You are just calling myPlayer. I think you need to do myPlayer.getPosition() Like this v if(!getInventory().isFull() && WC.contains(myPlayer.getPosition())){ return State.CUT; } Reason is, you want to check the yew area against your players current position. - [S] LoL EUW - Rare Skins - 89 Champs - 42 Skins - 21k IP