Everything posted by Apaec
-
Clay miner
I catch your drift. But does making it a bit more random make it more human like? c:
-
Clay miner
mhm, interesting code c: Safe, btw. http://pastebin.com/YrdYpCE0 You can use localWalker.walkPath(Position[]) instead of walking to each individual position though! Apaec
-
Custom hop method
Well enum allows you to store extra things such as whether or not the world is pvp etc, idk, an enum would probably be more useful generally
-
APA Script Trials
Sure, have enabled a 24h trial on your account. Enjoyy! Apa
-
best place to train range at 80+ 1def/pray
I think you can go nmz, all you need is blowpipe. You can afk at nmz so that might save you a bit of time. Other than that i've jsut got my levels playing normally through zulrah etc
-
Sleeping Crab Detection
Welllll Firstly, we already have 3 rock crabs scripts (lol), but I guess we'll all welcome new competition The way I check in my script is much the same to how a human would check: Walk up to crab Check if there is a rock crab in the nearest 3x3 square around the player which is fresh Attack said crab Check if under attack & rock crab still exists If no rock crab (NPC) spawns, then refresh ofcourse there would be timers going on throughout. The only problem with this method is sometimes it refreshes when it doesnt need to if the world lags by over 5 seconds or so, but this rarely happens, so it's not too much of a problemo in my script. Apaec
-
Will someone PLEASE make clay humidifier
Write one for yourself! http://osbot.org/forum/topic/58775-a-beginners-guide-to-writing-osbot-scripts-where-to-get-started-by-apaec/ That way the ban rate will be way low as you're the only one using the script, and you have the satisfaction of being able to update it / customise it you your free will Apaec
-
How I've been evading all dem bans
u drive me to an early gravy
-
How I've been evading all dem bans
pls go home
-
How I've been evading all dem bans
lol hashmap
-
Oldschool bossing with magic?
Yes. Zulrah. mage is effective against 3 of the 4 phases (melee and ranged and jad), and it still hits on his mage phase. So yes, you can use a swamp trident and zulrah will be easy (takes a while to learn tho!) Apaec
-
Don't you just love when Mald: does something sweet!
ew
- NBA Playoffs
-
Native English speaker needed
anne i think you know you'd like to send it to me the most pls but srs note im english and I did a course in tefl as well so ye, feel free to ask any questinos c: Apa
-
Trying to cast crumble undead
The problemo is here: switch(getState()){ case KILL: NPC skeleton = npcs.closest("Skeleton"); if (skeleton.isVisible() && getTabs().getOpen().equals(magic)){ getMagic().castSpellOnEntity(Spells.NormalSpells.CRUMBLE_UNDEAD, skeleton); } else sleep(random(100,250)); getTabs().open(Tab.MAGIC); break; more importantly: if (skeleton.isVisible() && getTabs().getOpen().equals(magic)){ Firstly, nullcheck for the skeleton. Secondly, it would have to be getTabs().getOpen().equals(Tab.MAGIC); (not sure why you had just magic there, but i would expect it to give you an error for that). The reason it opens the magic tab then does nothing is because that if statement returns false every time as you just wrote magic in there. that means it always goes to the else part which says open the magic tab (which already checks if it is open or not before performing). So ye, replace all that with this: case KILL: NPC skeleton = npcs.closest("Skeleton"); if (skeleton != null && skeleton.exists() && skeleton.isVisible() && getTabs().getOpen().equals(Tab.MAGIC)){ getMagic().castSpellOnEntity(Spells.NormalSpells.CRUMBLE_UNDEAD, skeleton); sleep(3000L); } else { sleep(random(100,250)); getTabs().open(Tab.MAGIC); } break; Let me know if anything is unclear Apaec
- APA Script Trials
-
Signatures
Well atm i'm on my calculator but ye I also have a toaster
-
Signatures
Thank you sounds good ! sorry I used you as an example. My comp just gets a bit laggy with all the images on 1 page hehe :c but I appreciate this
-
Signatures
Why can we not hide supermod signatures? No offence to anyone, but as @Oliver is so active on the forum, I see him post alot, and he's got so many ads in his sig it hurts. His sig takes up pretty much my whole laptop screen when I scroll down and it's quite obstructive, and I've found I can hide everyone's signature apart from his (and presumably other supermods +). I was wondering if this was a bug or intended, and if so for what purpose? Apaec PS oliver u are great keep it up Ye...
-
Selling my virginity
I'll pay my virginity for your virginity is gud deel?
- Selling Forum Name
-
What does the mirror client do?
http://osbot.org/forum/topic/66803-what-is-osbots-mirror-client/ http://osbot.org/forum/topic/66800-osbot-mirror-client-your-guide/ You may find these links helpful ^.
- NBA Playoffs!
-
What scripts do we need? (that arent slayer)
You're not allowed to release a free AIO cooker as there are already two on the store.
-
5 days since i've purchased the AIO hunter, still nothing
this is NOT normal! sometimes payments take a little while to go through but this sounds like a mistake. Contact @Maldesto with a PM and he'll sort it out for you Apaec