Page 1 of 1

auto invite to group macro

Posted: Tue May 11, 2004 5:35 pm
by donmacro
need small simple macro that presses folllow inviting you to group if your afk

thanks

Posted: Tue May 11, 2004 6:00 pm
by wilso132
Did you even look at the manual at all? This is about 4 lines of code.

Posted: Tue May 11, 2004 6:56 pm
by ieatacid
I'll bite, I'm bored.

Code: Select all

#event follow "#*#To join the group, click on the 'FOLLOW' option, or 'DISBAND' to cancel.#*#"

Sub Main
   /if (!${Me.Grouped}) {
      /lfg on
      /echo LFG on
   } else {
      /echo Already grouped!
      /end
   }
   :Loop
   /doevents
   /delay 5
   /goto :Loop
/return

Sub Event_follow
   /delay 3s |so it's not an instant-join
   /keypress invite_follow
   /end
/return

new events

Posted: Wed May 12, 2004 2:30 am
by Fuergrissa

Code: Select all

#event follow "To join the group, click on the 'FOLLOW' option, or 'DISBAND' to cancel." 
is now

Code: Select all

#event follow "#*#To join the group, click on the 'FOLLOW' option, or 'DISBAND' to cancel.#*#"