_playerHandlerExt.cs 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991
  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. // 作者= 曾振东
  11. // 创建时间= 2019-10-28
  12. // 用途= 玩家扩展处理器
  13. // ***************************************************************************
  14. // Generated from: playerHandlerExt.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. /// 获取角色阵营id 请求
  22. /// </summary>
  23. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetPlayerForceIdRequest")]
  24. public partial class GetPlayerForceIdRequest : global::ProtoBuf.IExtensible
  25. {
  26. public GetPlayerForceIdRequest() {}
  27. private global::ProtoBuf.IExtension extensionObject;
  28. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  29. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  30. }
  31. //---------------------------------------------------------------------------------------
  32. /// <summary>
  33. /// 获取角色阵营id 返回
  34. /// </summary>
  35. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetPlayerForceIdRespone")]
  36. public partial class GetPlayerForceIdRespone : global::ProtoBuf.IExtensible
  37. {
  38. public GetPlayerForceIdRespone() {}
  39. private int _s2c_code;
  40. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  41. public int s2c_code
  42. {
  43. get { return _s2c_code; }
  44. set { _s2c_code = value; }
  45. }
  46. private string _s2c_msg = "";
  47. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  48. [global::System.ComponentModel.DefaultValue("")]
  49. public string s2c_msg
  50. {
  51. get { return _s2c_msg; }
  52. set { _s2c_msg = value; }
  53. }
  54. private int _s2c_forceId = default(int);
  55. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_forceId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  56. [global::System.ComponentModel.DefaultValue(default(int))]
  57. public int s2c_forceId
  58. {
  59. get { return _s2c_forceId; }
  60. set { _s2c_forceId = value; }
  61. }
  62. private global::ProtoBuf.IExtension extensionObject;
  63. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  64. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  65. }
  66. //---------------------------------------------------------------------------------------
  67. /// <summary>
  68. /// 兑换银两 请求
  69. /// </summary>
  70. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MoneyExchangeGoldRequest")]
  71. public partial class MoneyExchangeGoldRequest : global::ProtoBuf.IExtensible
  72. {
  73. public MoneyExchangeGoldRequest() {}
  74. private int _exchangeType;
  75. /// <summary>
  76. /// 兑换方式(1:仙玉 2:元宝)
  77. /// </summary>
  78. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"exchangeType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  79. public int exchangeType
  80. {
  81. get { return _exchangeType; }
  82. set { _exchangeType = value; }
  83. }
  84. private int _num = default(int);
  85. /// <summary>
  86. /// 兑换数量
  87. /// </summary>
  88. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  89. [global::System.ComponentModel.DefaultValue(default(int))]
  90. public int num
  91. {
  92. get { return _num; }
  93. set { _num = value; }
  94. }
  95. private global::ProtoBuf.IExtension extensionObject;
  96. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  97. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  98. }
  99. //---------------------------------------------------------------------------------------
  100. /// <summary>
  101. /// 兑换银两 返回
  102. /// </summary>
  103. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MoneyExchangeGoldResponse")]
  104. public partial class MoneyExchangeGoldResponse : global::ProtoBuf.IExtensible
  105. {
  106. public MoneyExchangeGoldResponse() {}
  107. private int _s2c_code;
  108. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  109. public int s2c_code
  110. {
  111. get { return _s2c_code; }
  112. set { _s2c_code = value; }
  113. }
  114. private string _s2c_msg = "";
  115. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  116. [global::System.ComponentModel.DefaultValue("")]
  117. public string s2c_msg
  118. {
  119. get { return _s2c_msg; }
  120. set { _s2c_msg = value; }
  121. }
  122. private global::ProtoBuf.IExtension extensionObject;
  123. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  124. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  125. }
  126. //---------------------------------------------------------------------------------------
  127. /// <summary>
  128. /// 玩家打坐 请求 MsgId-->621
  129. /// </summary>
  130. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerSitStartRequest")]
  131. public partial class PlayerSitStartRequest : global::ProtoBuf.IExtensible
  132. {
  133. public PlayerSitStartRequest() {}
  134. private bool _c2s_sit_or_not = default(bool);
  135. /// <summary>
  136. /// 坐下1,起来0
  137. /// </summary>
  138. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_sit_or_not", DataFormat = global::ProtoBuf.DataFormat.Default)]
  139. [global::System.ComponentModel.DefaultValue(default(bool))]
  140. public bool c2s_sit_or_not
  141. {
  142. get { return _c2s_sit_or_not; }
  143. set { _c2s_sit_or_not = value; }
  144. }
  145. private int _c2s_type = default(int);
  146. /// <summary>
  147. /// 类型:普通打坐1,师门任务打坐2 暂时不做区分,可不传
  148. /// </summary>
  149. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  150. [global::System.ComponentModel.DefaultValue(default(int))]
  151. public int c2s_type
  152. {
  153. get { return _c2s_type; }
  154. set { _c2s_type = value; }
  155. }
  156. private global::ProtoBuf.IExtension extensionObject;
  157. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  158. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  159. }
  160. //---------------------------------------------------------------------------------------
  161. /// <summary>
  162. /// 玩家打坐 返回
  163. /// </summary>
  164. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerSitStartResponse")]
  165. public partial class PlayerSitStartResponse : global::ProtoBuf.IExtensible
  166. {
  167. public PlayerSitStartResponse() {}
  168. private int _s2c_code;
  169. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  170. public int s2c_code
  171. {
  172. get { return _s2c_code; }
  173. set { _s2c_code = value; }
  174. }
  175. private string _s2c_msg = "";
  176. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  177. [global::System.ComponentModel.DefaultValue("")]
  178. public string s2c_msg
  179. {
  180. get { return _s2c_msg; }
  181. set { _s2c_msg = value; }
  182. }
  183. private global::ProtoBuf.IExtension extensionObject;
  184. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  185. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  186. }
  187. //---------------------------------------------------------------------------------------
  188. /// <summary>
  189. /// 每日领取师门令 请求
  190. /// </summary>
  191. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReceiveShimenKeyRequest")]
  192. public partial class ReceiveShimenKeyRequest : global::ProtoBuf.IExtensible
  193. {
  194. public ReceiveShimenKeyRequest() {}
  195. private global::ProtoBuf.IExtension extensionObject;
  196. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  197. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  198. }
  199. //---------------------------------------------------------------------------------------
  200. /// <summary>
  201. /// 每日领取师门令 返回
  202. /// </summary>
  203. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReceiveShimenKeyResponse")]
  204. public partial class ReceiveShimenKeyResponse : global::ProtoBuf.IExtensible
  205. {
  206. public ReceiveShimenKeyResponse() {}
  207. private int _s2c_code;
  208. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  209. public int s2c_code
  210. {
  211. get { return _s2c_code; }
  212. set { _s2c_code = value; }
  213. }
  214. private string _s2c_msg = "";
  215. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  216. [global::System.ComponentModel.DefaultValue("")]
  217. public string s2c_msg
  218. {
  219. get { return _s2c_msg; }
  220. set { _s2c_msg = value; }
  221. }
  222. private int _s2c_remainingNum = default(int);
  223. /// <summary>
  224. /// 剩余领取次数
  225. /// </summary>
  226. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_remainingNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  227. [global::System.ComponentModel.DefaultValue(default(int))]
  228. public int s2c_remainingNum
  229. {
  230. get { return _s2c_remainingNum; }
  231. set { _s2c_remainingNum = value; }
  232. }
  233. private global::ProtoBuf.IExtension extensionObject;
  234. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  235. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  236. }
  237. //---------------------------------------------------------------------------------------
  238. /// <summary>
  239. /// 切图读条前的传送检测 请求
  240. /// </summary>
  241. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransAreaByCanEnterRequest")]
  242. public partial class TransAreaByCanEnterRequest : global::ProtoBuf.IExtensible
  243. {
  244. public TransAreaByCanEnterRequest() {}
  245. private int _c2s_areaId;
  246. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  247. public int c2s_areaId
  248. {
  249. get { return _c2s_areaId; }
  250. set { _c2s_areaId = value; }
  251. }
  252. private int _c2s_dungeonId = default(int);
  253. /// <summary>
  254. /// 副本索引-第几层(深渊副本......)
  255. /// </summary>
  256. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_dungeonId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  257. [global::System.ComponentModel.DefaultValue(default(int))]
  258. public int c2s_dungeonId
  259. {
  260. get { return _c2s_dungeonId; }
  261. set { _c2s_dungeonId = value; }
  262. }
  263. private global::ProtoBuf.IExtension extensionObject;
  264. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  265. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  266. }
  267. //---------------------------------------------------------------------------------------
  268. /// <summary>
  269. /// 切图读条前的传送检测 返回
  270. /// </summary>
  271. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransAreaByCanEnterResponse")]
  272. public partial class TransAreaByCanEnterResponse : global::ProtoBuf.IExtensible
  273. {
  274. public TransAreaByCanEnterResponse() {}
  275. private int _s2c_code;
  276. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  277. public int s2c_code
  278. {
  279. get { return _s2c_code; }
  280. set { _s2c_code = value; }
  281. }
  282. private string _s2c_msg = "";
  283. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  284. [global::System.ComponentModel.DefaultValue("")]
  285. public string s2c_msg
  286. {
  287. get { return _s2c_msg; }
  288. set { _s2c_msg = value; }
  289. }
  290. private global::ProtoBuf.IExtension extensionObject;
  291. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  292. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  293. }
  294. //---------------------------------------------------------------------------------------
  295. /// <summary>
  296. /// 渡劫小阶段突破 MSG_DuJieBreakThrough = 727;
  297. /// </summary>
  298. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DuJieBreakThroughRequest")]
  299. public partial class DuJieBreakThroughRequest : global::ProtoBuf.IExtensible
  300. {
  301. public DuJieBreakThroughRequest() {}
  302. private readonly global::System.Collections.Generic.List<pomelo.item.CountItem> _items = new global::System.Collections.Generic.List<pomelo.item.CountItem>();
  303. /// <summary>
  304. /// 增加突破成功率的物品list
  305. /// </summary>
  306. [global::ProtoBuf.ProtoMember(1, Name=@"items", DataFormat = global::ProtoBuf.DataFormat.Default)]
  307. public global::System.Collections.Generic.List<pomelo.item.CountItem> items
  308. {
  309. get { return _items; }
  310. }
  311. private global::ProtoBuf.IExtension extensionObject;
  312. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  313. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  314. }
  315. //---------------------------------------------------------------------------------------
  316. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DuJieBreakThroughResponese")]
  317. public partial class DuJieBreakThroughResponese : global::ProtoBuf.IExtensible
  318. {
  319. public DuJieBreakThroughResponese() {}
  320. private int _s2c_code;
  321. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  322. public int s2c_code
  323. {
  324. get { return _s2c_code; }
  325. set { _s2c_code = value; }
  326. }
  327. private string _s2c_msg = "";
  328. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  329. [global::System.ComponentModel.DefaultValue("")]
  330. public string s2c_msg
  331. {
  332. get { return _s2c_msg; }
  333. set { _s2c_msg = value; }
  334. }
  335. private int _s2c_res = default(int);
  336. /// <summary>
  337. /// 0-成功,1-失败, 2-突破错误
  338. /// </summary>
  339. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_res", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  340. [global::System.ComponentModel.DefaultValue(default(int))]
  341. public int s2c_res
  342. {
  343. get { return _s2c_res; }
  344. set { _s2c_res = value; }
  345. }
  346. private long _classExp = default(long);
  347. /// <summary>
  348. /// 仙阶
  349. /// </summary>
  350. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"classExp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  351. [global::System.ComponentModel.DefaultValue(default(long))]
  352. public long classExp
  353. {
  354. get { return _classExp; }
  355. set { _classExp = value; }
  356. }
  357. private global::ProtoBuf.IExtension extensionObject;
  358. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  359. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  360. }
  361. //---------------------------------------------------------------------------------------
  362. /// <summary>
  363. /// 打开仙阶界面信息 public static final short MSG_GetRebirthData = 469;
  364. /// </summary>
  365. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDuJieDataRequest")]
  366. public partial class GetDuJieDataRequest : global::ProtoBuf.IExtensible
  367. {
  368. public GetDuJieDataRequest() {}
  369. private global::ProtoBuf.IExtension extensionObject;
  370. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  371. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  372. }
  373. //---------------------------------------------------------------------------------------
  374. /// <summary>
  375. /// 获取渡劫信息
  376. /// </summary>
  377. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDuJieDataRespone")]
  378. public partial class GetDuJieDataRespone : global::ProtoBuf.IExtensible
  379. {
  380. public GetDuJieDataRespone() {}
  381. private int _s2c_code;
  382. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  383. public int s2c_code
  384. {
  385. get { return _s2c_code; }
  386. set { _s2c_code = value; }
  387. }
  388. private string _s2c_msg = "";
  389. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  390. [global::System.ComponentModel.DefaultValue("")]
  391. public string s2c_msg
  392. {
  393. get { return _s2c_msg; }
  394. set { _s2c_msg = value; }
  395. }
  396. private int _s2c_expLeft;
  397. /// <summary>
  398. /// 经验兑换次数
  399. /// </summary>
  400. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_expLeft", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  401. public int s2c_expLeft
  402. {
  403. get { return _s2c_expLeft; }
  404. set { _s2c_expLeft = value; }
  405. }
  406. private int _s2c_itemUseLeft;
  407. /// <summary>
  408. /// 经验丹使用次数
  409. /// </summary>
  410. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"s2c_itemUseLeft", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  411. public int s2c_itemUseLeft
  412. {
  413. get { return _s2c_itemUseLeft; }
  414. set { _s2c_itemUseLeft = value; }
  415. }
  416. private bool _s2c_isDevil = default(bool);
  417. /// <summary>
  418. /// 是否是魔头
  419. /// </summary>
  420. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_isDevil", DataFormat = global::ProtoBuf.DataFormat.Default)]
  421. [global::System.ComponentModel.DefaultValue(default(bool))]
  422. public bool s2c_isDevil
  423. {
  424. get { return _s2c_isDevil; }
  425. set { _s2c_isDevil = value; }
  426. }
  427. private int _hookInterval = default(int);
  428. /// <summary>
  429. /// 飘修为间隔,秒
  430. /// </summary>
  431. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"hookInterval", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  432. [global::System.ComponentModel.DefaultValue(default(int))]
  433. public int hookInterval
  434. {
  435. get { return _hookInterval; }
  436. set { _hookInterval = value; }
  437. }
  438. private int _hookSpeed = default(int);
  439. /// <summary>
  440. /// 单次飘修为值
  441. /// </summary>
  442. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"hookSpeed", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  443. [global::System.ComponentModel.DefaultValue(default(int))]
  444. public int hookSpeed
  445. {
  446. get { return _hookSpeed; }
  447. set { _hookSpeed = value; }
  448. }
  449. private long _classExp = default(long);
  450. /// <summary>
  451. /// 当前修为值
  452. /// </summary>
  453. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"classExp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  454. [global::System.ComponentModel.DefaultValue(default(long))]
  455. public long classExp
  456. {
  457. get { return _classExp; }
  458. set { _classExp = value; }
  459. }
  460. private global::ProtoBuf.IExtension extensionObject;
  461. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  462. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  463. }
  464. //---------------------------------------------------------------------------------------
  465. /// <summary>
  466. /// 请求兑换属性信息请求
  467. /// </summary>
  468. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchangePropertyInfoRequest")]
  469. public partial class ExchangePropertyInfoRequest : global::ProtoBuf.IExtensible
  470. {
  471. public ExchangePropertyInfoRequest() {}
  472. private global::ProtoBuf.IExtension extensionObject;
  473. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  474. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  475. }
  476. //---------------------------------------------------------------------------------------
  477. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchangePropertyInfoResponse")]
  478. public partial class ExchangePropertyInfoResponse : global::ProtoBuf.IExtensible
  479. {
  480. public ExchangePropertyInfoResponse() {}
  481. private int _s2c_code;
  482. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  483. public int s2c_code
  484. {
  485. get { return _s2c_code; }
  486. set { _s2c_code = value; }
  487. }
  488. private string _s2c_msg = "";
  489. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  490. [global::System.ComponentModel.DefaultValue("")]
  491. public string s2c_msg
  492. {
  493. get { return _s2c_msg; }
  494. set { _s2c_msg = value; }
  495. }
  496. private int _count = default(int);
  497. /// <summary>
  498. /// 兑换次数
  499. /// </summary>
  500. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"count", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  501. [global::System.ComponentModel.DefaultValue(default(int))]
  502. public int count
  503. {
  504. get { return _count; }
  505. set { _count = value; }
  506. }
  507. private global::ProtoBuf.IExtension extensionObject;
  508. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  509. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  510. }
  511. //---------------------------------------------------------------------------------------
  512. /// <summary>
  513. /// 兑换属性请求
  514. /// </summary>
  515. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchangePropertyRequest")]
  516. public partial class ExchangePropertyRequest : global::ProtoBuf.IExtensible
  517. {
  518. public ExchangePropertyRequest() {}
  519. private int _type;
  520. /// <summary>
  521. /// 兑换类型 1=经验兑换,2=修为兑换
  522. /// </summary>
  523. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  524. public int type
  525. {
  526. get { return _type; }
  527. set { _type = value; }
  528. }
  529. private global::ProtoBuf.IExtension extensionObject;
  530. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  531. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  532. }
  533. //---------------------------------------------------------------------------------------
  534. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchangePropertyResponse")]
  535. public partial class ExchangePropertyResponse : global::ProtoBuf.IExtensible
  536. {
  537. public ExchangePropertyResponse() {}
  538. private int _s2c_code;
  539. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  540. public int s2c_code
  541. {
  542. get { return _s2c_code; }
  543. set { _s2c_code = value; }
  544. }
  545. private string _s2c_msg = "";
  546. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  547. [global::System.ComponentModel.DefaultValue("")]
  548. public string s2c_msg
  549. {
  550. get { return _s2c_msg; }
  551. set { _s2c_msg = value; }
  552. }
  553. private int _count = default(int);
  554. /// <summary>
  555. /// 兑换次数
  556. /// </summary>
  557. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"count", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  558. [global::System.ComponentModel.DefaultValue(default(int))]
  559. public int count
  560. {
  561. get { return _count; }
  562. set { _count = value; }
  563. }
  564. private global::ProtoBuf.IExtension extensionObject;
  565. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  566. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  567. }
  568. //---------------------------------------------------------------------------------------
  569. /// <summary>
  570. /// 经验兑换修为
  571. /// </summary>
  572. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExpExchangeClassExpRequest")]
  573. public partial class ExpExchangeClassExpRequest : global::ProtoBuf.IExtensible
  574. {
  575. public ExpExchangeClassExpRequest() {}
  576. private global::ProtoBuf.IExtension extensionObject;
  577. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  578. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  579. }
  580. //---------------------------------------------------------------------------------------
  581. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExpExchangeClassExpResponse")]
  582. public partial class ExpExchangeClassExpResponse : global::ProtoBuf.IExtensible
  583. {
  584. public ExpExchangeClassExpResponse() {}
  585. private int _s2c_code;
  586. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  587. public int s2c_code
  588. {
  589. get { return _s2c_code; }
  590. set { _s2c_code = value; }
  591. }
  592. private string _s2c_msg = "";
  593. /// <summary>
  594. /// 为空表示成功
  595. /// </summary>
  596. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  597. [global::System.ComponentModel.DefaultValue("")]
  598. public string s2c_msg
  599. {
  600. get { return _s2c_msg; }
  601. set { _s2c_msg = value; }
  602. }
  603. private global::ProtoBuf.IExtension extensionObject;
  604. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  605. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  606. }
  607. //---------------------------------------------------------------------------------------
  608. /// <summary>
  609. /// 638 天道点今日领取(每天可以领取多次)
  610. /// </summary>
  611. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TianDaoDayRecRequest")]
  612. public partial class TianDaoDayRecRequest : global::ProtoBuf.IExtensible
  613. {
  614. public TianDaoDayRecRequest() {}
  615. private global::ProtoBuf.IExtension extensionObject;
  616. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  617. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  618. }
  619. //---------------------------------------------------------------------------------------
  620. /// <summary>
  621. /// 638 天道点今日领取(每天可以领取多次)
  622. /// </summary>
  623. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TianDaoDayRecResponse")]
  624. public partial class TianDaoDayRecResponse : global::ProtoBuf.IExtensible
  625. {
  626. public TianDaoDayRecResponse() {}
  627. private int _s2c_code;
  628. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  629. public int s2c_code
  630. {
  631. get { return _s2c_code; }
  632. set { _s2c_code = value; }
  633. }
  634. private string _s2c_msg = "";
  635. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  636. [global::System.ComponentModel.DefaultValue("")]
  637. public string s2c_msg
  638. {
  639. get { return _s2c_msg; }
  640. set { _s2c_msg = value; }
  641. }
  642. private int _s2c_can_value = default(int);
  643. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_can_value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  644. [global::System.ComponentModel.DefaultValue(default(int))]
  645. public int s2c_can_value
  646. {
  647. get { return _s2c_can_value; }
  648. set { _s2c_can_value = value; }
  649. }
  650. private global::ProtoBuf.IExtension extensionObject;
  651. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  652. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  653. }
  654. //---------------------------------------------------------------------------------------
  655. /// <summary>
  656. /// 582.跨服场景每日5选一 请求
  657. /// </summary>
  658. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FiveChooseOneByDayRequest")]
  659. public partial class FiveChooseOneByDayRequest : global::ProtoBuf.IExtensible
  660. {
  661. public FiveChooseOneByDayRequest() {}
  662. private global::ProtoBuf.IExtension extensionObject;
  663. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  664. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  665. }
  666. //---------------------------------------------------------------------------------------
  667. /// <summary>
  668. /// 582.跨服场景每日5选一 返回
  669. /// </summary>
  670. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"FiveChooseOneByDayResponse")]
  671. public partial class FiveChooseOneByDayResponse : global::ProtoBuf.IExtensible
  672. {
  673. public FiveChooseOneByDayResponse() {}
  674. private int _s2c_code;
  675. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  676. public int s2c_code
  677. {
  678. get { return _s2c_code; }
  679. set { _s2c_code = value; }
  680. }
  681. private string _s2c_msg = "";
  682. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  683. [global::System.ComponentModel.DefaultValue("")]
  684. public string s2c_msg
  685. {
  686. get { return _s2c_msg; }
  687. set { _s2c_msg = value; }
  688. }
  689. private int _mapId = default(int);
  690. /// <summary>
  691. /// 进入的mapid(0:无)
  692. /// </summary>
  693. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"mapId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  694. [global::System.ComponentModel.DefaultValue(default(int))]
  695. public int mapId
  696. {
  697. get { return _mapId; }
  698. set { _mapId = value; }
  699. }
  700. private global::ProtoBuf.IExtension extensionObject;
  701. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  702. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  703. }
  704. //---------------------------------------------------------------------------------------
  705. /// <summary>
  706. /// 583.地图id是否属于跨服地图 请求
  707. /// </summary>
  708. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MapIdIsCrossAreaRequest")]
  709. public partial class MapIdIsCrossAreaRequest : global::ProtoBuf.IExtensible
  710. {
  711. public MapIdIsCrossAreaRequest() {}
  712. private int _mapId;
  713. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"mapId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  714. public int mapId
  715. {
  716. get { return _mapId; }
  717. set { _mapId = value; }
  718. }
  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. /// <summary>
  725. /// 583.地图id是否属于跨服地图 返回
  726. /// </summary>
  727. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MapIdIsCrossAreaResponse")]
  728. public partial class MapIdIsCrossAreaResponse : global::ProtoBuf.IExtensible
  729. {
  730. public MapIdIsCrossAreaResponse() {}
  731. private int _s2c_code;
  732. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  733. public int s2c_code
  734. {
  735. get { return _s2c_code; }
  736. set { _s2c_code = value; }
  737. }
  738. private string _s2c_msg = "";
  739. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  740. [global::System.ComponentModel.DefaultValue("")]
  741. public string s2c_msg
  742. {
  743. get { return _s2c_msg; }
  744. set { _s2c_msg = value; }
  745. }
  746. private bool _isCross = default(bool);
  747. /// <summary>
  748. /// true:是跨服地图
  749. /// </summary>
  750. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isCross", DataFormat = global::ProtoBuf.DataFormat.Default)]
  751. [global::System.ComponentModel.DefaultValue(default(bool))]
  752. public bool isCross
  753. {
  754. get { return _isCross; }
  755. set { _isCross = value; }
  756. }
  757. private global::ProtoBuf.IExtension extensionObject;
  758. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  759. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  760. }
  761. //---------------------------------------------------------------------------------------
  762. /// <summary>
  763. /// 虚拟值
  764. /// </summary>
  765. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DayRefreshData")]
  766. public partial class DayRefreshData : global::ProtoBuf.IExtensible
  767. {
  768. public DayRefreshData() {}
  769. private int _s2c_remainingNum = default(int);
  770. /// <summary>
  771. /// (大师兄)每日师门令剩余领取次数
  772. /// </summary>
  773. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"s2c_remainingNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  774. [global::System.ComponentModel.DefaultValue(default(int))]
  775. public int s2c_remainingNum
  776. {
  777. get { return _s2c_remainingNum; }
  778. set { _s2c_remainingNum = value; }
  779. }
  780. private global::ProtoBuf.IExtension extensionObject;
  781. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  782. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  783. }
  784. //---------------------------------------------------------------------------------------
  785. /// <summary>
  786. /// MSG_RrefrushNewDay = 1113; //第二天五点了,客户端按需刷新
  787. /// </summary>
  788. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RefrushNewDayPush")]
  789. public partial class RefrushNewDayPush : global::ProtoBuf.IExtensible
  790. {
  791. public RefrushNewDayPush() {}
  792. private pomelo.area.DayRefreshData _day_refresh = null;
  793. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"day_refresh", DataFormat = global::ProtoBuf.DataFormat.Default)]
  794. [global::System.ComponentModel.DefaultValue(null)]
  795. public pomelo.area.DayRefreshData day_refresh
  796. {
  797. get { return _day_refresh; }
  798. set { _day_refresh = value; }
  799. }
  800. private global::ProtoBuf.IExtension extensionObject;
  801. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  802. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  803. }
  804. }