Jump to content

progamerz

Scripter II
  • Posts

    3466
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by progamerz

  1. It happened frequently, but yes probably due to lags, increase it maybe a bit?
  2. log("BEGIN BALLS"); RS2Object furnace = objects.closest("Furnace"); RS2Widget smithFace = getWidgets().getWidgetContainingText(270, "How many"); if (furnace != null && furnace.interact("Smelt")) { sleep(2000); if (!myPlayer().isAnimating() && smithFace != null) { getKeyboard().pressKey(32); new ConditionalSleep(30000, 5000) { @Override public boolean condition() throws InterruptedException { getMouse().moveOutsideScreen(); return getDialogues().isPendingContinuation() || !getInventory().contains("Steel bar") || !myPlayer().isAnimating(); } }.sleep(); } } break; Instead of this, what u can do, ur logic is a bit off here, if some1 or u started script with smith interface open, it would interact for no reason again with furnace, u can try using what i posted below, to fix this issue. if smithface is not null and is visible interact smith face or whatever else if furnace is not null and interact with furnace, sleep until widget x is not null and widget x is visible
  3. Some proggies for ya @Chris
  4. I see i sent u a pm on june 25th which was read by u and didn't get a reply back from that bug....., castle wars method
  5. Do you get anything in logger? It is trying to toggle shift dropping, if u toggle it should fix it atm for fast fix. EDIT: Pushed v2.7, which should fix that issue, and it will only enable SHIFT DROP when starting once if not enabled. EDIT: Update should be live.
  6. Control Panel? Client version?: What happened?: Where had the problem occured?: What options you choosed?: Screenshot? (If any): Logs(pastebin if possible):
  7. Or, u can just select the item whenever ge is open, assuming its note/stacked, it would automatically set the amount in ge to full. if(item != null){ //checks and etc. if(item.interact()){ //conditionalsleep } }
  8. Usually i don't think that can be the cause, but maybe on the "onExit()" reset the values of the variables, even tho if u always reload settings from .txt this shouldn't be the problem, not sure what u can do other than that, if u refresh in the script selector does the script work?
  9. Depends on who made u the script, ask him, usually if it loads from textfile doesn't need, not sure, but its better always to refresh(personal preference)
×
×
  • Create New...