Everything posted by Token
-
Stealth Builder
Alright thanks I'll check them out These aren't really trials because the script is in beta phase (not stable) and I'm only looking for bug reports right now
- Stealth Quester
-
Stealth Quester
It was never able to detect 3rd party clients
-
Stealth Builder
Try again, I believe the server was offline
-
Stealth Quester
No mirror mode doesn't help at all, it's also broken so complex scripts won't work on it
- Stealth Builder
- Stealth Quester
- Stealth Quester
- Stealth Quester
- Stealth Quester
- Stealth Quester
-
interact() weird behavior
I'm not exactly sure what "this" refers to in your first snippet so I can't help you with that but when you call interact() on anything, an InteractionEvent instance is created with a default threshold of 5 attempts so it may execute the same action up to 5 times and it's equivalent to InteractionEvent e = new InteractionEvent(someEntity, someAction); e.setCameraDistance(14); e.setHover(false); e.setMaximumAttempts(5); e.setOperateCamera(true); script.execute(e); In java we use the equals() method to compare 2 non-primitives like String instances so your condition should be @Override public boolean condition() throws InterruptedException { return script.inventory.getItemInSlot(27).getName().equals("Jug of water"); } But you should take into consideration this will throw a NullPointerException if there is no item in that slot, eg when you don't have 28 jugs left and you only go to fountain with 20, so maybe this may work better @Override public boolean condition() { return !script.inventory.contains("Jug"); } Also void using any animations as they are not continuous and therefore not reliable (there is a short transition time between animations when the method returns false)
-
Stealth Quester
I don't deal with sales so I can't do anything about that. Yes it's lifetime. The script was designed to generate lots of accounts with quests completed, not only 1 account, so if you are only planning to run it on 1 account it's most likely easier to hire someone. Try without those 2 flags and let me know if it's still not working, I believe there may be some hook errors in the client on some CLI modes
-
Stealth Quester
1 auth per person Are you by any chance using norender flag or any other flags? Authed
- Stealth Quester
- Stealth Quester
-
Stealth Quester
Fill in a bug report template 1 auth per person. Yes.
- Stealth Quester
-
Stealth Quester
By they will be posted when they are ready I mean they are not public until release
-
Stealth Quester
They will be posted when they are ready
-
Stealth Quester
They will be published in the update log when they are ready
-
Clients crashing / memory leak
Java allocates a lot of memory on unix systems, so easiest fix is switching to windows if the .118 client didn't fix your memory issues
- Stealth Quester
- Stealth Quester
-
Stealth Quester
I've uploaded something which should fix this but if the issue persists, send me the actual logger contents so that I can see what the problem is