| | |
| | | |
| | | // B9 0A 按条件邀请玩家加入队伍 #tagCGInvitePlayerJoinTeamByLV |
| | | |
| | | public class CB90A_tagCGInvitePlayerJoinTeamByLV : GameNetPackBasic { |
| | | public class CB90A_tagCGInvitePlayerJoinTeamByLV : GameNetPackBasic |
| | | { |
| | | public ushort LVLimit; // 目标玩家大于等于此等级 |
| | | public byte InviteCnt; // 邀请玩家个数 |
| | | |
| | | public CB90A_tagCGInvitePlayerJoinTeamByLV () { |
| | | combineCmd = (ushort)0x03FE; |
| | | public CB90A_tagCGInvitePlayerJoinTeamByLV() |
| | | { |
| | | combineCmd = (ushort)0x1801; |
| | | _cmd = (ushort)0xB90A; |
| | | } |
| | | |
| | | public override void WriteToBytes () { |
| | | WriteBytes (LVLimit, NetDataType.WORD); |
| | | WriteBytes (InviteCnt, NetDataType.BYTE); |
| | | public override void WriteToBytes() |
| | | { |
| | | WriteBytes(LVLimit, NetDataType.WORD); |
| | | WriteBytes(InviteCnt, NetDataType.BYTE); |
| | | } |
| | | |
| | | } |