Jump to content

CrystalChris

Members
  • Posts

    7
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by CrystalChris

  1. Did you solve this dubai?
  2. Issue: In my script for crafting Gold Necklaces, the furnace interface keeps opening repeatedly instead of staying open until I finish crafting. Context: I’m using a loop that checks if the furnace interface is open. If not, it interacts with a nearby furnace to open it. Once opened, I store the interface in a widget holder and then proceed with crafting. However, if the widget isn’t visible (or becomes non-visible), I set a flag (interfaceOpened) to false, which then triggers another furnace interaction. This leads to the furnace interface being opened over and over again. while while (getInventory().contains(GOLD_BAR)) { RS2Object furnace = getObjects().closest("Furnace"); if (!interfaceOpened) { if (furnace != null && furnace.interact("Smelt")) { new ConditionalSleep(5000) { @Override public boolean condition() { smeltInterfaceHolder[0] = getWidgets().get(446, 23); return smeltInterfaceHolder[0] != null; } }.sleep(); interfaceOpened = true; } continue; } RS2Widget smeltInterface = smeltInterfaceHolder[0]; if (smeltInterface == null || !smeltInterface.isVisible()) { interfaceOpened = false; continue; } // Crafting code follows... }
  3. I have just bought Khal Tutorial Island, and it is having issues starting the script. The log tries to download images from your Khal website, but it fails to download them. Please review your script and check if there are any issues with your website or something else."

    1. Khaleesi

      Khaleesi

      Host is down atm, still waiting for them to get back online

    2. CrystalChris

      CrystalChris

      Okay thanks for the quick reply Khaleesi! 

      Have a good day.

  4. Hey Token, 

    Can i get a trial for Stealth Passive Goldfarmer to try it out before i buy?

  5. Same with me. My proxies does not work after Jagex had their little issues with login today. ...
  6. Hi everyone, I’m working with multiple trade-restricted accounts, and I’m trying to transfer GP to one main account, which is also trade-restricted. The GP is currently spread across about four botted accounts, all of which are trade-restricted as well. My plan is to buy up to 20 noted rune items per botted account, take them into the Wilderness, and have my trade-restricted mule account kill these botted accounts to collect the items. Given that both the mule account and the botted accounts are trade-restricted, would this method work? Are there any game mechanics or penalties that could prevent the transfer or cause me to lose the items? I’d appreciate any advice or insights. Thanks!
×
×
  • Create New...