招募功能协议

This commit is contained in:
sk 2024-11-01 02:24:19 +08:00
parent 4082fc11f2
commit 85f3dcec6c
2 changed files with 41 additions and 3 deletions

View File

@ -109,6 +109,12 @@ enum GameHallPacketID {
//
PACKET_CSRoomConfig = 2300;
PACKET_SCRoomConfig = 2301;
//
PACKET_CSRoomRecruit = 2302;
PACKET_SCRoomRecruit = 2303;
//
PACKET_CSInviteJoinRoom = 2304;
PACKET_SCInviteJoinRoom = 2305;
// client -> gamesrv
// id 8000~8099
@ -158,7 +164,7 @@ message SCCreateRoom{
//
message CSEnterRoom{
int32 RoomId = 1; //
int32 GameId = 2; //
int32 GameId = 2; //,
string Password = 3; //
}
//PACKET_SC_ENTERROOM
@ -545,4 +551,30 @@ message CSRoomConfig{}
// PACKET_SCRoomConfig
message SCRoomConfig{
repeated RoomTypeInfo List = 1;
}
//
// PACKET_CSRoomRecruit
message CSRoomRecruit{
int32 RoomId = 1; // id
int32 On = 2; // 1 2
}
// PACKET_SCRoomRecruit
message SCRoomRecruit{
int32 RoomId = 1; // id
int32 On = 2; // 1 2
}
//
// PACKET_CSInviteJoinRoom
message CSInviteJoinRoom{
}
// PACKET_SCInviteJoinRoom
message SCInviteJoinRoom{
int32 RoomId = 1; // id
bool IsSystem = 2; //
int32 SnId = 3; // id
string Name = 4; //
int32 UseRoleId = 5; // id
string RoomName = 6; //
}

View File

@ -351,6 +351,10 @@ message PlayerData {
int32 UseSkinId = 50; // id
string ChannelID = 51; // ID
int32 GuideStep = 52; // ; 0-1
//
// 0
// 0-1
repeated int32 Guide = 53;
}
//
@ -1341,8 +1345,10 @@ message WindowsInfo{
//PACKET_CSUpdateAttribute
message CSUpdateAttribute{
int32 Tp = 1; // 1. 2. 3.() 4.
repeated int64 Param = 2;
int32 Tp = 1; // 1. 2. 3.() 4.
repeated int64 Param = 2; // ;
int32 GuideType = 3; // 0 1
int32 Step = 4; //
}
//PACKET_SCUpdateAttribute
message SCUpdateAttribute{