What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Development] PartyBuddy -- Auto Party Manager

Hi. Have a small problem. Plugin create party and after 20-30 seconds non leader party members leave it. Leader invite them again and they accept it. Another 20-30 secs and party dismised by partymembers.
What I do wrong?
 

Attachments

Hi. Have a small problem. Plugin create party and after 20-30 seconds non leader party members leave it. Leader invite them again and they accept it. Another 20-30 secs and party dismised by partymembers.
What I do wrong?

The issue seems to be with the username of the parties:
PHP:
[1:30:09:438] [PartyBuddy]: PARTY_INVITE: From - ???????
[1:30:09:438] [PartyBuddy]: PARTY_INVITE: I am NOT in a party && I am NOT supposed to be a leader
[1:30:09:438] [PartyBuddy]: PARTY_INVITE: Accepting Group Invite
[1:30:10:135] [PartyBuddy]: PARTY_MEMBERS_CHANGED
[1:30:10:135] [PartyBuddy]: PARTY_MEMBERS_CHANGED: I am IN a party.
[1:30:10:502] [PartyBuddy]: BuildPartyList()
[1:30:10:522] [PartyBuddy]: BuildPartyList(): Adding ???????
[1:30:10:522] [PartyBuddy]: BuildPartyList(): Adding ???????

I am not aware of how to handle special characters, so unfortunately I have no solution to your problem,
 
It's russian letters.
Can I increase "WaitTimer _partyCheckTimer = WaitTimer.ThirtySeconds;" from 30 secs to more great value - 300 or 600 seconds? I don't know syntax of this value.
 
Yes, you may however I chose a static one, WaitTimer takes a TimeSpan, so if you'd like to set one that isn't static the syntax would be:
PHP:
private readonly WaitTimer _partyCheckTimer = new WaitTimer(new TimeSpan(days, hours, minutes, seconds));
 
Back
Top