The bot can't accept party invites if you don't have a plugin/bot for.
Except if your resolution is low enough to have the invite override the inventory space and the bot was iding items, clicked on it.
Hey All,
The main reason Pushedx put in the auto DND was for this to stop from happening.
Some duche stays in town and pvp invites or party invites.
When the bot does it's thing, since it's not using packets, but using real window mouse clicks via the client.
if it happens to id or left click in that area, you will click the party invite.
This actually doesn't happen anymore if you have auto dnd on, so you do not have dnd on because it you did, party invites wouldn't be seen. Test it yourself. Dnd supresses all pop up messages.
An Easy fix, but not needed since auto DND solves the issue, is for this is to check if in a party auto leave and block person requesting party invite.
Code:
int inviteCount = 0;
if (LokiPoe.InstanceInfo.PendingPartyInvites != null)
{
if (LokiPoe.Me.PartyStatus == PartyStatus.PartyMember)
{
inviteCount++;
if (inviteCount > 3)
{
string LeaderName = LokiPoe.InstanceInfo.PartyLeaderAccount;
if (LokiPoe.Me.Name != LeaderName && LeaderName != "")
{
LokiPoe.Type("/block " + LeaderName);
inviteCount = 0;
Log.InfoFormat("Stoping Bot Because Some Duche[{0}] keeps tring to invite, best to report him on a safe account for harassing", LeaderName);
BotManager.Stop();
}
}
LokiPoe.Type("/leave");
}
}
I've logged most invites and usually, I log on with 5-10 legit accounts, report and a few weeks if not a month latter said duche will be banned.
It's probably the same fucker, but yea, we don't put up with this shit.