Jump to content

cattycatcat

Members
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by cattycatcat

  1. ty house just implented and now it works just as i wanted
  2. Hello guys i finished my shop buying script it works just fine, made simple paint which shows time and money spent but i;m struggling to create buys/hr in my paint.Currently i do it like this: once i bank i just do increase in 27 but due some lagg it can add upto 80+.So if sombody could post flawless solution that would be damn good
  3. Hello so i have problem with worldhopping (I'm not good at conditional sleep so please help me to solve it ) if(store.isOpen()) { Item test1 = getStore().getItem("Item"); if (test1 != null && getStore().getAmount("Item") > 0) { getStore().buy("Item", 5); } } Item test2 = getStore().getItem("Item2"); if (test2 != null && getStore().getAmount("Item2") > 0) { getStore().buy("Item2", 5); } if (getStore().isOpen()) { getStore().close(); new ConditionalSleep(5500, 6000) { public boolean condition() throws InterruptedException { return !getStore().isOpen(); } }.sleep(); getWorlds().hopToP2PWorld(); new ConditionalSleep(15000, 25000) { public boolean condition() throws InterruptedException { return myPlayer().exists(); } }.sleep(); } } } The problem is after world hop it starts to eat all my cpu.So if sombody could help me that would be great
×
×
  • Create New...