vip任务相关协议

master_huanxiang
wangyuan 2019-05-27 14:01:40 +08:00
parent 3fc5344b23
commit f0034260c9
4 changed files with 42 additions and 3 deletions

View File

@ -338,3 +338,23 @@ option optimize_for = SPEED;
optional int32 arenaLevel = 10; //
}
message UserMissionInfo{
optional int32 missionId =1;
optional int32 progress =2; //
optional int32 state = 3; //0: 1 2
optional int32 type =4 ;// 1vip
}
message VipMissionInfo{
optional int32 vipLevel =1; //vip
repeated UserMissionInfo UserMissionInfo =2; //VIP
optional int32 hadTaked = 3 ;// 1 0
}
message MissionUpdateListIndication{
repeated UserMissionInfo UserMissionInfo =2; //
}

View File

@ -89,8 +89,6 @@ import "CommonProto.proto";
message GetAdventureStateInfoResponse{
repeated AdventureStateInfo adventureStateInfoList = 1;
optional int32 nextBossFlushTime = 2; //boss(boss ADVENTURE_FLUSH_BOSS_REQUEST)
optional int32 buyTimsPerDay =3; //
optional int32 dayChallengeTimes =4;//
}

View File

@ -133,6 +133,9 @@ enum MessageType{
GET_FUNCTIONOFTIME_REQUEST = 16630; //
GET_FUNCTIONOFTIME_RESPONSE = 16631;
GET_VIP_MISSION_REQUEST = 16632; //vip
GET_VIP_MISSION_REPONSE = 16633;
// H 10700
HERO_RAND_REQQUEST = 10701;
HERO_RAND_RESPONSE = 10702;
@ -176,6 +179,8 @@ enum MessageType{
MAP_FAST_FIGHT_REQUEST = 11218; //
MAP_FAST_FIGHT_RESPONSE = 11219;
MISSION_UPDATE_INDICATION = 111220; //
// N 11300
// O 11400
// P 11500
@ -241,6 +246,12 @@ enum MessageType{
// V 12100
VIEW_FIGHTREPLAY_REQUEST = 12100; //
VIEW_FIGHTREPLAY_RESPONSE = 12101;
VIP_LEVELUP_REQEUST = 12102; //VIP
VIP_LEVELUP_RESPONSE = 12103;
VIP_TAKE_LEVELREWARD_REQUEST = 12104; //vip
VIP_TAKE_LEVELREWARD_RESPONSE = 12105;
// W 12200
WORKSHOP_FOUNDATION_REQUEST = 12200; //
WORKSHOP_FOUNDATION_RESPONSE = 12201;

View File

@ -156,7 +156,6 @@ import "CommonProto.proto";
message GetSecretBoxInfoResponse{
optional int32 season =1;//id
optional int32 count =2; //
optional int32 dayCount=3; //
repeated SecretBoxFreeUseInfo secretBoxFreeUseInfo =4; // 使
}
@ -198,4 +197,15 @@ import "CommonProto.proto";
}
message GetVipMissionResponse{
optional VipMissionInfo vipMissionInfo =1;
}
message VipLevelUpResponse{
optional VipMissionInfo vipMissionInfo =1;
}