Code: Select all
sub main
:loop
/if (${Spawn[Creature].ID}>0) /popup Destroy!
/target Creature
/delay 5
/face
/goto :loop
/endmacro
endModerator: MacroQuest Developers
Code: Select all
sub main
:loop
/if (${Spawn[Creature].ID}>0) /popup Destroy!
/target Creature
/delay 5
/face
/goto :loop
/endmacro
endCode: Select all
Sub Main
:loop
/if (${Spawn[Creature].ID}) {
/popup Destroy!
/target Creature
/delay 5
/face
}
/goto :loop
/returnAre you running this like /mac mymacro "An Ancient Cyclops"??n00bCoder wrote:Basically, i stick in a name, go about my buisness and if i ever am in the same zone as specified critter, it goes berzerk till i kill and loot it... At least, thats what it's supposed to do.... Just a spawn notification, crude but effective, but it doesnt seem to work anymore. Any ideas?
I would like to get this working, if you have any alternatives i would not mind them either, but i would like to get this one up and running. Thanks!Code: Select all
sub main :loop /if (${Spawn[Creature].ID}>0) /popup Destroy! /target Creature /delay 5 /face /goto :loop /endmacro end