|
@@ -18,3 +18,14 @@ message EnterGameRequest {
|
|
|
repeated CommonRequest envelope = 3; // 公共必传参数集
|
|
|
}
|
|
|
|
|
|
+// 进入游戏响应消息
|
|
|
+message EnterGameResponse {
|
|
|
+ optional int64 player_id = 1 [default = 0]; // 玩家ID
|
|
|
+ optional int32 vip_level = 2 [default = 1]; // vip等级
|
|
|
+ optional int64 gold_balance = 3 [default = 0]; // 摩币余额
|
|
|
+ optional int64 magic_guide_stone_balance = 4 [default = 0]; // 魔晶石余额
|
|
|
+ optional int64 magic_guide_balance = 5 [default = 0]; // 魔法石
|
|
|
+ optional int64 not_receive_guide_stone_balance = 6 [default = 0]; // 未领取魔晶石余额
|
|
|
+ repeated int64 magic_ids = 7; // 玩家获得的魔法阵
|
|
|
+ optional int64 map_id = 8 [default = 0]; // 地图id
|
|
|
+}
|