public void ginviteNextPerson()
{
foreach (KeyValuePair<string, Persons> curPerson in allPersons)
{
if (!invitedPersons.ContainsKey(curPerson.Key))
{
Logging.Write("GuildInviting :" + curPerson.Key);
Lua.DoString("GuildInvite(\"" + curPerson.Key + "\")");
writeInvitedPerson(curPerson.Value);
break;
}
}
}
public void ginviteNextPerson()
{
foreach (KeyValuePair<string, Persons> curPerson in allPersons)
{
if (!invitedPersons.ContainsKey(curPerson.Key))
{
Logging.Write("GuildInviting :" + curPerson.Key);
Lua.DoString(String.Format("SendChatMessage('{0}', 'WHISPER', nil, '{1}')", Lua.Escape("CHANGE THIS MESSAGE"), Lua.Escape(curPerson.Key)));
Lua.DoString("GuildInvite(\"" + curPerson.Key + "\")");
writeInvitedPerson(curPerson.Value);
break;
}
}
}
Anyone figure out how to stop the infinite loop that happens when /whoing?
I play on a super high pop server, so when it starts doing classes+race it will start looping them and never progress to the next class.
getting this error Could not construct instance of guildInviter! Exception was thrown. Exception:
Object reference not set to an instance of an object.
I have the same problem.. it will do warrior blood elf then warrior tauren.. then start at the top of the list and do warrior blood elf.. without going to other classes
I'll update it whenever I feel like it![]()
@mniel0
Maybe this picture will help.
This is not a profile, its a plugin so make sure you have it installed in your Honorbuddy\plugins folder
and also make sure the plugin is enabled or you won't be able to click on the settings button.
@tadadesigns
Are you talking about Guild Recruiter - Addons - Curse?
I would not recommend having the plugin whisper people as well. I got a 3 hour suspension for spamming when I tried that XD .
I got my guild capped at 1000 in about 16 hrs after sending 1st invites.
I made a macro that kicks any members that are offline, above a rank and have earned 0 weekly exp.
This example will kick all ranks higher then rank 2. if you want to change that then change the 2 in r>2
This macro is responsible for gkicking 200 members instantly. The spam was so massive it lagged my computer for a few seconds
PHP:/run for i =1,GetNumGuildMembers() do local n,_,r,_,_,_,_,_,o = GetGuildRosterInfo(i) local x = GetGuildRosterContribution(i) if x == 0 and r > 2 and o ~= 1 then print ('removing '..n..' due to inactivity') GuildUninvite(n) end end