Jump to content

Viston

Trade With Caution
  • Posts

    620
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Viston

  1. Viston

    locked

    If you have dynamic ip address, you are able to change it from your internet control panel.
  2. But seems like it's useless, even if the Ips are different imo. I've tried it on 2 accounts, even though I have a dynamic ip address, still no luck.
  3. PoH: Fairy ring, Spirit Tree, Ornate Jewelery Box, Ornate reju pool. Quest cape - 252 quest points. 750m bank - Might remove them, but please give quote on both. Full Elite void Not planning on selling it right now. Considering maxing out.
  4. Just realised you edited your thread, I'll just leave this here, in case someone else needs help Also, I suggest having a look at conditional sleeps, makes your script 100x better and less trouble.
  5. So to edit your code, it should be something like this import org.osbot.rs07.api.map.Area; import org.osbot.rs07.api.model.RS2Object; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(name = "BananaPicker", author = "Abysm", info = "Picks bananas in karamja", version = 0.1, logo = "") public final class BananaPicker extends Script { private final Area BananaArea = new Area(2914, 3161, 2926, 3154); private final Area DepositArea = new Area(3045, 3235, 3050, 3237); @Override public final int onLoop() throws InterruptedException { if (canPickBananas()) { Pick(); } else { deposit(); } return random(150, 200); } private void Pick() { RS2Object fullTree = getObjects().closest(2073); if (!BananaArea.contains(myPosition())) { getWalking().webWalk(BananaArea); } else if (!getInventory().isFull()) { if (fullTree.interact("Pick") { //Conditionalsleep } } private boolean canPickBananas() { return !getInventory().isFull(); } private void deposit() throws InterruptedException { if (!DepositArea.contains(myPosition())) { getWalking().webWalk(DepositArea); } else if (!getDepositBox().isOpen()) { getDepositBox().open(); } else if (!getInventory().isEmptyExcept("Coins")) { getDepositBox().depositAllExcept("Coins"); } else { stop(true); } } }
  6. Bro, use IDs. The ID changes when it has bananas and when it doesn't. The ID for the tree with bananas is 2073. The ID for the tree without bananas is 2078. So int fullTree = 2073; int emptyTree = 2078; if (fullTree) { if (fullTree.interact("Pick")) { conditionalSleep -> emptyTree, 5000); } } You might want to play around with the conditional sleep to fit you.
  7. @Alek I've also faced this problem. Is it not possible to hide the text or something?
  8. Depends what you'll be using the mouse recorder for. You won't be able to use the mouse recorder to carry out tasks for you, which requires interacting with the game screen. e.g the main screen where your player is, due to the camera rotating every few seconds, putting your mouse recorder offset. However, for alching I think it's safer to use an autoclicker that has the ability to randomize its click every click. e.g 1 click wait 30ms, 1 click wait 23ms, 1 click wait 42ms, 1 click wait 62m etc.
  9. Looking good. But what's the idea behind this? Like does the user have the ability to control the temperature of the shower, before taking the shower?
  10. If you don't want to get banned. Just stop scripting on it now, wait like a week. Delayed bans are usually issued pretty quick. Hence why I'm telling you to wait for a week.
  11. Getting your other account banned is random. Usually, if all accounts get banned together, it's called chain-ban. I've recently had 4 accounts banned together, while my main isn't banned yet.
  12. 2k17 Censoring swear words?
  13. Is the name you have, came with a bought account? Mass sold accounts with rare names recently, maybe ended up with you
  14. Yeah looked at it. But are these the permissions that are only allowed? Because I want the client to get full permission to access everything on my computer, such as images, files etc. What I'm trying to do is, I want to make a system tray notification for my script. But the client isn't giving me permission to access system tray.
  15. So I'm trying to make my script access system trays and all of that good stuff. But the client doesn't give permission. People told me that I should use the -allow parameter, but what else do I need for the -allow.
  16. As Zapako said, or check if the ID of the trees changes if it doesn't have any more to pick from.
  17. You should be fine, they rarely do delayed bans anymore from my experience.
  18. Just put your alt account on your proxy. You don't need vps.
  19. Bought Script Leeching from Muffins, it worked
×
×
  • Create New...