The Basics of ...

Mrktwiz

New member
Joined
Jan 23, 2006
Messages
121
Reaction score
0
Points
0
Can anyone point me out to a post that tells/shows beginners the basics of creating macro's? Im new to this and im looking at peoples macro's and it makes sense to me, just dont understand some stuff. Seems interesting creating macros though. Appreciate the help thx
 
anyone know if theres a code that can allow you to check for a mob every second in the zone, and if its up, have it do an action?
 
Mrktwiz said:
anyone know if theres a code that can allow you to check for a mob every second in the zone, and if its up, have it do an action?

Code:
sub main

:mainloop
/if (${SpawnCount[mob]}>0) /call dostuff
/delay 1s
/goto :mainloop
/return

Sub dostuff
/tar mob
/kill
/return