_crossAreaHandlerExt.cs 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // ***************************************************************************
  10. // * 作者= justsogo
  11. // * 创建时间= 2019-06-27
  12. // * 用途= 跨服场景
  13. // ***************************************************************************
  14. // Generated from: crossAreaHandlerExt.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: item.proto
  17. namespace pomelo.area
  18. {
  19. //---------------------------------------------------------------------------------------
  20. /// <summary>
  21. /// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 多服无名镇 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  22. /// </summary>
  23. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleResItem")]
  24. public partial class BattleResItem : global::ProtoBuf.IExtensible
  25. {
  26. public BattleResItem() {}
  27. private int _rank;
  28. /// <summary>
  29. /// 排名
  30. /// </summary>
  31. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"rank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  32. public int rank
  33. {
  34. get { return _rank; }
  35. set { _rank = value; }
  36. }
  37. private int _pro;
  38. /// <summary>
  39. /// 职业
  40. /// </summary>
  41. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  42. public int pro
  43. {
  44. get { return _pro; }
  45. set { _pro = value; }
  46. }
  47. private string _name;
  48. /// <summary>
  49. /// 玩家名称
  50. /// </summary>
  51. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  52. public string name
  53. {
  54. get { return _name; }
  55. set { _name = value; }
  56. }
  57. private int _kills;
  58. /// <summary>
  59. /// 击杀数
  60. /// </summary>
  61. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  62. public int kills
  63. {
  64. get { return _kills; }
  65. set { _kills = value; }
  66. }
  67. private int _deads;
  68. /// <summary>
  69. /// 死亡数
  70. /// </summary>
  71. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"deads", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  72. public int deads
  73. {
  74. get { return _deads; }
  75. set { _deads = value; }
  76. }
  77. private int _pickEquipScore;
  78. /// <summary>
  79. /// 拾取装备评分之和
  80. /// </summary>
  81. [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"pickEquipScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  82. public int pickEquipScore
  83. {
  84. get { return _pickEquipScore; }
  85. set { _pickEquipScore = value; }
  86. }
  87. private int _sex = default(int);
  88. /// <summary>
  89. /// 性别
  90. /// </summary>
  91. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  92. [global::System.ComponentModel.DefaultValue(default(int))]
  93. public int sex
  94. {
  95. get { return _sex; }
  96. set { _sex = value; }
  97. }
  98. private global::ProtoBuf.IExtension extensionObject;
  99. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  100. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  101. }
  102. //---------------------------------------------------------------------------------------
  103. /// <summary>
  104. /// 多服无名镇结果推送, 1400
  105. /// </summary>
  106. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilServerBattleResultPush")]
  107. public partial class MutilServerBattleResultPush : global::ProtoBuf.IExtensible
  108. {
  109. public MutilServerBattleResultPush() {}
  110. private pomelo.area.BattleResItem _myData = null;
  111. /// <summary>
  112. /// rankdId>rankData数量,才有数据, 否则直接读randData数据
  113. /// </summary>
  114. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  115. [global::System.ComponentModel.DefaultValue(null)]
  116. public pomelo.area.BattleResItem myData
  117. {
  118. get { return _myData; }
  119. set { _myData = value; }
  120. }
  121. private int _rankId = default(int);
  122. /// <summary>
  123. /// myData存在,显示randId+,否则直接显示rankId, 然后读rankData排名数据
  124. /// </summary>
  125. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"rankId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  126. [global::System.ComponentModel.DefaultValue(default(int))]
  127. public int rankId
  128. {
  129. get { return _rankId; }
  130. set { _rankId = value; }
  131. }
  132. private readonly global::System.Collections.Generic.List<pomelo.area.BattleResItem> _rankData = new global::System.Collections.Generic.List<pomelo.area.BattleResItem>();
  133. [global::ProtoBuf.ProtoMember(3, Name=@"rankData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  134. public global::System.Collections.Generic.List<pomelo.area.BattleResItem> rankData
  135. {
  136. get { return _rankData; }
  137. }
  138. private global::ProtoBuf.IExtension extensionObject;
  139. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  140. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  141. }
  142. //---------------------------------------------------------------------------------------
  143. /// <summary>
  144. /// 多服无名镇右上角界面信息推送, 1401
  145. /// </summary>
  146. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleRightTopDataPush")]
  147. public partial class BattleRightTopDataPush : global::ProtoBuf.IExtensible
  148. {
  149. public BattleRightTopDataPush() {}
  150. private int _leftSec = default(int);
  151. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"leftSec", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  152. [global::System.ComponentModel.DefaultValue(default(int))]
  153. public int leftSec
  154. {
  155. get { return _leftSec; }
  156. set { _leftSec = value; }
  157. }
  158. private int _timeDropRate = default(int);
  159. /// <summary>
  160. /// 时间爆率
  161. /// </summary>
  162. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"timeDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  163. [global::System.ComponentModel.DefaultValue(default(int))]
  164. public int timeDropRate
  165. {
  166. get { return _timeDropRate; }
  167. set { _timeDropRate = value; }
  168. }
  169. private int _killDropRate = default(int);
  170. /// <summary>
  171. /// 额外爆率
  172. /// </summary>
  173. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"killDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  174. [global::System.ComponentModel.DefaultValue(default(int))]
  175. public int killDropRate
  176. {
  177. get { return _killDropRate; }
  178. set { _killDropRate = value; }
  179. }
  180. private int _kills = default(int);
  181. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  182. [global::System.ComponentModel.DefaultValue(default(int))]
  183. public int kills
  184. {
  185. get { return _kills; }
  186. set { _kills = value; }
  187. }
  188. private int _pickEquipScore = default(int);
  189. /// <summary>
  190. /// 玩家得分
  191. /// </summary>
  192. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"pickEquipScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  193. [global::System.ComponentModel.DefaultValue(default(int))]
  194. public int pickEquipScore
  195. {
  196. get { return _pickEquipScore; }
  197. set { _pickEquipScore = value; }
  198. }
  199. private int _pickEquipNums = default(int);
  200. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"pickEquipNums", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  201. [global::System.ComponentModel.DefaultValue(default(int))]
  202. public int pickEquipNums
  203. {
  204. get { return _pickEquipNums; }
  205. set { _pickEquipNums = value; }
  206. }
  207. private int _baseDropRate = default(int);
  208. /// <summary>
  209. /// 基础爆率
  210. /// </summary>
  211. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"baseDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  212. [global::System.ComponentModel.DefaultValue(default(int))]
  213. public int baseDropRate
  214. {
  215. get { return _baseDropRate; }
  216. set { _baseDropRate = value; }
  217. }
  218. private int _leaveDropBuff = default(int);
  219. /// <summary>
  220. /// 截至时间戳
  221. /// </summary>
  222. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"leaveDropBuff", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  223. [global::System.ComponentModel.DefaultValue(default(int))]
  224. public int leaveDropBuff
  225. {
  226. get { return _leaveDropBuff; }
  227. set { _leaveDropBuff = value; }
  228. }
  229. private global::ProtoBuf.IExtension extensionObject;
  230. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  231. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  232. }
  233. //---------------------------------------------------------------------------------------
  234. /// <summary>
  235. /// 多服无名镇排行信息 1404
  236. /// </summary>
  237. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossRankPushItem")]
  238. public partial class MutilCrossRankPushItem : global::ProtoBuf.IExtensible
  239. {
  240. public MutilCrossRankPushItem() {}
  241. private int _randId;
  242. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"randId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  243. public int randId
  244. {
  245. get { return _randId; }
  246. set { _randId = value; }
  247. }
  248. private int _score;
  249. /// <summary>
  250. /// 击杀数
  251. /// </summary>
  252. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"score", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  253. public int score
  254. {
  255. get { return _score; }
  256. set { _score = value; }
  257. }
  258. private string _name;
  259. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  260. public string name
  261. {
  262. get { return _name; }
  263. set { _name = value; }
  264. }
  265. private int _assists = default(int);
  266. /// <summary>
  267. /// 助攻数, 装备评分
  268. /// </summary>
  269. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"assists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  270. [global::System.ComponentModel.DefaultValue(default(int))]
  271. public int assists
  272. {
  273. get { return _assists; }
  274. set { _assists = value; }
  275. }
  276. private global::ProtoBuf.IExtension extensionObject;
  277. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  278. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  279. }
  280. //---------------------------------------------------------------------------------------
  281. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossRankPush")]
  282. public partial class MutilCrossRankPush : global::ProtoBuf.IExtensible
  283. {
  284. public MutilCrossRankPush() {}
  285. private readonly global::System.Collections.Generic.List<pomelo.area.MutilCrossRankPushItem> _datas = new global::System.Collections.Generic.List<pomelo.area.MutilCrossRankPushItem>();
  286. [global::ProtoBuf.ProtoMember(1, Name=@"datas", DataFormat = global::ProtoBuf.DataFormat.Default)]
  287. public global::System.Collections.Generic.List<pomelo.area.MutilCrossRankPushItem> datas
  288. {
  289. get { return _datas; }
  290. }
  291. private pomelo.area.MutilCrossRankPushItem _myData = null;
  292. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  293. [global::System.ComponentModel.DefaultValue(null)]
  294. public pomelo.area.MutilCrossRankPushItem myData
  295. {
  296. get { return _myData; }
  297. set { _myData = value; }
  298. }
  299. private global::ProtoBuf.IExtension extensionObject;
  300. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  301. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  302. }
  303. //---------------------------------------------------------------------------------------
  304. /// <summary>
  305. /// 多服无名镇,主面板信息, 700
  306. /// </summary>
  307. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossMainInfoRequest")]
  308. public partial class MutilCrossMainInfoRequest : global::ProtoBuf.IExtensible
  309. {
  310. public MutilCrossMainInfoRequest() {}
  311. private int _reqIndex;
  312. /// <summary>
  313. /// 请求排行榜的索引信息,默认0
  314. /// </summary>
  315. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"reqIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  316. public int reqIndex
  317. {
  318. get { return _reqIndex; }
  319. set { _reqIndex = value; }
  320. }
  321. private global::ProtoBuf.IExtension extensionObject;
  322. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  323. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  324. }
  325. //---------------------------------------------------------------------------------------
  326. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossMainNewsBase")]
  327. public partial class MutilCrossMainNewsBase : global::ProtoBuf.IExtensible
  328. {
  329. public MutilCrossMainNewsBase() {}
  330. private string _killer;
  331. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"killer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  332. public string killer
  333. {
  334. get { return _killer; }
  335. set { _killer = value; }
  336. }
  337. private string _dead;
  338. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"dead", DataFormat = global::ProtoBuf.DataFormat.Default)]
  339. public string dead
  340. {
  341. get { return _dead; }
  342. set { _dead = value; }
  343. }
  344. private pomelo.item.ItemDetail _equipDetail;
  345. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"equipDetail", DataFormat = global::ProtoBuf.DataFormat.Default)]
  346. public pomelo.item.ItemDetail equipDetail
  347. {
  348. get { return _equipDetail; }
  349. set { _equipDetail = value; }
  350. }
  351. private int _time = default(int);
  352. /// <summary>
  353. /// 时间戳
  354. /// </summary>
  355. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  356. [global::System.ComponentModel.DefaultValue(default(int))]
  357. public int time
  358. {
  359. get { return _time; }
  360. set { _time = value; }
  361. }
  362. private global::ProtoBuf.IExtension extensionObject;
  363. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  364. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  365. }
  366. //---------------------------------------------------------------------------------------
  367. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossMainInfoResponse")]
  368. public partial class MutilCrossMainInfoResponse : global::ProtoBuf.IExtensible
  369. {
  370. public MutilCrossMainInfoResponse() {}
  371. private int _s2c_code;
  372. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  373. public int s2c_code
  374. {
  375. get { return _s2c_code; }
  376. set { _s2c_code = value; }
  377. }
  378. private string _s2c_msg = "";
  379. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  380. [global::System.ComponentModel.DefaultValue("")]
  381. public string s2c_msg
  382. {
  383. get { return _s2c_msg; }
  384. set { _s2c_msg = value; }
  385. }
  386. private int _minEquipScore = default(int);
  387. /// <summary>
  388. /// 最低装备评分
  389. /// </summary>
  390. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"minEquipScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  391. [global::System.ComponentModel.DefaultValue(default(int))]
  392. public int minEquipScore
  393. {
  394. get { return _minEquipScore; }
  395. set { _minEquipScore = value; }
  396. }
  397. private int _reqIndex = default(int);
  398. /// <summary>
  399. /// 附带请求中的reqIndex
  400. /// </summary>
  401. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"reqIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  402. [global::System.ComponentModel.DefaultValue(default(int))]
  403. public int reqIndex
  404. {
  405. get { return _reqIndex; }
  406. set { _reqIndex = value; }
  407. }
  408. private bool _isend = default(bool);
  409. /// <summary>
  410. /// 是否结束
  411. /// </summary>
  412. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"isend", DataFormat = global::ProtoBuf.DataFormat.Default)]
  413. [global::System.ComponentModel.DefaultValue(default(bool))]
  414. public bool isend
  415. {
  416. get { return _isend; }
  417. set { _isend = value; }
  418. }
  419. private readonly global::System.Collections.Generic.List<pomelo.area.MutilCrossMainNewsBase> _detail = new global::System.Collections.Generic.List<pomelo.area.MutilCrossMainNewsBase>();
  420. /// <summary>
  421. /// 一次只会传回10条
  422. /// </summary>
  423. [global::ProtoBuf.ProtoMember(6, Name=@"detail", DataFormat = global::ProtoBuf.DataFormat.Default)]
  424. public global::System.Collections.Generic.List<pomelo.area.MutilCrossMainNewsBase> detail
  425. {
  426. get { return _detail; }
  427. }
  428. private int _baseDropRate = default(int);
  429. /// <summary>
  430. /// 基础爆率
  431. /// </summary>
  432. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"baseDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  433. [global::System.ComponentModel.DefaultValue(default(int))]
  434. public int baseDropRate
  435. {
  436. get { return _baseDropRate; }
  437. set { _baseDropRate = value; }
  438. }
  439. private bool _iscanJoin = default(bool);
  440. /// <summary>
  441. /// 装备评分是否满足进入条件
  442. /// </summary>
  443. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"iscanJoin", DataFormat = global::ProtoBuf.DataFormat.Default)]
  444. [global::System.ComponentModel.DefaultValue(default(bool))]
  445. public bool iscanJoin
  446. {
  447. get { return _iscanJoin; }
  448. set { _iscanJoin = value; }
  449. }
  450. private global::ProtoBuf.IExtension extensionObject;
  451. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  452. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  453. }
  454. //---------------------------------------------------------------------------------------
  455. /// <summary>
  456. /// 击杀推送,1405
  457. /// </summary>
  458. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KillPlayerPush")]
  459. public partial class KillPlayerPush : global::ProtoBuf.IExtensible
  460. {
  461. public KillPlayerPush() {}
  462. private int _kills;
  463. /// <summary>
  464. /// 击杀数, 连续击杀数
  465. /// </summary>
  466. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  467. public int kills
  468. {
  469. get { return _kills; }
  470. set { _kills = value; }
  471. }
  472. private string _name;
  473. /// <summary>
  474. /// 击杀者名字
  475. /// </summary>
  476. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  477. public string name
  478. {
  479. get { return _name; }
  480. set { _name = value; }
  481. }
  482. private int _pro = default(int);
  483. /// <summary>
  484. /// 击杀者职业
  485. /// </summary>
  486. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  487. [global::System.ComponentModel.DefaultValue(default(int))]
  488. public int pro
  489. {
  490. get { return _pro; }
  491. set { _pro = value; }
  492. }
  493. private int _killSex = default(int);
  494. /// <summary>
  495. /// 击杀者性别
  496. /// </summary>
  497. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"killSex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  498. [global::System.ComponentModel.DefaultValue(default(int))]
  499. public int killSex
  500. {
  501. get { return _killSex; }
  502. set { _killSex = value; }
  503. }
  504. private int _killerServerID = default(int);
  505. /// <summary>
  506. /// 击杀者服务器id
  507. /// </summary>
  508. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"killerServerID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  509. [global::System.ComponentModel.DefaultValue(default(int))]
  510. public int killerServerID
  511. {
  512. get { return _killerServerID; }
  513. set { _killerServerID = value; }
  514. }
  515. private int _totalKills = default(int);
  516. /// <summary>
  517. /// 用于客户端本地刷新排名数据
  518. /// </summary>
  519. /// <summary>
  520. /// 总击杀数
  521. /// </summary>
  522. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"totalKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  523. [global::System.ComponentModel.DefaultValue(default(int))]
  524. public int totalKills
  525. {
  526. get { return _totalKills; }
  527. set { _totalKills = value; }
  528. }
  529. private int _totalAssists = default(int);
  530. /// <summary>
  531. /// 总助攻数
  532. /// </summary>
  533. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"totalAssists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  534. [global::System.ComponentModel.DefaultValue(default(int))]
  535. public int totalAssists
  536. {
  537. get { return _totalAssists; }
  538. set { _totalAssists = value; }
  539. }
  540. private string _hitter = "";
  541. /// <summary>
  542. /// 被击杀者名字
  543. /// </summary>
  544. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"hitter", DataFormat = global::ProtoBuf.DataFormat.Default)]
  545. [global::System.ComponentModel.DefaultValue("")]
  546. public string hitter
  547. {
  548. get { return _hitter; }
  549. set { _hitter = value; }
  550. }
  551. private int _hitterPro = default(int);
  552. /// <summary>
  553. /// 被击杀者职业
  554. /// </summary>
  555. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"hitterPro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  556. [global::System.ComponentModel.DefaultValue(default(int))]
  557. public int hitterPro
  558. {
  559. get { return _hitterPro; }
  560. set { _hitterPro = value; }
  561. }
  562. private int _hitterSex = default(int);
  563. /// <summary>
  564. /// 被击杀者性别
  565. /// </summary>
  566. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"hitterSex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  567. [global::System.ComponentModel.DefaultValue(default(int))]
  568. public int hitterSex
  569. {
  570. get { return _hitterSex; }
  571. set { _hitterSex = value; }
  572. }
  573. private global::ProtoBuf.IExtension extensionObject;
  574. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  575. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  576. }
  577. //---------------------------------------------------------------------------------------
  578. /// <summary>
  579. /// 面板信息请求, MSG_RequestMutilCrossBroadInfo 716
  580. /// </summary>
  581. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossBroadInfoRequest")]
  582. public partial class MutilCrossBroadInfoRequest : global::ProtoBuf.IExtensible
  583. {
  584. public MutilCrossBroadInfoRequest() {}
  585. private string _instanceId;
  586. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  587. public string instanceId
  588. {
  589. get { return _instanceId; }
  590. set { _instanceId = value; }
  591. }
  592. private global::ProtoBuf.IExtension extensionObject;
  593. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  594. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  595. }
  596. //---------------------------------------------------------------------------------------
  597. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossBroadInfoResponse")]
  598. public partial class MutilCrossBroadInfoResponse : global::ProtoBuf.IExtensible
  599. {
  600. public MutilCrossBroadInfoResponse() {}
  601. private int _s2c_code;
  602. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  603. public int s2c_code
  604. {
  605. get { return _s2c_code; }
  606. set { _s2c_code = value; }
  607. }
  608. private string _s2c_msg = "";
  609. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  610. [global::System.ComponentModel.DefaultValue("")]
  611. public string s2c_msg
  612. {
  613. get { return _s2c_msg; }
  614. set { _s2c_msg = value; }
  615. }
  616. private pomelo.area.BattleRightTopDataPush _data;
  617. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  618. public pomelo.area.BattleRightTopDataPush data
  619. {
  620. get { return _data; }
  621. set { _data = value; }
  622. }
  623. private global::ProtoBuf.IExtension extensionObject;
  624. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  625. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  626. }
  627. //---------------------------------------------------------------------------------------
  628. /// <summary>
  629. /// 装备状态推送,msgID = 1411
  630. /// </summary>
  631. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilEquipDropFlagPush")]
  632. public partial class MutilEquipDropFlagPush : global::ProtoBuf.IExtensible
  633. {
  634. public MutilEquipDropFlagPush() {}
  635. private readonly global::System.Collections.Generic.List<int> _dropIndex = new global::System.Collections.Generic.List<int>();
  636. [global::ProtoBuf.ProtoMember(1, Name=@"dropIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  637. public global::System.Collections.Generic.List<int> dropIndex
  638. {
  639. get { return _dropIndex; }
  640. }
  641. private global::ProtoBuf.IExtension extensionObject;
  642. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  643. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  644. }
  645. //---------------------------------------------------------------------------------------
  646. /// <summary>
  647. /// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 双服无名镇 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 双服无名镇排行信息
  648. /// </summary>
  649. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleRankInfo")]
  650. public partial class DoubleRankInfo : global::ProtoBuf.IExtensible
  651. {
  652. public DoubleRankInfo() {}
  653. private int _randId;
  654. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"randId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  655. public int randId
  656. {
  657. get { return _randId; }
  658. set { _randId = value; }
  659. }
  660. private int _wins;
  661. /// <summary>
  662. /// 胜场
  663. /// </summary>
  664. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"wins", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  665. public int wins
  666. {
  667. get { return _wins; }
  668. set { _wins = value; }
  669. }
  670. private int _fails;
  671. /// <summary>
  672. /// 败场
  673. /// </summary>
  674. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"fails", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  675. public int fails
  676. {
  677. get { return _fails; }
  678. set { _fails = value; }
  679. }
  680. private int _equals;
  681. /// <summary>
  682. /// 平局
  683. /// </summary>
  684. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"equals", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  685. public int equals
  686. {
  687. get { return _equals; }
  688. set { _equals = value; }
  689. }
  690. private string _servername;
  691. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"servername", DataFormat = global::ProtoBuf.DataFormat.Default)]
  692. public string servername
  693. {
  694. get { return _servername; }
  695. set { _servername = value; }
  696. }
  697. private int _pro;
  698. /// <summary>
  699. /// 头像-玩家职业
  700. /// </summary>
  701. [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  702. public int pro
  703. {
  704. get { return _pro; }
  705. set { _pro = value; }
  706. }
  707. private global::ProtoBuf.IExtension extensionObject;
  708. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  709. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  710. }
  711. //---------------------------------------------------------------------------------------
  712. /// <summary>
  713. /// 双服无名镇主面板信息, 701
  714. /// </summary>
  715. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossMainInfoRequest")]
  716. public partial class DoubleCrossMainInfoRequest : global::ProtoBuf.IExtensible
  717. {
  718. public DoubleCrossMainInfoRequest() {}
  719. private global::ProtoBuf.IExtension extensionObject;
  720. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  721. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  722. }
  723. //---------------------------------------------------------------------------------------
  724. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossMainInfoResponse")]
  725. public partial class DoubleCrossMainInfoResponse : global::ProtoBuf.IExtensible
  726. {
  727. public DoubleCrossMainInfoResponse() {}
  728. private int _s2c_code;
  729. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  730. public int s2c_code
  731. {
  732. get { return _s2c_code; }
  733. set { _s2c_code = value; }
  734. }
  735. private string _s2c_msg = "";
  736. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  737. [global::System.ComponentModel.DefaultValue("")]
  738. public string s2c_msg
  739. {
  740. get { return _s2c_msg; }
  741. set { _s2c_msg = value; }
  742. }
  743. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleRankInfo> _rankInfo = new global::System.Collections.Generic.List<pomelo.area.DoubleRankInfo>();
  744. /// <summary>
  745. /// 服务器不会特别多,一次传回
  746. /// </summary>
  747. [global::ProtoBuf.ProtoMember(3, Name=@"rankInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  748. public global::System.Collections.Generic.List<pomelo.area.DoubleRankInfo> rankInfo
  749. {
  750. get { return _rankInfo; }
  751. }
  752. private int _myServerRank = default(int);
  753. /// <summary>
  754. /// 1,-1, 暂无排名,2,小于rankInfo数量,myServerRankData为空,需要自己去rankInfo中取
  755. /// </summary>
  756. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"myServerRank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  757. [global::System.ComponentModel.DefaultValue(default(int))]
  758. public int myServerRank
  759. {
  760. get { return _myServerRank; }
  761. set { _myServerRank = value; }
  762. }
  763. private pomelo.area.DoubleRankInfo _myServerRankData = null;
  764. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"myServerRankData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  765. [global::System.ComponentModel.DefaultValue(null)]
  766. public pomelo.area.DoubleRankInfo myServerRankData
  767. {
  768. get { return _myServerRankData; }
  769. set { _myServerRankData = value; }
  770. }
  771. private int _seasonWins = default(int);
  772. /// <summary>
  773. /// 赛季占点百分比,分母
  774. /// </summary>
  775. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"seasonWins", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  776. [global::System.ComponentModel.DefaultValue(default(int))]
  777. public int seasonWins
  778. {
  779. get { return _seasonWins; }
  780. set { _seasonWins = value; }
  781. }
  782. private int _seasonBoxFlag = default(int);
  783. /// <summary>
  784. /// 赛季宝箱领取状态(seasonBoxFlag & 1, seasonBoxFlag & 2, seasonBoxFlag & 4)判断领取状态
  785. /// </summary>
  786. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"seasonBoxFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  787. [global::System.ComponentModel.DefaultValue(default(int))]
  788. public int seasonBoxFlag
  789. {
  790. get { return _seasonBoxFlag; }
  791. set { _seasonBoxFlag = value; }
  792. }
  793. private int _seasonEndTime = default(int);
  794. /// <summary>
  795. /// 赛季结束时间
  796. /// </summary>
  797. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"seasonEndTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  798. [global::System.ComponentModel.DefaultValue(default(int))]
  799. public int seasonEndTime
  800. {
  801. get { return _seasonEndTime; }
  802. set { _seasonEndTime = value; }
  803. }
  804. private global::ProtoBuf.IExtension extensionObject;
  805. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  806. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  807. }
  808. //---------------------------------------------------------------------------------------
  809. /// <summary>
  810. /// 双服无名镇面板信息(其他信息,战斗服传过来)1402
  811. /// </summary>
  812. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBroadInfoPush")]
  813. public partial class DoubleCrossBroadInfoPush : global::ProtoBuf.IExtensible
  814. {
  815. public DoubleCrossBroadInfoPush() {}
  816. private string _serverNameA = "";
  817. /// <summary>
  818. /// 左边服务器信息
  819. /// </summary>
  820. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"serverNameA", DataFormat = global::ProtoBuf.DataFormat.Default)]
  821. [global::System.ComponentModel.DefaultValue("")]
  822. public string serverNameA
  823. {
  824. get { return _serverNameA; }
  825. set { _serverNameA = value; }
  826. }
  827. private string _serverNameB = "";
  828. /// <summary>
  829. /// 右边服务器信息
  830. /// </summary>
  831. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"serverNameB", DataFormat = global::ProtoBuf.DataFormat.Default)]
  832. [global::System.ComponentModel.DefaultValue("")]
  833. public string serverNameB
  834. {
  835. get { return _serverNameB; }
  836. set { _serverNameB = value; }
  837. }
  838. private int _serverAKills = default(int);
  839. /// <summary>
  840. /// A服击杀
  841. /// </summary>
  842. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"serverAKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  843. [global::System.ComponentModel.DefaultValue(default(int))]
  844. public int serverAKills
  845. {
  846. get { return _serverAKills; }
  847. set { _serverAKills = value; }
  848. }
  849. private int _serverBKills = default(int);
  850. /// <summary>
  851. /// B服击杀
  852. /// </summary>
  853. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"serverBKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  854. [global::System.ComponentModel.DefaultValue(default(int))]
  855. public int serverBKills
  856. {
  857. get { return _serverBKills; }
  858. set { _serverBKills = value; }
  859. }
  860. private int _serverIdA = default(int);
  861. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"serverIdA", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  862. [global::System.ComponentModel.DefaultValue(default(int))]
  863. public int serverIdA
  864. {
  865. get { return _serverIdA; }
  866. set { _serverIdA = value; }
  867. }
  868. private int _serverIdB = default(int);
  869. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"serverIdB", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  870. [global::System.ComponentModel.DefaultValue(default(int))]
  871. public int serverIdB
  872. {
  873. get { return _serverIdB; }
  874. set { _serverIdB = value; }
  875. }
  876. private global::ProtoBuf.IExtension extensionObject;
  877. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  878. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  879. }
  880. //---------------------------------------------------------------------------------------
  881. /// <summary>
  882. /// 双服个人击杀信息 1409
  883. /// </summary>
  884. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossMyKillInfoPush")]
  885. public partial class DoubleCrossMyKillInfoPush : global::ProtoBuf.IExtensible
  886. {
  887. public DoubleCrossMyKillInfoPush() {}
  888. private int _myKills;
  889. /// <summary>
  890. /// 个人击杀信息
  891. /// </summary>
  892. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"myKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  893. public int myKills
  894. {
  895. get { return _myKills; }
  896. set { _myKills = value; }
  897. }
  898. private int _myAssists;
  899. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"myAssists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  900. public int myAssists
  901. {
  902. get { return _myAssists; }
  903. set { _myAssists = value; }
  904. }
  905. private string _myAreaName;
  906. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"myAreaName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  907. public string myAreaName
  908. {
  909. get { return _myAreaName; }
  910. set { _myAreaName = value; }
  911. }
  912. private global::ProtoBuf.IExtension extensionObject;
  913. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  914. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  915. }
  916. //---------------------------------------------------------------------------------------
  917. /// <summary>
  918. /// 双服无名镇结算推送, 1403
  919. /// </summary>
  920. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossResulteItem")]
  921. public partial class DoubleCrossResulteItem : global::ProtoBuf.IExtensible
  922. {
  923. public DoubleCrossResulteItem() {}
  924. private string _playerName;
  925. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"playerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  926. public string playerName
  927. {
  928. get { return _playerName; }
  929. set { _playerName = value; }
  930. }
  931. private int _killCnt;
  932. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"killCnt", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  933. public int killCnt
  934. {
  935. get { return _killCnt; }
  936. set { _killCnt = value; }
  937. }
  938. private float _killPrecent;
  939. /// <summary>
  940. /// 百分之N
  941. /// </summary>
  942. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"killPrecent", DataFormat = global::ProtoBuf.DataFormat.FixedSize)]
  943. public float killPrecent
  944. {
  945. get { return _killPrecent; }
  946. set { _killPrecent = value; }
  947. }
  948. private int _score;
  949. /// <summary>
  950. /// 分数 = 6*击杀+3*助攻
  951. /// </summary>
  952. /// <summary>
  953. /// 击杀数, 重复killCnt
  954. /// </summary>
  955. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"score", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  956. public int score
  957. {
  958. get { return _score; }
  959. set { _score = value; }
  960. }
  961. private int _assists = default(int);
  962. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"assists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  963. [global::System.ComponentModel.DefaultValue(default(int))]
  964. public int assists
  965. {
  966. get { return _assists; }
  967. set { _assists = value; }
  968. }
  969. private int _pro = default(int);
  970. /// <summary>
  971. /// 职业
  972. /// </summary>
  973. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  974. [global::System.ComponentModel.DefaultValue(default(int))]
  975. public int pro
  976. {
  977. get { return _pro; }
  978. set { _pro = value; }
  979. }
  980. private int _sex = default(int);
  981. /// <summary>
  982. /// 性别
  983. /// </summary>
  984. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  985. [global::System.ComponentModel.DefaultValue(default(int))]
  986. public int sex
  987. {
  988. get { return _sex; }
  989. set { _sex = value; }
  990. }
  991. private int _rankid = default(int);
  992. /// <summary>
  993. /// 排名
  994. /// </summary>
  995. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"rankid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  996. [global::System.ComponentModel.DefaultValue(default(int))]
  997. public int rankid
  998. {
  999. get { return _rankid; }
  1000. set { _rankid = value; }
  1001. }
  1002. private global::ProtoBuf.IExtension extensionObject;
  1003. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1004. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1005. }
  1006. //---------------------------------------------------------------------------------------
  1007. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossResultPush")]
  1008. public partial class DoubleCrossResultPush : global::ProtoBuf.IExtensible
  1009. {
  1010. public DoubleCrossResultPush() {}
  1011. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> _rankA = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem>();
  1012. /// <summary>
  1013. /// A方排名
  1014. /// </summary>
  1015. [global::ProtoBuf.ProtoMember(1, Name=@"rankA", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1016. public global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> rankA
  1017. {
  1018. get { return _rankA; }
  1019. }
  1020. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> _rankB = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem>();
  1021. /// <summary>
  1022. /// B方排名
  1023. /// </summary>
  1024. [global::ProtoBuf.ProtoMember(2, Name=@"rankB", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1025. public global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> rankB
  1026. {
  1027. get { return _rankB; }
  1028. }
  1029. private int _result;
  1030. /// <summary>
  1031. /// -1:败, 0:平,1:赢
  1032. /// </summary>
  1033. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1034. public int result
  1035. {
  1036. get { return _result; }
  1037. set { _result = value; }
  1038. }
  1039. private pomelo.area.DoubleCrossResulteItem _myData = null;
  1040. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1041. [global::System.ComponentModel.DefaultValue(null)]
  1042. public pomelo.area.DoubleCrossResulteItem myData
  1043. {
  1044. get { return _myData; }
  1045. set { _myData = value; }
  1046. }
  1047. private global::ProtoBuf.IExtension extensionObject;
  1048. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1049. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1050. }
  1051. //---------------------------------------------------------------------------------------
  1052. /// <summary>
  1053. /// 双服无名镇赛季奖励领取, 702
  1054. /// </summary>
  1055. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDoubelCrossSeaonAwardRequest")]
  1056. public partial class GetDoubelCrossSeaonAwardRequest : global::ProtoBuf.IExtensible
  1057. {
  1058. public GetDoubelCrossSeaonAwardRequest() {}
  1059. private int _index;
  1060. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1061. public int index
  1062. {
  1063. get { return _index; }
  1064. set { _index = value; }
  1065. }
  1066. private global::ProtoBuf.IExtension extensionObject;
  1067. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1068. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1069. }
  1070. //---------------------------------------------------------------------------------------
  1071. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDoubelCrossSeaonAwardResponse")]
  1072. public partial class GetDoubelCrossSeaonAwardResponse : global::ProtoBuf.IExtensible
  1073. {
  1074. public GetDoubelCrossSeaonAwardResponse() {}
  1075. private int _s2c_code;
  1076. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1077. public int s2c_code
  1078. {
  1079. get { return _s2c_code; }
  1080. set { _s2c_code = value; }
  1081. }
  1082. private string _s2c_msg = "";
  1083. /// <summary>
  1084. /// 为空才成功,否则提示错误
  1085. /// </summary>
  1086. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1087. [global::System.ComponentModel.DefaultValue("")]
  1088. public string s2c_msg
  1089. {
  1090. get { return _s2c_msg; }
  1091. set { _s2c_msg = value; }
  1092. }
  1093. private int _index;
  1094. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1095. public int index
  1096. {
  1097. get { return _index; }
  1098. set { _index = value; }
  1099. }
  1100. private global::ProtoBuf.IExtension extensionObject;
  1101. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1102. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1103. }
  1104. //---------------------------------------------------------------------------------------
  1105. /// <summary>
  1106. /// 双服无名镇排行信息 MSG_DoubleCrossRankPush1408
  1107. /// </summary>
  1108. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleRankInfoExt")]
  1109. public partial class DoubleRankInfoExt : global::ProtoBuf.IExtensible
  1110. {
  1111. public DoubleRankInfoExt() {}
  1112. private string _name;
  1113. /// <summary>
  1114. /// 玩家昵称
  1115. /// </summary>
  1116. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1117. public string name
  1118. {
  1119. get { return _name; }
  1120. set { _name = value; }
  1121. }
  1122. private int _pro;
  1123. /// <summary>
  1124. /// 玩家职业
  1125. /// </summary>
  1126. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1127. public int pro
  1128. {
  1129. get { return _pro; }
  1130. set { _pro = value; }
  1131. }
  1132. private int _sex;
  1133. /// <summary>
  1134. /// 玩家性别
  1135. /// </summary>
  1136. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1137. public int sex
  1138. {
  1139. get { return _sex; }
  1140. set { _sex = value; }
  1141. }
  1142. private int _kills = default(int);
  1143. /// <summary>
  1144. /// 分数 = 6*击杀+3*助攻
  1145. /// </summary>
  1146. /// <summary>
  1147. /// 击杀数
  1148. /// </summary>
  1149. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1150. [global::System.ComponentModel.DefaultValue(default(int))]
  1151. public int kills
  1152. {
  1153. get { return _kills; }
  1154. set { _kills = value; }
  1155. }
  1156. private int _assists = default(int);
  1157. /// <summary>
  1158. /// 助攻数
  1159. /// </summary>
  1160. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"assists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1161. [global::System.ComponentModel.DefaultValue(default(int))]
  1162. public int assists
  1163. {
  1164. get { return _assists; }
  1165. set { _assists = value; }
  1166. }
  1167. private global::ProtoBuf.IExtension extensionObject;
  1168. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1169. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1170. }
  1171. //---------------------------------------------------------------------------------------
  1172. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossRankPush")]
  1173. public partial class DoubleCrossRankPush : global::ProtoBuf.IExtensible
  1174. {
  1175. public DoubleCrossRankPush() {}
  1176. private string _serverAName;
  1177. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"serverAName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1178. public string serverAName
  1179. {
  1180. get { return _serverAName; }
  1181. set { _serverAName = value; }
  1182. }
  1183. private string _serverBName;
  1184. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"serverBName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1185. public string serverBName
  1186. {
  1187. get { return _serverBName; }
  1188. set { _serverBName = value; }
  1189. }
  1190. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> _serverA = new global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt>();
  1191. [global::ProtoBuf.ProtoMember(3, Name=@"serverA", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1192. public global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> serverA
  1193. {
  1194. get { return _serverA; }
  1195. }
  1196. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> _serverB = new global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt>();
  1197. [global::ProtoBuf.ProtoMember(4, Name=@"serverB", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1198. public global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> serverB
  1199. {
  1200. get { return _serverB; }
  1201. }
  1202. private global::ProtoBuf.IExtension extensionObject;
  1203. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1204. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1205. }
  1206. //---------------------------------------------------------------------------------------
  1207. /// <summary>
  1208. /// 面板信息请求, MSG_RequestDoubleCrossBroadInfo 717
  1209. /// </summary>
  1210. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBroadInfoRequest")]
  1211. public partial class DoubleCrossBroadInfoRequest : global::ProtoBuf.IExtensible
  1212. {
  1213. public DoubleCrossBroadInfoRequest() {}
  1214. private string _instanceId;
  1215. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1216. public string instanceId
  1217. {
  1218. get { return _instanceId; }
  1219. set { _instanceId = value; }
  1220. }
  1221. private global::ProtoBuf.IExtension extensionObject;
  1222. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1223. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1224. }
  1225. //---------------------------------------------------------------------------------------
  1226. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBroadInfoResponse")]
  1227. public partial class DoubleCrossBroadInfoResponse : global::ProtoBuf.IExtensible
  1228. {
  1229. public DoubleCrossBroadInfoResponse() {}
  1230. private int _s2c_code;
  1231. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1232. public int s2c_code
  1233. {
  1234. get { return _s2c_code; }
  1235. set { _s2c_code = value; }
  1236. }
  1237. private string _s2c_msg = "";
  1238. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1239. [global::System.ComponentModel.DefaultValue("")]
  1240. public string s2c_msg
  1241. {
  1242. get { return _s2c_msg; }
  1243. set { _s2c_msg = value; }
  1244. }
  1245. private pomelo.area.DoubleCrossBroadInfoPush _data;
  1246. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1247. public pomelo.area.DoubleCrossBroadInfoPush data
  1248. {
  1249. get { return _data; }
  1250. set { _data = value; }
  1251. }
  1252. private global::ProtoBuf.IExtension extensionObject;
  1253. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1254. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1255. }
  1256. //---------------------------------------------------------------------------------------
  1257. /// <summary>
  1258. /// 双服无名镇对战记录请求, MSG_GetDoubleCrossBattleRecord = 718;
  1259. /// </summary>
  1260. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleRecordRequest")]
  1261. public partial class DoubleCrossBattleRecordRequest : global::ProtoBuf.IExtensible
  1262. {
  1263. public DoubleCrossBattleRecordRequest() {}
  1264. private global::ProtoBuf.IExtension extensionObject;
  1265. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1266. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1267. }
  1268. //---------------------------------------------------------------------------------------
  1269. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleRecord")]
  1270. public partial class DoubleCrossBattleRecord : global::ProtoBuf.IExtensible
  1271. {
  1272. public DoubleCrossBattleRecord() {}
  1273. private string _serverName;
  1274. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"serverName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1275. public string serverName
  1276. {
  1277. get { return _serverName; }
  1278. set { _serverName = value; }
  1279. }
  1280. private int _battleTime;
  1281. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"battleTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1282. public int battleTime
  1283. {
  1284. get { return _battleTime; }
  1285. set { _battleTime = value; }
  1286. }
  1287. private int _myOccupyRate = default(int);
  1288. /// <summary>
  1289. /// 自己服务器占比,百分之X
  1290. /// </summary>
  1291. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"myOccupyRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1292. [global::System.ComponentModel.DefaultValue(default(int))]
  1293. public int myOccupyRate
  1294. {
  1295. get { return _myOccupyRate; }
  1296. set { _myOccupyRate = value; }
  1297. }
  1298. private int _otherOccupyRate = default(int);
  1299. /// <summary>
  1300. /// 其他服务器占比,百分之X
  1301. /// </summary>
  1302. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"otherOccupyRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1303. [global::System.ComponentModel.DefaultValue(default(int))]
  1304. public int otherOccupyRate
  1305. {
  1306. get { return _otherOccupyRate; }
  1307. set { _otherOccupyRate = value; }
  1308. }
  1309. private int _result = default(int);
  1310. /// <summary>
  1311. /// -1:败, 0:平,1:赢
  1312. /// </summary>
  1313. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1314. [global::System.ComponentModel.DefaultValue(default(int))]
  1315. public int result
  1316. {
  1317. get { return _result; }
  1318. set { _result = value; }
  1319. }
  1320. private global::ProtoBuf.IExtension extensionObject;
  1321. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1322. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1323. }
  1324. //---------------------------------------------------------------------------------------
  1325. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleWinRate")]
  1326. public partial class DoubleCrossBattleWinRate : global::ProtoBuf.IExtensible
  1327. {
  1328. public DoubleCrossBattleWinRate() {}
  1329. private string _serverName;
  1330. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"serverName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1331. public string serverName
  1332. {
  1333. get { return _serverName; }
  1334. set { _serverName = value; }
  1335. }
  1336. private int _winRate = default(int);
  1337. /// <summary>
  1338. /// 自己与这个服务器对战的胜率
  1339. /// </summary>
  1340. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"winRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1341. [global::System.ComponentModel.DefaultValue(default(int))]
  1342. public int winRate
  1343. {
  1344. get { return _winRate; }
  1345. set { _winRate = value; }
  1346. }
  1347. private global::ProtoBuf.IExtension extensionObject;
  1348. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1349. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1350. }
  1351. //---------------------------------------------------------------------------------------
  1352. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleRecordResponse")]
  1353. public partial class DoubleCrossBattleRecordResponse : global::ProtoBuf.IExtensible
  1354. {
  1355. public DoubleCrossBattleRecordResponse() {}
  1356. private int _s2c_code;
  1357. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1358. public int s2c_code
  1359. {
  1360. get { return _s2c_code; }
  1361. set { _s2c_code = value; }
  1362. }
  1363. private string _s2c_msg = "";
  1364. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1365. [global::System.ComponentModel.DefaultValue("")]
  1366. public string s2c_msg
  1367. {
  1368. get { return _s2c_msg; }
  1369. set { _s2c_msg = value; }
  1370. }
  1371. private string _myServerName;
  1372. /// <summary>
  1373. /// 自己服务器名称
  1374. /// </summary>
  1375. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"myServerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1376. public string myServerName
  1377. {
  1378. get { return _myServerName; }
  1379. set { _myServerName = value; }
  1380. }
  1381. private int _winRate = default(int);
  1382. /// <summary>
  1383. /// 胜率, 百分之X
  1384. /// </summary>
  1385. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"winRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1386. [global::System.ComponentModel.DefaultValue(default(int))]
  1387. public int winRate
  1388. {
  1389. get { return _winRate; }
  1390. set { _winRate = value; }
  1391. }
  1392. private int _continueWins = default(int);
  1393. /// <summary>
  1394. /// 最大连胜次数,
  1395. /// </summary>
  1396. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"continueWins", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1397. [global::System.ComponentModel.DefaultValue(default(int))]
  1398. public int continueWins
  1399. {
  1400. get { return _continueWins; }
  1401. set { _continueWins = value; }
  1402. }
  1403. private int _averageOcuupy = default(int);
  1404. /// <summary>
  1405. /// 平均占点比,百分之X
  1406. /// </summary>
  1407. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"averageOcuupy", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1408. [global::System.ComponentModel.DefaultValue(default(int))]
  1409. public int averageOcuupy
  1410. {
  1411. get { return _averageOcuupy; }
  1412. set { _averageOcuupy = value; }
  1413. }
  1414. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleWinRate> _winRates = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleWinRate>();
  1415. /// <summary>
  1416. /// 与服务器对战胜率信息
  1417. /// </summary>
  1418. [global::ProtoBuf.ProtoMember(7, Name=@"winRates", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1419. public global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleWinRate> winRates
  1420. {
  1421. get { return _winRates; }
  1422. }
  1423. private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleRecord> _record = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleRecord>();
  1424. /// <summary>
  1425. /// 对局信息
  1426. /// </summary>
  1427. [global::ProtoBuf.ProtoMember(8, Name=@"record", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1428. public global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleRecord> record
  1429. {
  1430. get { return _record; }
  1431. }
  1432. private global::ProtoBuf.IExtension extensionObject;
  1433. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1434. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1435. }
  1436. //---------------------------------------------------------------------------------------
  1437. /// <summary>
  1438. /// 获取多服无名镇游戏内,装备掉落情况, 719
  1439. /// </summary>
  1440. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossPickEquipsRequest")]
  1441. public partial class MutilCrossPickEquipsRequest : global::ProtoBuf.IExtensible
  1442. {
  1443. public MutilCrossPickEquipsRequest() {}
  1444. private int _type = default(int);
  1445. /// <summary>
  1446. /// 0-游戏内,1-活动所有掉落
  1447. /// </summary>
  1448. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1449. [global::System.ComponentModel.DefaultValue(default(int))]
  1450. public int type
  1451. {
  1452. get { return _type; }
  1453. set { _type = value; }
  1454. }
  1455. private global::ProtoBuf.IExtension extensionObject;
  1456. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1457. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1458. }
  1459. //---------------------------------------------------------------------------------------
  1460. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PickEquipInfo")]
  1461. public partial class PickEquipInfo : global::ProtoBuf.IExtensible
  1462. {
  1463. public PickEquipInfo() {}
  1464. private pomelo.item.ItemDetail _equipDetail;
  1465. /// <summary>
  1466. /// 装备详情
  1467. /// </summary>
  1468. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipDetail", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1469. public pomelo.item.ItemDetail equipDetail
  1470. {
  1471. get { return _equipDetail; }
  1472. set { _equipDetail = value; }
  1473. }
  1474. private int _time;
  1475. /// <summary>
  1476. /// 获得时间戳
  1477. /// </summary>
  1478. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1479. public int time
  1480. {
  1481. get { return _time; }
  1482. set { _time = value; }
  1483. }
  1484. private global::ProtoBuf.IExtension extensionObject;
  1485. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1486. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1487. }
  1488. //---------------------------------------------------------------------------------------
  1489. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossPickEquipsResponse")]
  1490. public partial class MutilCrossPickEquipsResponse : global::ProtoBuf.IExtensible
  1491. {
  1492. public MutilCrossPickEquipsResponse() {}
  1493. private int _s2c_code;
  1494. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1495. public int s2c_code
  1496. {
  1497. get { return _s2c_code; }
  1498. set { _s2c_code = value; }
  1499. }
  1500. private string _s2c_msg = "";
  1501. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1502. [global::System.ComponentModel.DefaultValue("")]
  1503. public string s2c_msg
  1504. {
  1505. get { return _s2c_msg; }
  1506. set { _s2c_msg = value; }
  1507. }
  1508. private readonly global::System.Collections.Generic.List<pomelo.area.PickEquipInfo> _data = new global::System.Collections.Generic.List<pomelo.area.PickEquipInfo>();
  1509. [global::ProtoBuf.ProtoMember(3, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1510. public global::System.Collections.Generic.List<pomelo.area.PickEquipInfo> data
  1511. {
  1512. get { return _data; }
  1513. }
  1514. private global::ProtoBuf.IExtension extensionObject;
  1515. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1516. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1517. }
  1518. //---------------------------------------------------------------------------------------
  1519. /// <summary>
  1520. /// 进入跨服boss地图 633
  1521. /// </summary>
  1522. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CrossBossRequestEnterAreaRequest")]
  1523. public partial class CrossBossRequestEnterAreaRequest : global::ProtoBuf.IExtensible
  1524. {
  1525. public CrossBossRequestEnterAreaRequest() {}
  1526. private int _areaId;
  1527. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1528. public int areaId
  1529. {
  1530. get { return _areaId; }
  1531. set { _areaId = value; }
  1532. }
  1533. private global::ProtoBuf.IExtension extensionObject;
  1534. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1535. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1536. }
  1537. //---------------------------------------------------------------------------------------
  1538. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CrossBossRequestEnterAreaResponse")]
  1539. public partial class CrossBossRequestEnterAreaResponse : global::ProtoBuf.IExtensible
  1540. {
  1541. public CrossBossRequestEnterAreaResponse() {}
  1542. private int _s2c_code;
  1543. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1544. public int s2c_code
  1545. {
  1546. get { return _s2c_code; }
  1547. set { _s2c_code = value; }
  1548. }
  1549. private string _s2c_msg = "";
  1550. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1551. [global::System.ComponentModel.DefaultValue("")]
  1552. public string s2c_msg
  1553. {
  1554. get { return _s2c_msg; }
  1555. set { _s2c_msg = value; }
  1556. }
  1557. private bool _isAreaFull = default(bool);
  1558. /// <summary>
  1559. /// 地图已满
  1560. /// </summary>
  1561. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isAreaFull", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1562. [global::System.ComponentModel.DefaultValue(default(bool))]
  1563. public bool isAreaFull
  1564. {
  1565. get { return _isAreaFull; }
  1566. set { _isAreaFull = value; }
  1567. }
  1568. private global::ProtoBuf.IExtension extensionObject;
  1569. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1570. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1571. }
  1572. }