LordMage
New member
- Joined
- Jan 18, 2005
- RedCents
- 10¢
I know they have stuff on MacroQuests website, but those guys are a bunch of asses, they will flame you for asking a simple question, so I am starting this thread to help myself and others make or edit Macros
the macro that I am using to start this thread is not mine, it was posted by Redbot, but I am going to breakdown the parts I understand and pose questions about the parts I don't understand.
here it is:
the macro that I am using to start this thread is not mine, it was posted by Redbot, but I am going to breakdown the parts I understand and pose questions about the parts I don't understand.
here it is:
Rich (BB code):
| This macro made for www.Redguides.com
| Don't steal it or we'll punch your fase!
#turbo
#event camp "personingroup tells the group, 'lets roll'
#event dzadd "personyouwanttoadd tells you, 'add me'
#event invite "#*#invites you to join#*#"
#Event Zoned "#*#You have entered#*#"
Sub Main
:loopstart
/doevents
/call GMcheck
/if (${Target.Level}>67) /tar npc next
/if (${Target.Distance}>220) /keypress esc
/if (${Target.ID}==FALSE) /tar NPC radius 220
/delay 10
/goto :loopstart
/return
Sub GMcheck
/if (${Spawn[gm].ID}) {
/echo Gm detected
/beep
/beep
/beep
/keypress 9
/endmac
/unload
/q
}
/return
Sub event_camp
/sit
/camp desk
/return
sub event_zoned
/delay 5s
/sit
/camp desk
/endmac
/return
sub event_dzadd
/dzadd personyouwanttoadd
/return
sub event_invite
/invite
/return


oThis /call MySub ${var1} ${var3} /echo This value was returned from MySub: ${Macro.Return} /return