Jump to content

Apaec

Scripter III
  • Posts

    11135
  • Joined

  • Last visited

  • Days Won

    88
  • Feedback

    100%

Everything posted by Apaec

  1. If there are no interface ids then you'd probably need to use colourpicker to read a pixel value on the screen. For example the world selectionez screen has a black background. If you read a group of pixels around the bottom left corner for example, then if they are all black (0,0,0) exactly, then you can determine that you're on the world selection screen. Apa
  2. loll damn! must have misclicked the ladder. Will add a failsafe for this which I will push in the next update Apaec
  3. 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
  4. Sure, have enabled a 24h trial on your account. Enjoyy! Apa
  5. 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
  6. 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
  7. 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
  8. 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
  9. 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
  10. Apaec

    Signatures

    Well atm i'm on my calculator but ye I also have a toaster
  11. Apaec

    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
  12. 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...
  13. I'll pay my virginity for your virginity is gud deel?
  14. 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 ^.
  15. 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
  16. Anything logged in console and can you provide a screenie? apa
×
×
  • Create New...