;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
}
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?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
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
}
}
Holy 3 month old thread batman!!way to slap him with a comment primalz lol, I like the solution Nup