Jump to content

Tempest

Lifetime Sponsor
  • Posts

    291
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Tempest

  1. Still purchasing, apparently no one is replying.
  2. Via my debit card. Yes I still need.
  3. As stated, I am still intending to purchase 30m osrs, looking to start my new account.
  4. Just buying 20m, not going to scam 20m lol. Do consider selling to me since my account got banned and I am starting over again on a new one.
  5. What does Veteran Rank gives though?
  6. I don’t think there’s fees since I last bought here with PayPal but I will cover fees if needed.
  7. As stated. Unfortunately my country Singapore does not allow "gifting" method on Paypal so yes.. If you have another method available, do let me know.
  8. Count yourself lucky, glad you are both fine though ;)
  9. Hope to buy 1 but I am from Singapore thus unable to gift via friends/family via Paypal. Do you mind selling to me still though?
  10. Still buying, only 15M to start my new character off.
  11. On chatbox, don't have skype. Please let me know once you are on chatbox. Umm sorry not balance but my Visa.
  12. Thanks a lot for all your feedback & help, I will be looking into it now!
  13. Hi everyone, I am trying to create a function that determine the pickaxe the player is able to wield. void determinePickaxe() { String pickAxe = null; int miningLvl = getSkills().getDynamic(Skill.MINING); int attackLvl = getSkills().getDynamic(Skill.ATTACK); String[] pickAxes = { "Iron pickaxe", "Mithril pickaxe", "Adamant pickaxe", "Rune pickaxe" }; log("Player's Mining Level: " + miningLvl); log("Player's Attack Level: " + attackLvl); if(getInventory().contains(pickAxes)) { log("Determining Which Pickaxe To Use.."); for (int i = 0; i < pickAxes.length; i++) { log("Pickaxes Avaialble: " + pickAxes[i]); } if (getSkills().getDynamic(Skill.MINING) < 6) { getInventory().interact("Wield", pickAxes[0]); log("Using: " + pickAxes[0]); pickAxe = pickAxes[0]; if (getSkills().getDynamic(Skill.MINING) < 21) { log("HERE"); getInventory().interact("Wield", pickAxes[1]); log("Using: " + pickAxes[1]); pickAxe = pickAxes[1]; if (miningLvl < 31) { inventory.interact("Wield", pickAxes[2]); log("Using: " + pickAxes[2]); if (miningLvl < 41) { inventory.interact("Wield", pickAxes[3]); log("Using: " + pickAxes[3]); } } } } } } I later the function into public void onStart() throws InterruptedException { //Run Once Here, Variables Etc. determinePickaxe(); } It seems to be able to detect the inventory having the pickaxes but does not wield the pickaxes.. Anyone know why? Sorry if I did something stupid.
  14. Bot runs perfectly but unfortunately, got banned on my sole account. Got up to 150m+ bank.. Recommended for those that are willing to risk but not now since Jagex is banning hard
  15. Hmm kinda remind me of Facebook posts lol
  16. New update seems to have broke the script.. Idle while trying to hit Zulrah
  17. Guess it's because most the players are experienced unlike the old times... Not sure how to get GP, where is the wilderness, 100k was a lot..
  18. Everything seems to be working well now, thanks for the fix and update.
  19. @Fruity Can we have an ETA on when it will be fixed?
×
×
  • Create New...