PartyAcceptInvite
Accepts a pending party invitation.
The invitation must have been received before calling this method (the inviter’s ID is stored internally).
Принимает ожидающее приглашение в пати.
Приглашение должно быть получено до вызова этого метода (ID пригласившего сохраняется внутренне).
procedure PartyAcceptInvite;
def PartyAcceptInvite() -> None: ...
begin
PartyAcceptInvite;
Wait(500);
if InParty then
AddToSystemJournal('Joined the party')
else
AddToSystemJournal('Failed to join');
end.
PartyAcceptInvite()
Wait(500)
if InParty():
AddToSystemJournal('Joined the party')
else:
AddToSystemJournal('Failed to join')