Everything posted by Apaec
-
APA Sand Crabs
Sorry, it seems my inbox is full yet again. Give me a minute to clear it a bit and i'll send you a quick PM. cheers! Done!
-
APA Script Trials
I am not the author of extreme cooker - however I assume you intended to request an trial of APA AIO Cooker? In which case, i've given you a 24h trial. Cheers! apa
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
I understand, i'd suggest you, as Hafdellaren mentioned, have a read of that thread as well. You should try and set your own goals - think of a relatively simple script idea and see if you can get it going. It won't work out at first, but if you ask the right people the right questions you should start to get the hang of it yourself As I mentioned, it really is a steep learning curve and you've gotta be in the right mindset to do it, but it's completely possible One of the first scripts I tried to write myself was an f2p bone collector and burier at the chaos temple. This gained about 2.5k xp/h (pretty useless, sure), but it taught me the fundamentals of grounditems, and interacting with them, also inventory interactions, Area checks, pathwalking for a deathwalking system (which I added later ofcourse), and also I added a very simple Gui. There's lots of other ideas, perhaps an iron/clay miner, man thiever, basic fletcher, etc. Just pick one and go for it! (Perhaps as a start you could add banking to the tea thieving script? - good practice for path walking and banking). Feel free to ask me lots of questions, i'm always happy to answer, and i'm sure answering your question could help others too ~apa
-
APA Sand Crabs
The reading process should work cross platform... not sure why you're having issues. Essentially the gui will save your settings as plaintext to a gui.txt file in your data directory, and should then read this the next time you start up the script. If there's an error log, perhaps you could send that to me? Cheers
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
You're going to want the latest one. At the moment I believe it is JavaSE-1.8, and you can change it by going: window->preferences->Java->Installed JREs, then fiddling around in there. Let me know if you have any other questions! apa
-
Scripters - Screeps
Oh my, that looks awesome! Going to have to give it a shot, shame it's only on -10%. Reminds me TIS, another great game ~apa http://store.steampowered.com/app/370360/
-
APA Rock Crabs
Unsure what you mean - I've not used the store before, but I know there's a range of ways to buy scripts such as through paypal, or even with RSGP. There should be some links on the script thread about buying with osrs gp if you need. Cheers ! ~apa
-
APA Sand Crabs
Sure! Have had reports about the spec, was planning to look into it over the coming week when I get some time off - I added almost all fish, I can potentially do pizzas however it's a little annoying in the fact the name changes when you eat it, meaning cakes and pizzas etc would need an extra layer of specific code. A bit annoying but certainly possible. Cheers for stopping by! apa
-
APA Rock Crabs
That's very odd, I heard this on the sand crabs script page too. Perhaps something has gone wrong with the api method, or my checks. Thanks for mentioning this!
-
"Merry Christmas"
LOL! https://www.reddit.com/r/2007scape/comments/5jd8kf/22k_total_lvl_acc_1b_banned_rwt_why/dbfc5dr/
-
Issues with path walking
As was mentioned above, you've defined it as an array, which is what the API path walking used to take (hence the outdated tutorials tell you to do it this way). Instead, you need to define it as a list.
-
APA Sand Crabs
It should afk in camp mode - there should be more or less no stage where it clicks attack on a sandcrab. If you're already using camp mode, then i'm not sure what's gone wrong. Which spot are you using?
-
Phone upgrade
Google pixel is nice, i'd say its between that and the iphone 7
-
APA Sand Crabs
Thanks for this , I will investigate! Sure, refresh your scripts list!
-
APA Sand Crabs
Done and done, enjoy ! Seems to be working fine for me - The script will not enable spec for about 30 seconds after hopping, and will not switch weapons to spec, but other than that it should work. Not sure what's gone wrong there - perhaps you just forgot to check the box? (happens!) This is odd - it works for me but i've had other settings which don't work correctly (namely breaks), and I've heard of other people having difficulty with randoms on all scripts. I'm not sure if there are any solutions, but perhaps checking the dismiss box then re-booting the bot, and see if that helps. I'm sorry that theres not much more that I can do to help! ~apa Done! Will be taking a look into the resetting of crab claw isle stuff. Does it get stuck after running the reset route, at the end of the first path or in the middle of the path? Cheers apa
-
Trying to understand the API.
So this looks alright, but as it's a live game with things changing all the time, and lag etc, you cannot rely 100% on more or less any line of code to successfully pull off what you want it to do. To combat this, you need to try (and potentially retry) performing actions depending on the current state of the game. There are a number of ways to do this, but perhaps the easiest to understand would be a standard if/else setup within your onLoop: for example, in your code you have a single if statement surrounding all of your code. This is fine, except what if the inventory is full? then the script will loop forever. (on a sidenote, the return value of onLoop is the delay between loops in milliseconds - 6 seconds is quite alot, and you might find it easier if you set it to something around 300 and use a case based structure as i'll show below. I won't give you the code straight up, as that's no way to learn, but I'll tell you the commands which you need to use to perform the actions you're going for. It's up to you to order them and structure them as you need: // Checks if inventory is full if (inventory.isFull()); { } // finds the nearest bank booth RS2Object booth = objects.closest("Bank-booth"); //(you may need to change the name) if (booth != null && booth.exists()); { //Check it's really there booth.interact("Bank"); //Interact with bank booth sleep(500); // Sleep after interacting to give time for bank to open } //Withdrawing an item: if(bank.contains("Bucket")) { bank.withdraw("Bucket", 1); } else { //... do something like stop } Note that stuff like static sleeps etc are really not a good idea, but it's fine for now. Also, I wrote this in the reply box so there may be some errors (sorry!). So ye back to that if/else thing, basically run checks to determine what action to perform, one at a time. For example, if your inventory has a bucket and the bank is open, close the bank. Or if you have a bucket and the bank is closed, drop the bucket. Or if your inventory is empty and the bank is closed, then open the bank. Hope that helped, sorry it's a scrappy reply, I just woke up! Let me know if you have any more questions, Apa
-
APA Sand Crabs
That's odd. I will look into this, thanks
-
APA Sand Crabs
Done! Sure! Was it a crab claw isle spot? sure, refresh your scripts list! Cheers all! apa
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
The project compliance is essentially the version of java which your project is running on. It may well be that your project is for whatever reason running on an outdated version and you may need to update it, as you said
-
APA Sand Crabs
Thanks for the proggie! 5h is awesome! I've added it to the front page, if that's ok! ~apa Oh damn, that's strange. Those co-ordinates seem to be the position for west_1, is that the tile for which you had your gui configured? Sure! Refresh your scripts list.
-
APA Sand Crabs
Hey, Sorry about that, I've just started your trial now! (not sure what happened there!) ~apa
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
Awesome, try hovering your mouse over the lines - what does it say, and have you tried any of the proposed solutions?
-
APA Sand Crabs
Sure, and yes it will show up as one of your scripts for 24h! Sorry, it seems you've already had a trial, and as i'm sure you can understand, I can't keep giving them out! Cheers apa
-
Free Sig/Avi Competition
Certified banger:
-
APA Sand Crabs
Thanks for this There might not be much I can do though as webwalking is handled by the client I will take a look nonetheless though. I think this issue may also be mirror-specific apa Sure, done!