-
Posts
11143 -
Joined
-
Last visited
-
Days Won
91 -
Feedback
100%
Everything posted by Apaec
-
Hey, this was a while ago now, and technically it wasn't quite maxed (got 96+ in each skill i think), and the account still remains completely unbanned. I did this while writing and testing the script, so that meant alot of starting and stopping and testing in different locations, which probably helped with the ban chances a bit. I think I had 45 minutes - 1 h botting with 30+ minute breaks though. I think there were days I was running the script all day though - I would NOT recommend this!!! Ofcourse, if you're careful, you can max too, but there are no guarentees, and getting banned is a risk that must be accepted unfortunately. I'd recommend just botting for perhaps no more than 2-4 hours per day, and try and change the settings up every now and then too. After all, it's better to make slow progress than to lose your account completely. Let me know if you have any further queries! ~apa
-
Ofcourse guys. I've given you both extended trials (36h) as you will probably need it with the state of the current game servers!
-
I won't give it all away, besides most stuff you're asking is freely available on google. A neat way to check whether a char is not a symbol (or more importantly, is a letter in the alphabet) is to do if( (l>='a' && l<='z') || (l>='A' && l<='Z')) printf("%c is a letter.", l); else printf("%c is not a letter.", l); I've got to head off now but I can edit this post with more info on other bits as well a bit later! Edit: as nosepicker said, you cannot compare arrays using the standard operator like that in c (or for the most part any language). For example, in java you must use .equals() which is itself a method specified for whichever object you are dealing with, overridden from parent classes. You'll have to iterate through both arrays, perhaps best done with a function, like so: bool compareArrays(int a[], int b[], int n) { for(int i = 1; i <= n; i++) if (a[i] != b[i]) return false; return true; } where your two arrays are a and b, and n is the length of both arrays. Make sure both arrays really are length n before sending them in! Edit 2: if you need any more help or wish for me to write an example program to solve this problem for you, just let me know! ~apa
-
I've given you a 24h sand crab trial. Enjoy!
-
Deffo worth a read Refresh your scripts list for the trial!! -apa
-
Heya, i'm sorry to hear this. Unfortunately bans do happen, and there's no telling when. I've maxed an account (and I know others have too) without recieving any bans, whereas some people get banned faster. There's also no way of knowing whether you were banned solely for this script or as a delayed ban from another one. There's no way of predicting (or, for that matter, preventing) bans that we know of, so it really is just random and a risk you have to accept when using any script! While it's not my choice who receives refunds, and normally requests are denied if the reason is bans, here are a few things to consider for next time! Firstly, if you haven't already, give this page a read: osbot.org/forum/topic/45618-preventing-rs-botting-bans/ In future I would recommend against botting on accounts you care for, namely your main. I would suggest botting sessions of <45 mins with perhaps equal or more breaks. Finally, here's a link to the page where you can submit a refund request, should you so wish! https://osbot.org/forum/announcement/50-payment-issue-guidelines-read-before-posting-refund-template/ ~apa
-
Hey, cheers for letting me know. It's pretty tough as the account i use to when writing the script (which had access to nezzy) I no longer have access to. Could you perhaps let me know if there are any errors logged in the console?
-
Cool idea haha! Just a few things, why is it withdrawing all when there's only 1 of an item? also, you can set up a sell offer by just clicking the item in your inventory; you don't need to click 'set up sell offer' in the ge interface! Nice work:) ~apa
-
Odd. Roam/camp mode? And which spot? And does it do it all the time when in combat? Just need to know this info so that I can set up a test case. Cheers Apa
-
No idea why that could be... at what point in the execution of the script is it doing that?
-
Unfortunately not, no. It will cook the 'uncooked pizzas' though, which must be cooked on a range! ~apa
-
Woo, that's an amazing proggie, thanks!!! and cheers for the kind words too. I've added the proggie to the front page, if that's okay with you. Cheers! apa
-
Hmm. Not sure what I can do about this really, it's the trouble with always moving the mouse outside the screen. But i have no idea why it deposits/withdraws food. perhaps it misreads what is in the inventory while on the login screen... I will look into this. Cheers! done!: )
-
Turn off refresh delay (I find it's normal that my account is logged out when I leave it afk, if anything this helps make the bot seem more legit imo?)
-
I've started your trial now, hopefully that should be ok! They last 24 hours to ensure that you do get a try no matter your timezone Enjoy! Yep! Ah. I suppose this is due to the moving mouse outside the screen. No idea why it would go to the bank and get more food though, it shouldn't do that even when it just logs in. It should refresh just like normal... perhaps you were out of potions? Done!
-
Unfortunately you can't pay with OSRSGP directly, you will have to buy a 5$ store credit voucher and redeem that. You can find a list of people selling vouchers here: https://osbot.org/forum/forum/227-vouchers/ , 5m seems to be the going price! As for skype, unfortunately i'm not very active on it, and only really use it for personal things. Feel free to PM me or reply here - i'm much more active on the forums Cheers Done!
-
Hmm, that's odd. Thanks for this, I will take a look. Does the script eventually fix itself or is it permanently stuck?
-
Which spot are you using? - it shouldn't do this!
-
breaks 'not working' is a very vague comment - I can't really help if I don't know what's wrong. Besides, breaks are handled by the client so any issues you may encounter with them I cannot really resolve! apa
-
I am looking into this, but it's quite tough as my account isn't 75 ranged yet. Not sure if it's randomised already, but I can add this if it isn't. Cheers ~apa
-
Hmm. Unfortunately there's not alot I can do about this as I don't believe there's a way for me to get the break data (could be wrong though, will check), but either way the script will go afk until you're auto-logged from inactivity which is ~2mins or until the crabs de-aggro so it shouldn't be too long that way. This might be a latency issue on your end. Unfortunately alot of the banking code isn't conditional (although I plan to make it such soon), so it will try without delays and if you have a bad connection then it will most likely fail and repeat. I will look into extending the rests for you now though. That is, unless you've somehow managed to configure it for more than 28 inventory slots!
-
Ah damn, thanks. I will adjust the path again! Ah, thanks for this. I will adjust the walking system for the next revision so this hopefully doesn't happen. And yes it looks like you've found the right place for breaks! Still training up my ranged to test it, but I should be able to add it. Maybe for the time being use steel darts without the blowpipe! I could code it, but I want to avoid having any attackstyle switching code in the script for the offchance that something goes wrong and it ends up ruining a pure. Also, adding this would clutter the Gui even more - something i'm trying to avoid. However ofcourse if there is enough support for this feature then I can look into it:) I can't remember if it is the bot or the script that prevents you logging back in after getting logged out - I will have to check this, but in short I could potentially try this although i'm not sure how successful it would be. IIRC the script cannot control the game when you're logged out, and logging in is a client based event, so this may well not be possible. wew thanks, thats an insanely long time!! ~apa
-
Yeah, go to the bot settings and enable them!