Everything u can do is on THIS page
There is no command that would return string value, meaning name of creature,
but u can check if the ID of creature has the name taht u put in list.
For example
Creature.NameIn(123456, Demon, Dragon Lord, Hellhound, etc....)
It will return value 1, if the ID is one of listed creatures. and 0 if not
I used this command to make my utito tempo macro on my EK, to use it only when fighting certain kind of monster
example:
________________________________________
(its in protector)
There is no command that would return string value, meaning name of creature,
but u can check if the ID of creature has the name taht u put in list.
For example
Creature.NameIn(123456, Demon, Dragon Lord, Hellhound, etc....)
It will return value 1, if the ID is one of listed creatures. and 0 if not
I used this command to make my utito tempo macro on my EK, to use it only when fighting certain kind of monster
example:
Code:
target:=Creature.Attacking()
Self.Attacking()==1
Self.Mana>=640
Creature.NameIn(!target!, Hellhound)==1
Creature.Health(!target!)>=35
Self.Say(utito tempo)
exit()
________________________________________
Quote:I need to make a macro that gets the name of who passes on my screen, any ideas?U can setup bot to make screenshot every time some1 passes by
(its in protector)