Difference between revisions of "Template:NetMsg:MsgProfessionLevelUp"

From Conquer Online Wiki
Jump to navigation Jump to search
(Update from WikiBot.)
 
(Update from WikiBot.)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<includeonly><syntaxhighlight lang="proto">message MsgProfessionLevelUp {
+
<noinclude>{{ NetMsg:MsgProfessionLevelUp }}</noinclude><includeonly><syntaxhighlight lang="proto">
 +
message MsgProfessionLevelUp {
 
   required ProfessionLevelUpAction Action = 1;
 
   required ProfessionLevelUpAction Action = 1;
 
   optional uint32 UserId = 2;
 
   optional uint32 UserId = 2;
 
   optional uint32 RankId = 3;
 
   optional uint32 RankId = 3;
 
   repeated TitleOwnerInfo Info = 4;
 
   repeated TitleOwnerInfo Info = 4;
}
+
}</syntaxhighlight></includeonly><noinclude>
enum ProfessionLevelUpAction {
+
[[Category:NetMessage templates]]</noinclude>
  Upgrade = 0;
 
  SetTitleRank = 1;
 
  SetTitleInfo = 2;
 
}
 
message TitleOwnerInfo {
 
  optional uint32 UserId = 1;
 
  optional uint32 RankId = 2;
 
  optional string Name = 3;
 
}
 
</syntaxhighlight></includeonly>
 

Latest revision as of 01:16, 30 July 2019

message MsgProfessionLevelUp {
   required ProfessionLevelUpAction Action = 1;
   optional uint32 UserId = 2;
   optional uint32 RankId = 3;
   repeated TitleOwnerInfo Info = 4;
}