-
Posts
11170 -
Joined
-
Last visited
-
Days Won
91 -
Feedback
100%
Everything posted by Apaec
-
they made it so that you stop autoretaliating after 30 minutes unless you're in a place safe from randoms, in which case you still last the full 6 hours (eg on pvp worlds / in banks)
-
Question: What is that?
-
What is the best selling script currently in the store?
Apaec replied to Celeos's topic in Community Discussion
Damn I knew i had the most popular script, but I didn't know that it was most popular by that much x) but yes, it's APA Rock Crabs x) -
Banking seems to be having problems recently due to the client, i'm not sure if it's been fixed or not but it shouldn't be too much of an issue, it normally sorts itself out after a couple tries max I've not tried mirror mode but i wouldn't be surprised if it isn't working 100% as mirror mode is still in beta. As explained above, seems to be a bug with banking API Make sure you don't have one in the bank, it will not pick it up only if you have a full inventory so if this is a problem, just bring 1 less food per trip. Runs away from the rockcrabs to reset their aggro. Misclicks are pretty much impossible to prevent and if anything add to the 'anti-ban' xD Apa
-
Wrote a quick guide for peeps like you Take a look! http://osbot.org/forum/topic/58775-a-beginners-guide-to-writing-osbot-scripts-where-to-get-started-by-apaec/ Apa
-
ShakurCurser - Curse the Monk of Zamorak (30K+ Magic XP P/H)
Apaec replied to Shakur's topic in Combat & Prayer
Grats on first release -
http://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/ http://osbot.org/forum/topic/66800-osbot-mirror-client-your-guide/ Read through those two pages Apa
-
That's wierd, like i said, are there any log messages, and if so can you provide a screenie or something to show what's going on? Update! Version 1.45 Fixed bug where amount of tuna cooked per hour does not show up on paintHappy botting Apaec
-
Hey! I've enabled a 24h trial on your account. If you're looking for a script that won't get you banned, it's most likely to do with your style of botting ! Try taking longer breaks, or if you're super keen, you could invest in VIP and get your hands on the mirror client Apaec
-
Have given you both a 24hour trial so you can give it a shot! Let me know if you need longer Apaec
-
Does the script log anything in the console (like a reason why it would log out?) Also, are you sure you have enough in the bank ?
-
Thank you for the beast 6h proggie mate! I've added it to the front page Apaec btw 1337 cooked per hour x)
-
This is a problemo with the servers mate, dw, everyone even legit players get this message when servers disconnect nothing to worry about
-
Added a 24h trial to yuor account. Enjoy! Feel free to ask for longer if you need longer to decide.. Apaec
-
You're actually defining two seperate instances of stall in the code. What you name as stall in the case may not necessarily be what you name as stall in the getState. For this reason, you need to add a nullcheck in otherwise you will be recieving frequent NPEs. Generally it's a good idea to nullcheck anything you define before interacting with it though. Even if you consider it unnecessary, it's always an added level of check which can impact the stability of your script Apa
-
To walk a path you would first define a posiion array: Position[] path = new Position[]{new Position(0,0,0), new Position(0,0,0), ...}; Either way, adding more paths it could use would not help (at all) with making the bot less detectable / humanlike! Just stick to one path. If anything, imo, it may even make the script more detectable. Apaec
-
I've enabled a 24h trial on your account. Enjoy! & Let me know if you need longer : ) Apaec
-
Have you accidentally selected 'use special attack'? the only reason i could think it would do this would be if you configured it incorrectly in the GUI ! Apa
-
Hey! Not so sure what you mean. Do you mean, like my rock crabs script, that you want there to be a 'random' option where the script would walk to either west or east rock crabs based on a random returned boolean or similar? If so, it's not that simple. But ultimately, you need to record two different paths going from the bank, eg BANK_TO_NORTH, BANK_TO_SOUTH then, when the code comes up to walk to the area, just do switch(random(1,2)) { case 1: localWalker.walkPath(BANK_TO_NORTH); //any additional code here break; case 2: localWalker.walkPath(BANK_TO_NORTH); //any additional code here break; } Or something similar. Remember, that will only start walking. You need do find some method of telling the script to continue walking that path if for whatever reason it stops. A good but somewhat looked down on method for doing this is usng flags. There's no real problem with doing this so i suggest you do So you would just put a boolean set to true after you call the walkPath method, and then just in your getState ask if that same boolean is true, if so walk north, otherwise walk south etc. remember to reset the boolean when you get to the desired area though! Let me know if i'm talking about the wrong thing or you have any other problems. Apaec
-
The 24hours probably timed out. Remember they start as soon as I post a reply to your request! I've gone ahead and enabled an additional 24hours to your account so you can get some use this time! Let me know if you also miss this one / need longer Apaec
-
Nice am going for dis too PS i bet it was fun typing those quests out
-
Update! Version 3.21 Added save button to the GUI - this will save the current setup ready for next time. If you dont watn to save the set up, you can just ignore the save button and just press start Increased version number from 3.20 to 3.21 Enjoy the update lads! Apaec
-
Glad you got it sorted If you were wondering, an even simpler way would just be to put this.inventory.dropAll() in your onloop straight up and just get rid of the getstate enum and method. Sorry I was a bit late with the response, was sleepin Apa