mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 06:24:38 +02:00
Linkshell inviting completed.
This commit is contained in:
parent
8a0ebe7ec4
commit
108d8be013
22 changed files with 377 additions and 43 deletions
|
@ -678,14 +678,21 @@ namespace FFXIVClassic_Map_Server
|
|||
Server.GetWorldConnection().QueuePacket(packet, true, false);
|
||||
}
|
||||
|
||||
public bool RequestWorldLinkshellRankChange(Player player, string lsname, string memberName, byte newRank)
|
||||
public void RequestWorldLinkshellRankChange(Player player, string lsname, string memberName, byte newRank)
|
||||
{
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
public bool RequestWorldLinkshellAddMember(Player player, string lsname, string memberName)
|
||||
public void RequestWorldLinkshellInviteMember(Player player, string lsname, uint invitedActorId)
|
||||
{
|
||||
return false;
|
||||
SubPacket packet = LinkshellInvitePacket.BuildPacket(player.playerSession, invitedActorId, lsname);
|
||||
Server.GetWorldConnection().QueuePacket(packet, true, false);
|
||||
}
|
||||
|
||||
public void RequestWorldLinkshellCancelInvite(Player player)
|
||||
{
|
||||
SubPacket packet = LinkshellInviteCancelPacket.BuildPacket(player.playerSession);
|
||||
Server.GetWorldConnection().QueuePacket(packet, true, false);
|
||||
}
|
||||
|
||||
public bool RequestWorldLinkshellRemoveMember(Player player, bool wasKicked, string lsname, string memberName)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue