ID:268556
 
How would you check to see if the mob I am trying to attack is in front of me.
mob/verb
Attack(mob/M in *what* )
Look up the get_step() proc in the help window.
In response to Officer Falcon
Alright, thank you.
Ryne Rekab wrote:
How would you check to see if the mob I am trying to attack is in front of me.
mob/verb
Attack(mob/M in *what* )


You also need an "as mob" clause before the in, if you want to limit this to mobs.

Lummox JR