Moderator: MacroQuest Developers

Code: Select all
| Discord.mac
| Checks to see if there any PC's with-in a radius of 200
| between levels 6 and 65.
| Shamefully By: a_troll_01
| Usage: /macro Discord
#turbo
Sub Main
:PCCheckLoop
/delay 1s
| Check for PC's with-in level range 6-65, and with-in a radius of 200
/if n $searchspawn(pc,range:6:65,radius:200)!=0 {
| If Player detected, say the following and execute a Beep
/echo Player Dangerously Close! Use Caution!
/beep
} else {
| If no players were detected matching those parameters above,
| check again.
/goto PCCheckLoop
}
/return