装备升星(云游商人)

master_huanxiang
mengchengzhen 2021-04-16 17:16:59 +08:00
parent 3138e6de79
commit 6deaeac11f
2 changed files with 14 additions and 0 deletions

View File

@ -884,6 +884,9 @@ enum MessageType{
SPECICAL_MONSTER_CHOOSE_REQUEST = 11846;//up
SPECICAL_MONSTER_CHOOSE_RESPONSE = 11847;
EQUIP_UPLEVEL_REQUEST = 11848;//
EQUIP_UPLEVEL_RESPONSE = 11849;
// T 11900
TRIGGER_EVENT_REQUEST = 11900; //
TRIGGER_EVENT_RESPONSE = 11901;

View File

@ -824,3 +824,14 @@ import "CommonProto.proto";
message ActiveUserMountResponse{
optional int32 validTime = 1;//
}
//
message EquipUpLevelRequest{
optional int32 activityId = 1;
optional int32 equipId = 2;
optional int32 itemId = 3;
optional int32 itemNum = 4;
}
message EquipUpLevelResponse{
optional bool result = 1;
optional Drop drop = 2;
}