• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Help on Macro (1 Viewer)

Balroak

New member
Joined
Sep 12, 2004
RedCents
Auto Group Invite

Can someone Help me with this one please?
Its an auto invite group mac but currently doesnt work..
 
Last edited:
Ok ok I'm as dumb as a rock..
Please help fix this for me.
Its not mine, so if posting something from mq2 boards here is naughty please delete it and I apologise in advance if I am doing wrong.

But if you can fix this I'd appreciate it.

I need it to innvite a guildie who sends tell "invite"
corss zone would be better but in zone will be fine.
I want the disband thing removed too.

Thanks in advance..

|PoTime Biatch
|This mac is made to invite latecomers for Time Raids. On recieing a tell saying 'invite' from a guildie it will autoinvite then disband.


#chat tell

#define <guild> "<guildname here>"

Sub Main

/echo PoTime Bitch Macro Activated

/declare Latecomer string outer
/declare InviteReturn string outer
/declare InviteTimer timer outer

:loop
/doevents
/delay 2s
/goto :loop

Sub Event_Chat(ChatType,Sender,ChatText)
/varset Latecomer ${Sender}
/if (${ChatText.Find[Invite]}) {
/call Invite
/if (${InviteReturn.Equal[INVITE_SUCCESS]} /disband
}
/return


Sub Invite
/squelch /target clear
/target ${Sender}
/if (!${Target.ID}) {
/echo Failed to get a Target
/varset InviteReturn TARGET_FAILED
/return
}
/varset InviteTimer 10s
/if (${Target.Guild.Equal[<guild>]}) {
/invite
:wait4join
/if (${InviteTimer}==0) {
/echo Invite Timed Out
/varset InviteReturn INVITE_FAILED
/return
}
}
/if (${Group}==0) {
/delay 1s
/goto :wait4join
}
/varset InviteReturn INVITE_SUCCESS
/return
 
ok hun, ya need to put it into a code window... makes it alot easer to read, then some one might help ya if they can :p

do [ code] put ur code here then do [/ code] to end it (take the spaces out

Rich (BB code):
|PoTime Biatch 
|This mac is made to invite latecomers for Time Raids. On recieing a tell saying 'invite' from a guildie it will autoinvite then disband. 


#chat tell 

#define <guild> "<guildname here>" 

Sub Main 

/echo PoTime Bitch Macro Activated 

/declare Latecomer string outer 
/declare InviteReturn string outer 
/declare InviteTimer timer outer 

:loop 
/doevents 
/delay 2s 
/goto :loop 

Sub Event_Chat(ChatType,Sender,ChatText) 
/varset Latecomer ${Sender} 
/if (${ChatText.Find[Invite]}) { 
/call Invite 
/if (${InviteReturn.Equal[INVITE_SUCCESS]} /disband 
} 
/return 


Sub Invite 
/squelch /target clear 
/target ${Sender} 
/if (!${Target.ID}) { 
/echo Failed to get a Target 
/varset InviteReturn TARGET_FAILED 
/return 
} 
/varset InviteTimer 10s 
/if (${Target.Guild.Equal[<guild>]}) { 
/invite 
:wait4join 
/if (${InviteTimer}==0) { 
/echo Invite Timed Out 
/varset InviteReturn INVITE_FAILED 
/return 
} 
} 
/if (${Group}==0) { 
/delay 1s 
/goto :wait4join 
} 
/varset InviteReturn INVITE_SUCCESS 
/return
 
Help on Macro

Users who are viewing this thread

Back
Top