auto accept raid/group invites

morgur

Active Member
Just reaching out to see if anyone has a simple script to accept raid or group invites? thanks!
 

morgur

Active Member
simple join group - accept invite script

Thanks for the tip. Here's what I did and it works fine. It auto quits the script once I'm grouped as well.

Code:
;group.iss autoaccepts any invite for group/raid, etc.
function main()
	{
	 do
	   {
	    if ${Me.GroupCount} <= 1
     {
	  EQ2execute /acceptinvite 
		 wait 60
	   }
	   else 
			Script[group]:End
	}
	while 1
}
 

Pygar

EQ2Bot Specialist
With the level of blind invites that get sent around, I've never been comfortable using this.

relay -all eq2execute /acceptinvite

Gets the job done
 

pz

Active Member
yeah thats what i do as well, i have an [accept] button in my eq2botcommander that relays /acceptinvite.
 

Nuprecon

Active Member
With the level of blind invites that get sent around, I've never been comfortable using this.

relay -all eq2execute /acceptinvite

Gets the job done
Can't you catch the wording of the pop up window with an atom and then do checks for "master names"? accept it if its from "Nuprecon" refuse it if its from "Pygar" type thing?

Code:
Event[EQ2_onChoiceWindowAppeared]:AttachAtom[MyAtom]

atom MyAtom()
	{
		declare ChoiceText string ${ChoiceWindow.Text}
		if ${ChoiceText.Find["Nuprecon"]}
		   {
				echo This is an acceptable master
				ChoiceWindow:DoChoice1
		   }
		   elseif  ${ChoiceText.Find["Pygar"]}
		   {
				echo This is an acceptable master
				ChoiceWindow:DoChoice1
			
			}
			else
			{
				echo Not an acceptable master... Tell him no.
				ChoiceWindow:DoChoice2
			}
	}
 
Top Bottom