-
Posts
11135 -
Joined
-
Last visited
-
Days Won
88 -
Feedback
100%
Everything posted by Apaec
-
Other bots have this system implemented too. It seems this optional addon was added within the last couple of days This check ensures that you're not part of a botnet, and in order to pass the check you need to have javascript enabled on your browser apa
-
Haha no problemo, glad you got it working. Let me know if you stumble across any other issues! apa
-
unconventional way to do it but it works: this.inventory.interact(this.inventory.getSlot("item name"), "item action"); gl! apa
-
Hey sure, thanks for posting. I've given you a 24h trial of the cooker. Hope it's what you're looking for apa
-
Done. Enjoy!: ) apa
-
1) I've just pushed an update (3.39) which will fix any issues you have with refreshing (hopefully!) Let me know if they continue (MAKE SURE YOU ARE RUNNING 3.39 BEFORE SAYING ANYHTING! ) 2) Banking seems to be fine for me, it is able to withdraw a full inventory just fine... perhaps you calculated the potion amount + 2 runes for teleport + food was maybe 1 or 2 above 28? 3) am fixing this as we speak cheers! apa EDIT: Just pushed a nested update as part of 3.39 which will stop random things spinning around the screen (such as random solver screen, debug messages, adverts. ============================================================================================ UPDATE! Version 3.39 changelog: Fixed outstanding bugs with crab refreshing and by default the script will now always run south unless specified otherwise. Added additional console log message to aid with the debugging process. Stopped anything other than the cursor rotating around the screen. Happy botting! Update should be live shortly (within the next few hours) when the script manager gets round to checking and publishing the source. apa
-
np am working on a fix as we speak what were your GUI settings?
-
Hey I was doing testing last night and it was hard to test aggressive issues as it took forever for the crabs to loose aggro for just 1 test haha! Please can you tell me your setup? whether you were using east or west or random, and whether you had cave aggro reset on or off. I just need this info so I can get to the bottom of this problem. This issue must have arised from the resent update I pushed with the cave resetting system! apa
-
Just moved to the midwest where my dogs at?
Apaec replied to NoahTheWeebWolf's topic in Spam/Off Topic
I live in the UK which is in the midwest unless you're saying america is the world now in which case no i don't live in the midwest of america -
sorry mate you'll either need VIP+, 20 postcount or 2 weeks online to request a trial! apa
-
Odd, i didn't think I added karambwan support for the den cooker, oh well haha! i mean the message you get in the chatbox when you cook one eg it might say 'You successfully cooked a karambwan' or something along those lines. apa
-
Is this den cooker or aio cooker? Also, what is the EXACT message which you get when you successfully cook a karambwan ? and the message when you burn one? And i might make it just type 28 instead of a random number, or i could make it a random number between 28 and 100. I just had antiban in mind ) apa
-
Hey! dont worry about spamming the forums, that's what they're for The reason it's not switching to the bank state is because the script reads like an instruction manual - you start at the top and go down. So in the state machine which you have there, it will first check to see if your inventory is full (and if it is, it will return the walktobank state). if not, it will check the next one down the list and so on. The reason that it's not switching to the bank state is because it's always returning walkToBank as your inventory is still full. Put the check for the bank state ABOVE the walkToBank state. That will fix your problem - I hope you understand why this will fix it, if you do not, let me know and i will have another go at explaining it haha. Or just try and think it through logically ;) apa
-
UPDATE! Version 3.38 Added support for refreshing the crabs using the east cave. This option only works on the east side. It allows you to quickly and safely refresh the crabs and hop worlds without having to run all the way south. This is quite a bit update as it required a good amount of engine changes so please let me know if something goes wrong. Other minor misc bug fixes Happy botting! apa
-
Am working on refreshing the crabs / hopping using cave as we speak! expect an update before you wake up. Apa
-
Hey ! glad you like it. Although as much as i'd love to write cannon support, I promised I would not. I've gone over the reason many times but the in summary, more cannons = more full worlds which cuts the exp rates of alot of my other users who do not wish to use cannons. Sorry about that, but I hope you understand my decision! apa Hey! Ye, it's pretty hard for me to test as my computer cannot actually handle mirror client (runs at a very low framerate (<7) making it misclick pretty much everywhere). Unfortunately though, we've just gotta be patient for MGI to fix this. This is unfortunately out of my reach and I know other scripts suffer from the same issues, so you'll need to just stick with worldhopping disabled. As for the unicorn issue, I never thought of this, i'll see if I can either change the route or potentially make it reset using the cave? not sure. Apa
-
get rid of all of the 'else's in your getState. if a statement is false, it will automatically check the next one down as this is how java code reads. I don't think at first glance that this will change how the script functions (its a little hard to see from the formatting - if you use eclipse, press ctrl+alt+f frequently), but it will make it much easier to read and debug. To debug it, I suggest putting log statements between every line of your banking code to see where the problem is. This will show you where the code gets to and doesn't get to.. Also, don't use localWalker.walkPath(position). I see why you used an array but instead of doing this, hop onto the sdn and use the divin pathrecording tool (i think thats what it's called), and record a full Position[] path of all the positions between the bank and the trees. Also on a side note: private Position[] barbWillows = { new Position(2518, 3576, 0) }; private Position[] bankPos = { new Position(2535, 3574, 0) }; ew. That's storing a single piece of data in an array. Seeing as the length of the array never changes, you're better off defining it as: private Position barbWillows = new Position(2518, 3576, 0); private Position bankPos = new Position(2535, 3574, 0); apa
-
to kill: NPC enemy = npcs.closest("exact npc name goes here"); if (enemy != null && enemy.exists()) { enemy.interact("Attack"); } To loot: GroundItem g = groundItems.closest("exact item name here"); if (g != null && g.exists()) { g.interact("Take"); } apa
-
switch to fixed game mode lol apa
-
Gui class: public class Gui extends JFrame { public Gui() { //constructor setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); //stick your Gui code in here for the jframe. You can use windowbuilder plugin for eclipse to design it a bit simpler. } } Main class: private Gui GUI; @Override public void onStart() { GUI = new Gui(); GUI.setVisible(true); } merry christmas apa
-
Done. Enjoy!: ) apa