Jump to content

progamerz

Scripter II
  • Posts

    3453
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    100%

Everything posted by progamerz

  1. Yup, that is osbot itself, i will push an update today or tomorrow with "anti-logout"
  2. Yup, i will try to add an "anti-logout" feature when i am back from vacation or something.
  3. I need more information about how it happened, there could be a reason for it logging out, is the tree didn't get chop down so it waits untill it gets chopped, this usually causes rs accounts to logout due to inactivity(waiting for tree), from guessing this happened for yews yes? if so, i can maybe add an option after i am back from vacation to have it do some actions to avoid it from logging out.
  4. I need more info, use the report bug format, and get back to me. Make sure you have all these axes (Bronze,Steel ,Mithril,Adamant and Rune axe) in bank.
  5. add a smithface not null, i am on phone can't write much atm..
  6. Not taking any orders atm, will change the status when back.
  7. its becuz ur not throwing InterruptedException from seeing in the code. It's better to get used to conditional sleeps, u can chnge the return false to return myPlayer().isUnderAttack(). so it would sleep dynamically untill the player is underattack, no need to use random(300,400) instead use a value like 3000 or 4000, see which suits best for you.
  8. It happened frequently, but yes probably due to lags, increase it maybe a bit?
  9. 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
  10. Some proggies for ya @Chris
  11. 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
  12. 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.
  13. Control Panel? Client version?: What happened?: Where had the problem occured?: What options you choosed?: Screenshot? (If any): Logs(pastebin if possible):
×
×
  • Create New...