If CharName is in my guild
// do nothing
else
// ginvite
end
What I have so far:
It works by sending the ginvite and checking if they're in guild, however it sends the ginvite regardless. Almost as if it's ignoring the doesn't equal statement
Any assistance is appreciated.
// do nothing
else
// ginvite
end
What I have so far:
Code:
/run GuildRoster();
/run for i=1,GetNumGuildMembers(true) do local n = string.lower(GetGuildRosterInfo(i,name)) if n == "testwhochar-mal'ganis" then print("done") else if n ~= "testwhochar-mal'ganis" then GuildInvite("Testwhochar-Mal'ganis") end end end
It works by sending the ginvite and checking if they're in guild, however it sends the ginvite regardless. Almost as if it's ignoring the doesn't equal statement
Any assistance is appreciated.