_playerHandler.cs 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  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. // 创建时间= 2015-08-27
  12. // 用途= 玩家处理器
  13. // ***************************************************************************
  14. // Generated from: playerHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: player.proto
  17. // Note: requires additional types generated from: item.proto
  18. namespace pomelo.area
  19. {
  20. //---------------------------------------------------------------------------------------
  21. /// <summary>
  22. /// 进入场景请求
  23. /// </summary>
  24. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnterSceneRequest")]
  25. public partial class EnterSceneRequest : global::ProtoBuf.IExtensible
  26. {
  27. public EnterSceneRequest() {}
  28. private string _c2s_instanceId = "";
  29. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"c2s_instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  30. [global::System.ComponentModel.DefaultValue("")]
  31. public string c2s_instanceId
  32. {
  33. get { return _c2s_instanceId; }
  34. set { _c2s_instanceId = value; }
  35. }
  36. private global::ProtoBuf.IExtension extensionObject;
  37. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  38. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  39. }
  40. //---------------------------------------------------------------------------------------
  41. /// <summary>
  42. /// 进入场景返回
  43. /// </summary>
  44. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"EnterSceneResponse")]
  45. public partial class EnterSceneResponse : global::ProtoBuf.IExtensible
  46. {
  47. public EnterSceneResponse() {}
  48. private int _s2c_code;
  49. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  50. public int s2c_code
  51. {
  52. get { return _s2c_code; }
  53. set { _s2c_code = value; }
  54. }
  55. private string _s2c_msg = "";
  56. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  57. [global::System.ComponentModel.DefaultValue("")]
  58. public string s2c_msg
  59. {
  60. get { return _s2c_msg; }
  61. set { _s2c_msg = value; }
  62. }
  63. private string _s2c_instanceId = "";
  64. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  65. [global::System.ComponentModel.DefaultValue("")]
  66. public string s2c_instanceId
  67. {
  68. get { return _s2c_instanceId; }
  69. set { _s2c_instanceId = value; }
  70. }
  71. private int _s2c_areaIndex = default(int);
  72. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_areaIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  73. [global::System.ComponentModel.DefaultValue(default(int))]
  74. public int s2c_areaIndex
  75. {
  76. get { return _s2c_areaIndex; }
  77. set { _s2c_areaIndex = value; }
  78. }
  79. private global::ProtoBuf.IExtension extensionObject;
  80. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  81. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  82. }
  83. //---------------------------------------------------------------------------------------
  84. /// <summary>
  85. /// 战斗事件通知
  86. /// </summary>
  87. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleEventNotify")]
  88. public partial class BattleEventNotify : global::ProtoBuf.IExtensible
  89. {
  90. public BattleEventNotify() {}
  91. private byte[] _c2s_data;
  92. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  93. public byte[] c2s_data
  94. {
  95. get { return _c2s_data; }
  96. set { _c2s_data = 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. /// 拾取道具请求
  105. /// </summary>
  106. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PickItemRequest")]
  107. public partial class PickItemRequest : global::ProtoBuf.IExtensible
  108. {
  109. public PickItemRequest() {}
  110. private string _c2s_instanceId;
  111. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  112. public string c2s_instanceId
  113. {
  114. get { return _c2s_instanceId; }
  115. set { _c2s_instanceId = value; }
  116. }
  117. private string _c2s_itemId;
  118. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_itemId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  119. public string c2s_itemId
  120. {
  121. get { return _c2s_itemId; }
  122. set { _c2s_itemId = value; }
  123. }
  124. private global::ProtoBuf.IExtension extensionObject;
  125. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  126. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  127. }
  128. //---------------------------------------------------------------------------------------
  129. /// <summary>
  130. /// 拾取道具返回
  131. /// </summary>
  132. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PickItemResponse")]
  133. public partial class PickItemResponse : global::ProtoBuf.IExtensible
  134. {
  135. public PickItemResponse() {}
  136. private int _s2c_code;
  137. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  138. public int s2c_code
  139. {
  140. get { return _s2c_code; }
  141. set { _s2c_code = value; }
  142. }
  143. private string _s2c_msg = "";
  144. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  145. [global::System.ComponentModel.DefaultValue("")]
  146. public string s2c_msg
  147. {
  148. get { return _s2c_msg; }
  149. set { _s2c_msg = value; }
  150. }
  151. private global::ProtoBuf.IExtension extensionObject;
  152. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  153. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  154. }
  155. //---------------------------------------------------------------------------------------
  156. /// <summary>
  157. /// 切换到具体场景的 xy 坐标
  158. /// </summary>
  159. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaXYRequest")]
  160. public partial class ChangeAreaXYRequest : global::ProtoBuf.IExtensible
  161. {
  162. public ChangeAreaXYRequest() {}
  163. private int _mapId;
  164. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"mapId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  165. public int mapId
  166. {
  167. get { return _mapId; }
  168. set { _mapId = value; }
  169. }
  170. private int _posx = default(int);
  171. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"posx", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  172. [global::System.ComponentModel.DefaultValue(default(int))]
  173. public int posx
  174. {
  175. get { return _posx; }
  176. set { _posx = value; }
  177. }
  178. private int _posy = default(int);
  179. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"posy", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  180. [global::System.ComponentModel.DefaultValue(default(int))]
  181. public int posy
  182. {
  183. get { return _posy; }
  184. set { _posy = value; }
  185. }
  186. private string _instanceId = "";
  187. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  188. [global::System.ComponentModel.DefaultValue("")]
  189. public string instanceId
  190. {
  191. get { return _instanceId; }
  192. set { _instanceId = value; }
  193. }
  194. private global::ProtoBuf.IExtension extensionObject;
  195. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  196. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  197. }
  198. //---------------------------------------------------------------------------------------
  199. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaXYResponse")]
  200. public partial class ChangeAreaXYResponse : global::ProtoBuf.IExtensible
  201. {
  202. public ChangeAreaXYResponse() {}
  203. private int _s2c_code;
  204. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  205. public int s2c_code
  206. {
  207. get { return _s2c_code; }
  208. set { _s2c_code = value; }
  209. }
  210. private string _s2c_msg = "";
  211. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  212. [global::System.ComponentModel.DefaultValue("")]
  213. public string s2c_msg
  214. {
  215. get { return _s2c_msg; }
  216. set { _s2c_msg = value; }
  217. }
  218. private global::ProtoBuf.IExtension extensionObject;
  219. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  220. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  221. }
  222. //---------------------------------------------------------------------------------------
  223. /// <summary>
  224. /// 当玩家已经在目标任务路点时,点击任务寻路时触发
  225. /// </summary>
  226. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaByTaskRequest")]
  227. public partial class ChangeAreaByTaskRequest : global::ProtoBuf.IExtensible
  228. {
  229. public ChangeAreaByTaskRequest() {}
  230. private int _mapId;
  231. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"mapId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  232. public int mapId
  233. {
  234. get { return _mapId; }
  235. set { _mapId = value; }
  236. }
  237. private int _taskId;
  238. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"taskId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  239. public int taskId
  240. {
  241. get { return _taskId; }
  242. set { _taskId = value; }
  243. }
  244. private int _posx;
  245. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"posx", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  246. public int posx
  247. {
  248. get { return _posx; }
  249. set { _posx = value; }
  250. }
  251. private int _posy;
  252. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"posy", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  253. public int posy
  254. {
  255. get { return _posy; }
  256. set { _posy = value; }
  257. }
  258. private int _point = default(int);
  259. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"point", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  260. [global::System.ComponentModel.DefaultValue(default(int))]
  261. public int point
  262. {
  263. get { return _point; }
  264. set { _point = value; }
  265. }
  266. private global::ProtoBuf.IExtension extensionObject;
  267. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  268. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  269. }
  270. //---------------------------------------------------------------------------------------
  271. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaByTaskResponse")]
  272. public partial class ChangeAreaByTaskResponse : global::ProtoBuf.IExtensible
  273. {
  274. public ChangeAreaByTaskResponse() {}
  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. /// 切换场景请求
  297. /// </summary>
  298. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaRequest")]
  299. public partial class ChangeAreaRequest : global::ProtoBuf.IExtensible
  300. {
  301. public ChangeAreaRequest() {}
  302. private string _c2s_pointId;
  303. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pointId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  304. public string c2s_pointId
  305. {
  306. get { return _c2s_pointId; }
  307. set { _c2s_pointId = value; }
  308. }
  309. private int _c2s_type;
  310. /// <summary>
  311. /// 0:普通进入,1:收到弹框点确认进副本
  312. /// </summary>
  313. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  314. public int c2s_type
  315. {
  316. get { return _c2s_type; }
  317. set { _c2s_type = value; }
  318. }
  319. private global::ProtoBuf.IExtension extensionObject;
  320. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  321. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  322. }
  323. //---------------------------------------------------------------------------------------
  324. /// <summary>
  325. /// 切换场景返回
  326. /// </summary>
  327. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaResponse")]
  328. public partial class ChangeAreaResponse : global::ProtoBuf.IExtensible
  329. {
  330. public ChangeAreaResponse() {}
  331. private int _s2c_code;
  332. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  333. public int s2c_code
  334. {
  335. get { return _s2c_code; }
  336. set { _s2c_code = value; }
  337. }
  338. private string _s2c_msg = "";
  339. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  340. [global::System.ComponentModel.DefaultValue("")]
  341. public string s2c_msg
  342. {
  343. get { return _s2c_msg; }
  344. set { _s2c_msg = value; }
  345. }
  346. private string _s2c_enterTips = "";
  347. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_enterTips", DataFormat = global::ProtoBuf.DataFormat.Default)]
  348. [global::System.ComponentModel.DefaultValue("")]
  349. public string s2c_enterTips
  350. {
  351. get { return _s2c_enterTips; }
  352. set { _s2c_enterTips = value; }
  353. }
  354. private global::ProtoBuf.IExtension extensionObject;
  355. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  356. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  357. }
  358. //---------------------------------------------------------------------------------------
  359. /// <summary>
  360. /// 切换场景请求
  361. /// </summary>
  362. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransByAreaIdRequest")]
  363. public partial class TransByAreaIdRequest : global::ProtoBuf.IExtensible
  364. {
  365. public TransByAreaIdRequest() {}
  366. private int _c2s_areaId;
  367. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  368. public int c2s_areaId
  369. {
  370. get { return _c2s_areaId; }
  371. set { _c2s_areaId = value; }
  372. }
  373. private int _c2s_type = default(int);
  374. /// <summary>
  375. /// 0-正常传送,1-回城
  376. /// </summary>
  377. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  378. [global::System.ComponentModel.DefaultValue(default(int))]
  379. public int c2s_type
  380. {
  381. get { return _c2s_type; }
  382. set { _c2s_type = value; }
  383. }
  384. private int _c2s_dungeonId = default(int);
  385. /// <summary>
  386. /// 副本索引-第几层(深渊副本......)
  387. /// </summary>
  388. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"c2s_dungeonId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  389. [global::System.ComponentModel.DefaultValue(default(int))]
  390. public int c2s_dungeonId
  391. {
  392. get { return _c2s_dungeonId; }
  393. set { _c2s_dungeonId = value; }
  394. }
  395. private global::ProtoBuf.IExtension extensionObject;
  396. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  397. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  398. }
  399. //---------------------------------------------------------------------------------------
  400. /// <summary>
  401. /// 切换场景返回
  402. /// </summary>
  403. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransByAreaIdResponse")]
  404. public partial class TransByAreaIdResponse : global::ProtoBuf.IExtensible
  405. {
  406. public TransByAreaIdResponse() {}
  407. private int _s2c_code;
  408. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  409. public int s2c_code
  410. {
  411. get { return _s2c_code; }
  412. set { _s2c_code = value; }
  413. }
  414. private string _s2c_msg = "";
  415. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  416. [global::System.ComponentModel.DefaultValue("")]
  417. public string s2c_msg
  418. {
  419. get { return _s2c_msg; }
  420. set { _s2c_msg = value; }
  421. }
  422. private global::ProtoBuf.IExtension extensionObject;
  423. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  424. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  425. }
  426. //---------------------------------------------------------------------------------------
  427. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransByInstanceIdRequest")]
  428. public partial class TransByInstanceIdRequest : global::ProtoBuf.IExtensible
  429. {
  430. public TransByInstanceIdRequest() {}
  431. private string _c2s_instanceId;
  432. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  433. public string c2s_instanceId
  434. {
  435. get { return _c2s_instanceId; }
  436. set { _c2s_instanceId = value; }
  437. }
  438. private global::ProtoBuf.IExtension extensionObject;
  439. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  440. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  441. }
  442. //---------------------------------------------------------------------------------------
  443. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransByInstanceIdResponse")]
  444. public partial class TransByInstanceIdResponse : global::ProtoBuf.IExtensible
  445. {
  446. public TransByInstanceIdResponse() {}
  447. private int _s2c_code;
  448. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  449. public int s2c_code
  450. {
  451. get { return _s2c_code; }
  452. set { _s2c_code = value; }
  453. }
  454. private string _s2c_msg = "";
  455. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  456. [global::System.ComponentModel.DefaultValue("")]
  457. public string s2c_msg
  458. {
  459. get { return _s2c_msg; }
  460. set { _s2c_msg = value; }
  461. }
  462. private global::ProtoBuf.IExtension extensionObject;
  463. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  464. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  465. }
  466. //---------------------------------------------------------------------------------------
  467. /// <summary>
  468. /// 离开场景请求
  469. /// </summary>
  470. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaveAreaRequest")]
  471. public partial class LeaveAreaRequest : global::ProtoBuf.IExtensible
  472. {
  473. public LeaveAreaRequest() {}
  474. private global::ProtoBuf.IExtension extensionObject;
  475. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  476. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  477. }
  478. //---------------------------------------------------------------------------------------
  479. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaveAreaResponse")]
  480. public partial class LeaveAreaResponse : global::ProtoBuf.IExtensible
  481. {
  482. public LeaveAreaResponse() {}
  483. private int _s2c_code;
  484. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  485. public int s2c_code
  486. {
  487. get { return _s2c_code; }
  488. set { _s2c_code = value; }
  489. }
  490. private string _s2c_msg = "";
  491. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  492. [global::System.ComponentModel.DefaultValue("")]
  493. public string s2c_msg
  494. {
  495. get { return _s2c_msg; }
  496. set { _s2c_msg = value; }
  497. }
  498. private global::ProtoBuf.IExtension extensionObject;
  499. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  500. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  501. }
  502. //---------------------------------------------------------------------------------------
  503. /// <summary>
  504. /// 查询loadway请求
  505. /// </summary>
  506. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryLoadWayRequest")]
  507. public partial class QueryLoadWayRequest : global::ProtoBuf.IExtensible
  508. {
  509. public QueryLoadWayRequest() {}
  510. private int _c2s_areaId;
  511. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  512. public int c2s_areaId
  513. {
  514. get { return _c2s_areaId; }
  515. set { _c2s_areaId = value; }
  516. }
  517. private string _c2s_pointId;
  518. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_pointId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  519. public string c2s_pointId
  520. {
  521. get { return _c2s_pointId; }
  522. set { _c2s_pointId = value; }
  523. }
  524. private global::ProtoBuf.IExtension extensionObject;
  525. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  526. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  527. }
  528. //---------------------------------------------------------------------------------------
  529. /// <summary>
  530. /// 查询loadway返回
  531. /// </summary>
  532. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryLoadWayResponse")]
  533. public partial class QueryLoadWayResponse : global::ProtoBuf.IExtensible
  534. {
  535. public QueryLoadWayResponse() {}
  536. private int _s2c_code;
  537. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  538. public int s2c_code
  539. {
  540. get { return _s2c_code; }
  541. set { _s2c_code = value; }
  542. }
  543. private string _s2c_msg = "";
  544. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  545. [global::System.ComponentModel.DefaultValue("")]
  546. public string s2c_msg
  547. {
  548. get { return _s2c_msg; }
  549. set { _s2c_msg = value; }
  550. }
  551. private string _s2c_pointId = "";
  552. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_pointId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  553. [global::System.ComponentModel.DefaultValue("")]
  554. public string s2c_pointId
  555. {
  556. get { return _s2c_pointId; }
  557. set { _s2c_pointId = value; }
  558. }
  559. private global::ProtoBuf.IExtension extensionObject;
  560. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  561. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  562. }
  563. //---------------------------------------------------------------------------------------
  564. /// <summary>
  565. /// 最近接触请求
  566. /// </summary>
  567. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RecentContactsRequest")]
  568. public partial class RecentContactsRequest : global::ProtoBuf.IExtensible
  569. {
  570. public RecentContactsRequest() {}
  571. private readonly global::System.Collections.Generic.List<string> _c2s_ids = new global::System.Collections.Generic.List<string>();
  572. [global::ProtoBuf.ProtoMember(1, Name=@"c2s_ids", DataFormat = global::ProtoBuf.DataFormat.Default)]
  573. public global::System.Collections.Generic.List<string> c2s_ids
  574. {
  575. get { return _c2s_ids; }
  576. }
  577. private global::ProtoBuf.IExtension extensionObject;
  578. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  579. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  580. }
  581. //---------------------------------------------------------------------------------------
  582. /// <summary>
  583. /// 最近接触详情
  584. /// </summary>
  585. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"recentContactInfo")]
  586. public partial class recentContactInfo : global::ProtoBuf.IExtensible
  587. {
  588. public recentContactInfo() {}
  589. private string _id;
  590. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
  591. public string id
  592. {
  593. get { return _id; }
  594. set { _id = value; }
  595. }
  596. private string _name;
  597. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  598. public string name
  599. {
  600. get { return _name; }
  601. set { _name = value; }
  602. }
  603. private int _level;
  604. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  605. public int level
  606. {
  607. get { return _level; }
  608. set { _level = value; }
  609. }
  610. private int _pro;
  611. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  612. public int pro
  613. {
  614. get { return _pro; }
  615. set { _pro = value; }
  616. }
  617. private int _isFriend;
  618. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"isFriend", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  619. public int isFriend
  620. {
  621. get { return _isFriend; }
  622. set { _isFriend = value; }
  623. }
  624. private global::ProtoBuf.IExtension extensionObject;
  625. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  626. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  627. }
  628. //---------------------------------------------------------------------------------------
  629. /// <summary>
  630. /// 最近接触返回
  631. /// </summary>
  632. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RecentContactsResponse")]
  633. public partial class RecentContactsResponse : global::ProtoBuf.IExtensible
  634. {
  635. public RecentContactsResponse() {}
  636. private int _s2c_code;
  637. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  638. public int s2c_code
  639. {
  640. get { return _s2c_code; }
  641. set { _s2c_code = value; }
  642. }
  643. private readonly global::System.Collections.Generic.List<pomelo.area.recentContactInfo> _s2c_data = new global::System.Collections.Generic.List<pomelo.area.recentContactInfo>();
  644. [global::ProtoBuf.ProtoMember(2, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  645. public global::System.Collections.Generic.List<pomelo.area.recentContactInfo> s2c_data
  646. {
  647. get { return _s2c_data; }
  648. }
  649. private string _s2c_msg = "";
  650. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  651. [global::System.ComponentModel.DefaultValue("")]
  652. public string s2c_msg
  653. {
  654. get { return _s2c_msg; }
  655. set { _s2c_msg = value; }
  656. }
  657. private global::ProtoBuf.IExtension extensionObject;
  658. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  659. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  660. }
  661. //---------------------------------------------------------------------------------------
  662. /// <summary>
  663. /// 日常活动奖励基础数据
  664. /// </summary>
  665. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RewardBasicData")]
  666. public partial class RewardBasicData : global::ProtoBuf.IExtensible
  667. {
  668. public RewardBasicData() {}
  669. private int _templateId;
  670. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"templateId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  671. public int templateId
  672. {
  673. get { return _templateId; }
  674. set { _templateId = value; }
  675. }
  676. private int _num;
  677. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  678. public int num
  679. {
  680. get { return _num; }
  681. set { _num = value; }
  682. }
  683. private int _icon;
  684. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"icon", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  685. public int icon
  686. {
  687. get { return _icon; }
  688. set { _icon = value; }
  689. }
  690. private int _quality;
  691. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"quality", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  692. public int quality
  693. {
  694. get { return _quality; }
  695. set { _quality = value; }
  696. }
  697. private global::ProtoBuf.IExtension extensionObject;
  698. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  699. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  700. }
  701. //---------------------------------------------------------------------------------------
  702. /// <summary>
  703. /// 日常活动奖励
  704. /// </summary>
  705. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DailyReward")]
  706. public partial class DailyReward : global::ProtoBuf.IExtensible
  707. {
  708. public DailyReward() {}
  709. private int _id;
  710. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  711. public int id
  712. {
  713. get { return _id; }
  714. set { _id = value; }
  715. }
  716. private readonly global::System.Collections.Generic.List<pomelo.area.RewardBasicData> _rewards = new global::System.Collections.Generic.List<pomelo.area.RewardBasicData>();
  717. [global::ProtoBuf.ProtoMember(2, Name=@"rewards", DataFormat = global::ProtoBuf.DataFormat.Default)]
  718. public global::System.Collections.Generic.List<pomelo.area.RewardBasicData> rewards
  719. {
  720. get { return _rewards; }
  721. }
  722. private int _score;
  723. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"score", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  724. public int score
  725. {
  726. get { return _score; }
  727. set { _score = value; }
  728. }
  729. private int _isGet;
  730. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"isGet", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  731. public int isGet
  732. {
  733. get { return _isGet; }
  734. set { _isGet = value; }
  735. }
  736. private global::ProtoBuf.IExtension extensionObject;
  737. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  738. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  739. }
  740. //---------------------------------------------------------------------------------------
  741. /// <summary>
  742. /// 日常活动详情
  743. /// </summary>
  744. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DailyActivity")]
  745. public partial class DailyActivity : global::ProtoBuf.IExtensible
  746. {
  747. public DailyActivity() {}
  748. private int _id;
  749. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  750. public int id
  751. {
  752. get { return _id; }
  753. set { _id = value; }
  754. }
  755. private string _name;
  756. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  757. public string name
  758. {
  759. get { return _name; }
  760. set { _name = value; }
  761. }
  762. private int _score;
  763. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"score", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  764. public int score
  765. {
  766. get { return _score; }
  767. set { _score = value; }
  768. }
  769. private int _scoreLimit;
  770. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"scoreLimit", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  771. public int scoreLimit
  772. {
  773. get { return _scoreLimit; }
  774. set { _scoreLimit = value; }
  775. }
  776. private string _rule;
  777. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"rule", DataFormat = global::ProtoBuf.DataFormat.Default)]
  778. public string rule
  779. {
  780. get { return _rule; }
  781. set { _rule = value; }
  782. }
  783. private int _target;
  784. [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"target", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  785. public int target
  786. {
  787. get { return _target; }
  788. set { _target = value; }
  789. }
  790. private int _level;
  791. [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  792. public int level
  793. {
  794. get { return _level; }
  795. set { _level = value; }
  796. }
  797. private int _sort;
  798. [global::ProtoBuf.ProtoMember(8, IsRequired = true, Name=@"sort", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  799. public int sort
  800. {
  801. get { return _sort; }
  802. set { _sort = 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. /// 日常活动详情列表
  811. /// </summary>
  812. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DailyActivities")]
  813. public partial class DailyActivities : global::ProtoBuf.IExtensible
  814. {
  815. public DailyActivities() {}
  816. private int _totalScore;
  817. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"totalScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  818. public int totalScore
  819. {
  820. get { return _totalScore; }
  821. set { _totalScore = value; }
  822. }
  823. private readonly global::System.Collections.Generic.List<pomelo.area.DailyActivity> _dayActivities = new global::System.Collections.Generic.List<pomelo.area.DailyActivity>();
  824. [global::ProtoBuf.ProtoMember(2, Name=@"dayActivities", DataFormat = global::ProtoBuf.DataFormat.Default)]
  825. public global::System.Collections.Generic.List<pomelo.area.DailyActivity> dayActivities
  826. {
  827. get { return _dayActivities; }
  828. }
  829. private readonly global::System.Collections.Generic.List<pomelo.area.DailyReward> _dayReward = new global::System.Collections.Generic.List<pomelo.area.DailyReward>();
  830. [global::ProtoBuf.ProtoMember(3, Name=@"dayReward", DataFormat = global::ProtoBuf.DataFormat.Default)]
  831. public global::System.Collections.Generic.List<pomelo.area.DailyReward> dayReward
  832. {
  833. get { return _dayReward; }
  834. }
  835. private global::ProtoBuf.IExtension extensionObject;
  836. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  837. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  838. }
  839. //---------------------------------------------------------------------------------------
  840. /// <summary>
  841. /// 战斗事件推送
  842. /// </summary>
  843. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleEventPush")]
  844. public partial class BattleEventPush : global::ProtoBuf.IExtensible
  845. {
  846. public BattleEventPush() {}
  847. private string _s2c_name;
  848. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  849. public string s2c_name
  850. {
  851. get { return _s2c_name; }
  852. set { _s2c_name = value; }
  853. }
  854. private byte[] _s2c_data;
  855. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  856. public byte[] s2c_data
  857. {
  858. get { return _s2c_data; }
  859. set { _s2c_data = value; }
  860. }
  861. private global::ProtoBuf.IExtension extensionObject;
  862. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  863. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  864. }
  865. //---------------------------------------------------------------------------------------
  866. /// <summary>
  867. /// 战斗场景切换推送
  868. /// </summary>
  869. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleClearPush")]
  870. public partial class BattleClearPush : global::ProtoBuf.IExtensible
  871. {
  872. public BattleClearPush() {}
  873. private string _s2c_name;
  874. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  875. public string s2c_name
  876. {
  877. get { return _s2c_name; }
  878. set { _s2c_name = value; }
  879. }
  880. private global::ProtoBuf.IExtension extensionObject;
  881. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  882. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  883. }
  884. //---------------------------------------------------------------------------------------
  885. /// <summary>
  886. /// 脚本剧情类型
  887. /// </summary>
  888. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SuperScriptType")]
  889. public partial class SuperScriptType : global::ProtoBuf.IExtensible
  890. {
  891. public SuperScriptType() {}
  892. private int _type;
  893. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  894. public int type
  895. {
  896. get { return _type; }
  897. set { _type = value; }
  898. }
  899. private int _number;
  900. /// <summary>
  901. /// 0:不显示 1:显示不带数字的红点 2-n:显示数字
  902. /// </summary>
  903. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"number", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  904. public int number
  905. {
  906. get { return _number; }
  907. set { _number = value; }
  908. }
  909. private global::ProtoBuf.IExtension extensionObject;
  910. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  911. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  912. }
  913. //---------------------------------------------------------------------------------------
  914. /// <summary>
  915. /// 脚本剧情推送
  916. /// </summary>
  917. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SuperScriptPush")]
  918. public partial class SuperScriptPush : global::ProtoBuf.IExtensible
  919. {
  920. public SuperScriptPush() {}
  921. private readonly global::System.Collections.Generic.List<pomelo.area.SuperScriptType> _s2c_data = new global::System.Collections.Generic.List<pomelo.area.SuperScriptType>();
  922. [global::ProtoBuf.ProtoMember(2, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  923. public global::System.Collections.Generic.List<pomelo.area.SuperScriptType> s2c_data
  924. {
  925. get { return _s2c_data; }
  926. }
  927. private global::ProtoBuf.IExtension extensionObject;
  928. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  929. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  930. }
  931. //---------------------------------------------------------------------------------------
  932. /// <summary>
  933. /// 切换地图推送
  934. /// </summary>
  935. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangeAreaPush")]
  936. public partial class ChangeAreaPush : global::ProtoBuf.IExtensible
  937. {
  938. public ChangeAreaPush() {}
  939. private int _s2c_mapId;
  940. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_mapId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  941. public int s2c_mapId
  942. {
  943. get { return _s2c_mapId; }
  944. set { _s2c_mapId = value; }
  945. }
  946. private int _s2c_sceneId;
  947. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_sceneId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  948. public int s2c_sceneId
  949. {
  950. get { return _s2c_sceneId; }
  951. set { _s2c_sceneId = value; }
  952. }
  953. private int _s2c_sceneType;
  954. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"s2c_sceneType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  955. public int s2c_sceneType
  956. {
  957. get { return _s2c_sceneType; }
  958. set { _s2c_sceneType = value; }
  959. }
  960. private int _s2c_sceneUseAgent;
  961. /// <summary>
  962. /// 能否吃药剂
  963. /// </summary>
  964. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"s2c_sceneUseAgent", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  965. public int s2c_sceneUseAgent
  966. {
  967. get { return _s2c_sceneUseAgent; }
  968. set { _s2c_sceneUseAgent = value; }
  969. }
  970. private int _s2c_changePkType;
  971. /// <summary>
  972. /// 能否改变pk模式
  973. /// </summary>
  974. [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"s2c_changePkType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  975. public int s2c_changePkType
  976. {
  977. get { return _s2c_changePkType; }
  978. set { _s2c_changePkType = value; }
  979. }
  980. private int _s2c_rideMount;
  981. /// <summary>
  982. /// 能否骑马
  983. /// </summary>
  984. [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"s2c_rideMount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  985. public int s2c_rideMount
  986. {
  987. get { return _s2c_rideMount; }
  988. set { _s2c_rideMount = value; }
  989. }
  990. private string _s2c_instanceId;
  991. /// <summary>
  992. /// 场景实例id
  993. /// </summary>
  994. [global::ProtoBuf.ProtoMember(8, IsRequired = true, Name=@"s2c_instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  995. public string s2c_instanceId
  996. {
  997. get { return _s2c_instanceId; }
  998. set { _s2c_instanceId = value; }
  999. }
  1000. private bool _s2c_isCross = default(bool);
  1001. /// <summary>
  1002. /// 是否是跨服(false:不是跨服)
  1003. /// </summary>
  1004. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"s2c_isCross", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1005. [global::System.ComponentModel.DefaultValue(default(bool))]
  1006. public bool s2c_isCross
  1007. {
  1008. get { return _s2c_isCross; }
  1009. set { _s2c_isCross = value; }
  1010. }
  1011. private global::ProtoBuf.IExtension extensionObject;
  1012. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1013. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1014. }
  1015. //---------------------------------------------------------------------------------------
  1016. /// <summary>
  1017. /// pk相关
  1018. /// </summary>
  1019. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangPkModelRequest")]
  1020. public partial class ChangPkModelRequest : global::ProtoBuf.IExtensible
  1021. {
  1022. public ChangPkModelRequest() {}
  1023. private int _c2s_model;
  1024. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_model", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1025. public int c2s_model
  1026. {
  1027. get { return _c2s_model; }
  1028. set { _c2s_model = value; }
  1029. }
  1030. private global::ProtoBuf.IExtension extensionObject;
  1031. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1032. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1033. }
  1034. //---------------------------------------------------------------------------------------
  1035. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ChangPkModelRespone")]
  1036. public partial class ChangPkModelRespone : global::ProtoBuf.IExtensible
  1037. {
  1038. public ChangPkModelRespone() {}
  1039. private int _s2c_code;
  1040. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1041. public int s2c_code
  1042. {
  1043. get { return _s2c_code; }
  1044. set { _s2c_code = value; }
  1045. }
  1046. private string _s2c_msg = "";
  1047. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1048. [global::System.ComponentModel.DefaultValue("")]
  1049. public string s2c_msg
  1050. {
  1051. get { return _s2c_msg; }
  1052. set { _s2c_msg = value; }
  1053. }
  1054. private int _s2c_currentModel = default(int);
  1055. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_currentModel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1056. [global::System.ComponentModel.DefaultValue(default(int))]
  1057. public int s2c_currentModel
  1058. {
  1059. get { return _s2c_currentModel; }
  1060. set { _s2c_currentModel = value; }
  1061. }
  1062. private global::ProtoBuf.IExtension extensionObject;
  1063. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1064. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1065. }
  1066. //---------------------------------------------------------------------------------------
  1067. /// <summary>
  1068. /// 复活相关 发送坐标
  1069. /// </summary>
  1070. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReliveSendPosRequest")]
  1071. public partial class ReliveSendPosRequest : global::ProtoBuf.IExtensible
  1072. {
  1073. public ReliveSendPosRequest() {}
  1074. private global::ProtoBuf.IExtension extensionObject;
  1075. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1076. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1077. }
  1078. //---------------------------------------------------------------------------------------
  1079. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReliveSendPosResponse")]
  1080. public partial class ReliveSendPosResponse : global::ProtoBuf.IExtensible
  1081. {
  1082. public ReliveSendPosResponse() {}
  1083. private int _s2c_code;
  1084. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1085. public int s2c_code
  1086. {
  1087. get { return _s2c_code; }
  1088. set { _s2c_code = value; }
  1089. }
  1090. private string _s2c_msg = "";
  1091. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1092. [global::System.ComponentModel.DefaultValue("")]
  1093. public string s2c_msg
  1094. {
  1095. get { return _s2c_msg; }
  1096. set { _s2c_msg = value; }
  1097. }
  1098. private global::ProtoBuf.IExtension extensionObject;
  1099. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1100. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1101. }
  1102. //---------------------------------------------------------------------------------------
  1103. /// <summary>
  1104. /// 复活 message ReliveRequest { required int32 type = 1; // 0, 复活点复活,1/2原地复活(2情况时钻石不足,就自动复活点复活) optional int32 autoPay = 2; // 1:付费不再弹框 } 复活
  1105. /// </summary>
  1106. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReliveRequest")]
  1107. public partial class ReliveRequest : global::ProtoBuf.IExtensible
  1108. {
  1109. public ReliveRequest() {}
  1110. private int _type;
  1111. /// <summary>
  1112. /// 0:复活至玩家进图前位置(效果类似与退出副本);1:原地复活;2:出生点复活(安全复活);3:复活点复活(主城六道轮回复活)
  1113. /// </summary>
  1114. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1115. public int type
  1116. {
  1117. get { return _type; }
  1118. set { _type = value; }
  1119. }
  1120. private global::ProtoBuf.IExtension extensionObject;
  1121. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1122. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1123. }
  1124. //---------------------------------------------------------------------------------------
  1125. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ReliveResponse")]
  1126. public partial class ReliveResponse : global::ProtoBuf.IExtensible
  1127. {
  1128. public ReliveResponse() {}
  1129. private int _s2c_code;
  1130. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1131. public int s2c_code
  1132. {
  1133. get { return _s2c_code; }
  1134. set { _s2c_code = value; }
  1135. }
  1136. private string _s2c_msg = "";
  1137. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1138. [global::System.ComponentModel.DefaultValue("")]
  1139. public string s2c_msg
  1140. {
  1141. get { return _s2c_msg; }
  1142. set { _s2c_msg = value; }
  1143. }
  1144. private global::ProtoBuf.IExtension extensionObject;
  1145. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1146. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1147. }
  1148. //---------------------------------------------------------------------------------------
  1149. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetAreaLinesRequest")]
  1150. public partial class GetAreaLinesRequest : global::ProtoBuf.IExtensible
  1151. {
  1152. public GetAreaLinesRequest() {}
  1153. private global::ProtoBuf.IExtension extensionObject;
  1154. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1155. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1156. }
  1157. //---------------------------------------------------------------------------------------
  1158. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AreaLineData")]
  1159. public partial class AreaLineData : global::ProtoBuf.IExtensible
  1160. {
  1161. public AreaLineData() {}
  1162. private string _instanceId;
  1163. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1164. public string instanceId
  1165. {
  1166. get { return _instanceId; }
  1167. set { _instanceId = value; }
  1168. }
  1169. private int _state;
  1170. /// <summary>
  1171. /// 0 空闲 1 繁忙 2爆满
  1172. /// </summary>
  1173. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1174. public int state
  1175. {
  1176. get { return _state; }
  1177. set { _state = value; }
  1178. }
  1179. private int _index;
  1180. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1181. public int index
  1182. {
  1183. get { return _index; }
  1184. set { _index = value; }
  1185. }
  1186. private global::ProtoBuf.IExtension extensionObject;
  1187. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1188. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1189. }
  1190. //---------------------------------------------------------------------------------------
  1191. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetAreaLinesResponse")]
  1192. public partial class GetAreaLinesResponse : global::ProtoBuf.IExtensible
  1193. {
  1194. public GetAreaLinesResponse() {}
  1195. private int _s2c_code;
  1196. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1197. public int s2c_code
  1198. {
  1199. get { return _s2c_code; }
  1200. set { _s2c_code = value; }
  1201. }
  1202. private string _s2c_msg = "";
  1203. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1204. [global::System.ComponentModel.DefaultValue("")]
  1205. public string s2c_msg
  1206. {
  1207. get { return _s2c_msg; }
  1208. set { _s2c_msg = value; }
  1209. }
  1210. private readonly global::System.Collections.Generic.List<pomelo.area.AreaLineData> _s2c_data = new global::System.Collections.Generic.List<pomelo.area.AreaLineData>();
  1211. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1212. public global::System.Collections.Generic.List<pomelo.area.AreaLineData> s2c_data
  1213. {
  1214. get { return _s2c_data; }
  1215. }
  1216. private global::ProtoBuf.IExtension extensionObject;
  1217. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1218. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1219. }
  1220. //---------------------------------------------------------------------------------------
  1221. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LookUpOtherPlayerRequest")]
  1222. public partial class LookUpOtherPlayerRequest : global::ProtoBuf.IExtensible
  1223. {
  1224. public LookUpOtherPlayerRequest() {}
  1225. private string _c2s_playerId;
  1226. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1227. public string c2s_playerId
  1228. {
  1229. get { return _c2s_playerId; }
  1230. set { _c2s_playerId = value; }
  1231. }
  1232. private int _c2s_type;
  1233. /// <summary>
  1234. /// 1-人物属性 2-战力属性
  1235. /// </summary>
  1236. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1237. public int c2s_type
  1238. {
  1239. get { return _c2s_type; }
  1240. set { _c2s_type = value; }
  1241. }
  1242. private int _c2s_serverId = default(int);
  1243. /// <summary>
  1244. /// 人物的serverid带过来
  1245. /// </summary>
  1246. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"c2s_serverId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1247. [global::System.ComponentModel.DefaultValue(default(int))]
  1248. public int c2s_serverId
  1249. {
  1250. get { return _c2s_serverId; }
  1251. set { _c2s_serverId = value; }
  1252. }
  1253. private global::ProtoBuf.IExtension extensionObject;
  1254. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1255. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1256. }
  1257. //---------------------------------------------------------------------------------------
  1258. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LookUpOtherPlayerResponse")]
  1259. public partial class LookUpOtherPlayerResponse : global::ProtoBuf.IExtensible
  1260. {
  1261. public LookUpOtherPlayerResponse() {}
  1262. private int _s2c_code;
  1263. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1264. public int s2c_code
  1265. {
  1266. get { return _s2c_code; }
  1267. set { _s2c_code = value; }
  1268. }
  1269. private string _s2c_msg = "";
  1270. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1271. [global::System.ComponentModel.DefaultValue("")]
  1272. public string s2c_msg
  1273. {
  1274. get { return _s2c_msg; }
  1275. set { _s2c_msg = value; }
  1276. }
  1277. private pomelo.player.LookUpPlayer _s2c_data = null;
  1278. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1279. [global::System.ComponentModel.DefaultValue(null)]
  1280. public pomelo.player.LookUpPlayer s2c_data
  1281. {
  1282. get { return _s2c_data; }
  1283. set { _s2c_data = value; }
  1284. }
  1285. private readonly global::System.Collections.Generic.List<pomelo.AttributeSimple> _meAttrs = new global::System.Collections.Generic.List<pomelo.AttributeSimple>();
  1286. /// <summary>
  1287. /// 自己的战斗属性
  1288. /// </summary>
  1289. [global::ProtoBuf.ProtoMember(21, Name=@"meAttrs", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1290. public global::System.Collections.Generic.List<pomelo.AttributeSimple> meAttrs
  1291. {
  1292. get { return _meAttrs; }
  1293. }
  1294. private global::ProtoBuf.IExtension extensionObject;
  1295. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1296. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1297. }
  1298. //---------------------------------------------------------------------------------------
  1299. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AgreeRebirthRequest")]
  1300. public partial class AgreeRebirthRequest : global::ProtoBuf.IExtensible
  1301. {
  1302. public AgreeRebirthRequest() {}
  1303. private global::ProtoBuf.IExtension extensionObject;
  1304. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1305. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1306. }
  1307. //---------------------------------------------------------------------------------------
  1308. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AgreeRebirthResponse")]
  1309. public partial class AgreeRebirthResponse : global::ProtoBuf.IExtensible
  1310. {
  1311. public AgreeRebirthResponse() {}
  1312. private int _s2c_code;
  1313. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1314. public int s2c_code
  1315. {
  1316. get { return _s2c_code; }
  1317. set { _s2c_code = value; }
  1318. }
  1319. private string _s2c_msg = "";
  1320. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1321. [global::System.ComponentModel.DefaultValue("")]
  1322. public string s2c_msg
  1323. {
  1324. get { return _s2c_msg; }
  1325. set { _s2c_msg = value; }
  1326. }
  1327. private global::ProtoBuf.IExtension extensionObject;
  1328. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1329. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1330. }
  1331. //---------------------------------------------------------------------------------------
  1332. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CDKRequest")]
  1333. public partial class CDKRequest : global::ProtoBuf.IExtensible
  1334. {
  1335. public CDKRequest() {}
  1336. private string _c2s_cdk;
  1337. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_cdk", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1338. public string c2s_cdk
  1339. {
  1340. get { return _c2s_cdk; }
  1341. set { _c2s_cdk = value; }
  1342. }
  1343. private int _c2s_channel;
  1344. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_channel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1345. public int c2s_channel
  1346. {
  1347. get { return _c2s_channel; }
  1348. set { _c2s_channel = value; }
  1349. }
  1350. private global::ProtoBuf.IExtension extensionObject;
  1351. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1352. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1353. }
  1354. //---------------------------------------------------------------------------------------
  1355. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CDKResponse")]
  1356. public partial class CDKResponse : global::ProtoBuf.IExtensible
  1357. {
  1358. public CDKResponse() {}
  1359. private int _s2c_code;
  1360. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1361. public int s2c_code
  1362. {
  1363. get { return _s2c_code; }
  1364. set { _s2c_code = value; }
  1365. }
  1366. private string _s2c_msg = "";
  1367. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1368. [global::System.ComponentModel.DefaultValue("")]
  1369. public string s2c_msg
  1370. {
  1371. get { return _s2c_msg; }
  1372. set { _s2c_msg = value; }
  1373. }
  1374. private global::ProtoBuf.IExtension extensionObject;
  1375. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1376. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1377. }
  1378. //---------------------------------------------------------------------------------------
  1379. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransportRequest")]
  1380. public partial class TransportRequest : global::ProtoBuf.IExtensible
  1381. {
  1382. public TransportRequest() {}
  1383. private int _c2s_transportId;
  1384. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_transportId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1385. public int c2s_transportId
  1386. {
  1387. get { return _c2s_transportId; }
  1388. set { _c2s_transportId = value; }
  1389. }
  1390. private global::ProtoBuf.IExtension extensionObject;
  1391. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1392. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1393. }
  1394. //---------------------------------------------------------------------------------------
  1395. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"TransportResponse")]
  1396. public partial class TransportResponse : global::ProtoBuf.IExtensible
  1397. {
  1398. public TransportResponse() {}
  1399. private int _s2c_code;
  1400. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1401. public int s2c_code
  1402. {
  1403. get { return _s2c_code; }
  1404. set { _s2c_code = value; }
  1405. }
  1406. private string _s2c_msg = "";
  1407. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1408. [global::System.ComponentModel.DefaultValue("")]
  1409. public string s2c_msg
  1410. {
  1411. get { return _s2c_msg; }
  1412. set { _s2c_msg = value; }
  1413. }
  1414. private global::ProtoBuf.IExtension extensionObject;
  1415. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1416. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1417. }
  1418. //---------------------------------------------------------------------------------------
  1419. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CustomConfigRequest")]
  1420. public partial class CustomConfigRequest : global::ProtoBuf.IExtensible
  1421. {
  1422. public CustomConfigRequest() {}
  1423. private string _c2s_key;
  1424. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_key", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1425. public string c2s_key
  1426. {
  1427. get { return _c2s_key; }
  1428. set { _c2s_key = value; }
  1429. }
  1430. private string _c2s_value;
  1431. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1432. public string c2s_value
  1433. {
  1434. get { return _c2s_value; }
  1435. set { _c2s_value = value; }
  1436. }
  1437. private global::ProtoBuf.IExtension extensionObject;
  1438. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1439. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1440. }
  1441. //---------------------------------------------------------------------------------------
  1442. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CustomConfigResponse")]
  1443. public partial class CustomConfigResponse : global::ProtoBuf.IExtensible
  1444. {
  1445. public CustomConfigResponse() {}
  1446. private int _s2c_code;
  1447. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1448. public int s2c_code
  1449. {
  1450. get { return _s2c_code; }
  1451. set { _s2c_code = value; }
  1452. }
  1453. private string _s2c_msg = "";
  1454. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1455. [global::System.ComponentModel.DefaultValue("")]
  1456. public string s2c_msg
  1457. {
  1458. get { return _s2c_msg; }
  1459. set { _s2c_msg = value; }
  1460. }
  1461. private global::ProtoBuf.IExtension extensionObject;
  1462. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1463. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1464. }
  1465. //---------------------------------------------------------------------------------------
  1466. /// <summary>
  1467. /// message AgoraDynamicKeyRequest{ required string c2s_channelName = 1; optional int32 c2s_uid = 2; } message AgoraDynamicKeyResponse{ required int32 s2c_code = 1; optional string s2c_msg = 2; required string s2c_key = 3; required string s2c_channelName = 4; optional int32 s2c_uid = 5; }
  1468. /// </summary>
  1469. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SimulateDropByTcRequest")]
  1470. public partial class SimulateDropByTcRequest : global::ProtoBuf.IExtensible
  1471. {
  1472. public SimulateDropByTcRequest() {}
  1473. private string _c2s_tcCode;
  1474. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_tcCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1475. public string c2s_tcCode
  1476. {
  1477. get { return _c2s_tcCode; }
  1478. set { _c2s_tcCode = value; }
  1479. }
  1480. private int _c2s_tcCount;
  1481. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_tcCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1482. public int c2s_tcCount
  1483. {
  1484. get { return _c2s_tcCount; }
  1485. set { _c2s_tcCount = value; }
  1486. }
  1487. private int _c2s_tcLevel;
  1488. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_tcLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1489. public int c2s_tcLevel
  1490. {
  1491. get { return _c2s_tcLevel; }
  1492. set { _c2s_tcLevel = value; }
  1493. }
  1494. private global::ProtoBuf.IExtension extensionObject;
  1495. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1496. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1497. }
  1498. //---------------------------------------------------------------------------------------
  1499. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SimulateDropByTcResponse")]
  1500. public partial class SimulateDropByTcResponse : global::ProtoBuf.IExtensible
  1501. {
  1502. public SimulateDropByTcResponse() {}
  1503. private int _s2c_code;
  1504. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1505. public int s2c_code
  1506. {
  1507. get { return _s2c_code; }
  1508. set { _s2c_code = value; }
  1509. }
  1510. private string _s2c_msg = "";
  1511. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1512. [global::System.ComponentModel.DefaultValue("")]
  1513. public string s2c_msg
  1514. {
  1515. get { return _s2c_msg; }
  1516. set { _s2c_msg = value; }
  1517. }
  1518. private int _s2c_runNum = default(int);
  1519. /// <summary>
  1520. /// 执行成功次数
  1521. /// </summary>
  1522. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_runNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1523. [global::System.ComponentModel.DefaultValue(default(int))]
  1524. public int s2c_runNum
  1525. {
  1526. get { return _s2c_runNum; }
  1527. set { _s2c_runNum = value; }
  1528. }
  1529. private int _s2c_succPer = default(int);
  1530. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_succPer", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1531. [global::System.ComponentModel.DefaultValue(default(int))]
  1532. public int s2c_succPer
  1533. {
  1534. get { return _s2c_succPer; }
  1535. set { _s2c_succPer = value; }
  1536. }
  1537. private global::ProtoBuf.IExtension extensionObject;
  1538. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1539. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1540. }
  1541. //---------------------------------------------------------------------------------------
  1542. /// <summary>
  1543. /// message GotoProcessRequest{ required string s2c_id = 1; } message GotoProcessResponse{ required int32 s2c_code = 1; optional string s2c_msg = 2; }
  1544. /// </summary>
  1545. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetPlayerPositionRequest")]
  1546. public partial class GetPlayerPositionRequest : global::ProtoBuf.IExtensible
  1547. {
  1548. public GetPlayerPositionRequest() {}
  1549. private string _s2c_playerId;
  1550. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_playerId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1551. public string s2c_playerId
  1552. {
  1553. get { return _s2c_playerId; }
  1554. set { _s2c_playerId = value; }
  1555. }
  1556. private global::ProtoBuf.IExtension extensionObject;
  1557. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1558. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1559. }
  1560. //---------------------------------------------------------------------------------------
  1561. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetPlayerPositionResponse")]
  1562. public partial class GetPlayerPositionResponse : global::ProtoBuf.IExtensible
  1563. {
  1564. public GetPlayerPositionResponse() {}
  1565. private int _s2c_code;
  1566. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1567. public int s2c_code
  1568. {
  1569. get { return _s2c_code; }
  1570. set { _s2c_code = value; }
  1571. }
  1572. private string _s2c_msg = "";
  1573. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1574. [global::System.ComponentModel.DefaultValue("")]
  1575. public string s2c_msg
  1576. {
  1577. get { return _s2c_msg; }
  1578. set { _s2c_msg = value; }
  1579. }
  1580. private int _s2c_areaId = default(int);
  1581. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1582. [global::System.ComponentModel.DefaultValue(default(int))]
  1583. public int s2c_areaId
  1584. {
  1585. get { return _s2c_areaId; }
  1586. set { _s2c_areaId = value; }
  1587. }
  1588. private int _s2c_templateID = default(int);
  1589. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_templateID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1590. [global::System.ComponentModel.DefaultValue(default(int))]
  1591. public int s2c_templateID
  1592. {
  1593. get { return _s2c_templateID; }
  1594. set { _s2c_templateID = value; }
  1595. }
  1596. private string _s2c_instanceId = "";
  1597. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"s2c_instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1598. [global::System.ComponentModel.DefaultValue("")]
  1599. public string s2c_instanceId
  1600. {
  1601. get { return _s2c_instanceId; }
  1602. set { _s2c_instanceId = value; }
  1603. }
  1604. private int _s2c_targetX = default(int);
  1605. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"s2c_targetX", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1606. [global::System.ComponentModel.DefaultValue(default(int))]
  1607. public int s2c_targetX
  1608. {
  1609. get { return _s2c_targetX; }
  1610. set { _s2c_targetX = value; }
  1611. }
  1612. private int _s2c_targetY = default(int);
  1613. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"s2c_targetY", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1614. [global::System.ComponentModel.DefaultValue(default(int))]
  1615. public int s2c_targetY
  1616. {
  1617. get { return _s2c_targetY; }
  1618. set { _s2c_targetY = value; }
  1619. }
  1620. private global::ProtoBuf.IExtension extensionObject;
  1621. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1622. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1623. }
  1624. //---------------------------------------------------------------------------------------
  1625. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetClassEventConditionRequest")]
  1626. public partial class GetClassEventConditionRequest : global::ProtoBuf.IExtensible
  1627. {
  1628. public GetClassEventConditionRequest() {}
  1629. private global::ProtoBuf.IExtension extensionObject;
  1630. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1631. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1632. }
  1633. //---------------------------------------------------------------------------------------
  1634. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetClassEventConditionResponse")]
  1635. public partial class GetClassEventConditionResponse : global::ProtoBuf.IExtensible
  1636. {
  1637. public GetClassEventConditionResponse() {}
  1638. private int _s2c_code;
  1639. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1640. public int s2c_code
  1641. {
  1642. get { return _s2c_code; }
  1643. set { _s2c_code = value; }
  1644. }
  1645. private string _s2c_msg = "";
  1646. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1647. [global::System.ComponentModel.DefaultValue("")]
  1648. public string s2c_msg
  1649. {
  1650. get { return _s2c_msg; }
  1651. set { _s2c_msg = value; }
  1652. }
  1653. private int _s2c_flag = default(int);
  1654. /// <summary>
  1655. /// 1表示满足
  1656. /// </summary>
  1657. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_flag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1658. [global::System.ComponentModel.DefaultValue(default(int))]
  1659. public int s2c_flag
  1660. {
  1661. get { return _s2c_flag; }
  1662. set { _s2c_flag = value; }
  1663. }
  1664. private global::ProtoBuf.IExtension extensionObject;
  1665. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1666. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1667. }
  1668. //---------------------------------------------------------------------------------------
  1669. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PayGiftStatePush")]
  1670. public partial class PayGiftStatePush : global::ProtoBuf.IExtensible
  1671. {
  1672. public PayGiftStatePush() {}
  1673. private global::ProtoBuf.IExtension extensionObject;
  1674. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1675. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1676. }
  1677. //---------------------------------------------------------------------------------------
  1678. /// <summary>
  1679. /// 客户端首次资源加载好了
  1680. /// </summary>
  1681. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ClientReadyRequest")]
  1682. public partial class ClientReadyRequest : global::ProtoBuf.IExtensible
  1683. {
  1684. public ClientReadyRequest() {}
  1685. private global::ProtoBuf.IExtension extensionObject;
  1686. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1687. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1688. }
  1689. //---------------------------------------------------------------------------------------
  1690. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ClientReadyResponse")]
  1691. public partial class ClientReadyResponse : global::ProtoBuf.IExtensible
  1692. {
  1693. public ClientReadyResponse() {}
  1694. private int _s2c_code;
  1695. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1696. public int s2c_code
  1697. {
  1698. get { return _s2c_code; }
  1699. set { _s2c_code = value; }
  1700. }
  1701. private string _s2c_msg = "";
  1702. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1703. [global::System.ComponentModel.DefaultValue("")]
  1704. public string s2c_msg
  1705. {
  1706. get { return _s2c_msg; }
  1707. set { _s2c_msg = value; }
  1708. }
  1709. private global::ProtoBuf.IExtension extensionObject;
  1710. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1711. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1712. }
  1713. //---------------------------------------------------------------------------------------
  1714. /// <summary>
  1715. /// message Request { required string id = 1; required int32 type = 2; required string fromPlayerId = 3; required string fromPlayerName = 4; }
  1716. /// </summary>
  1717. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerDynamicPush")]
  1718. public partial class PlayerDynamicPush : global::ProtoBuf.IExtensible
  1719. {
  1720. public PlayerDynamicPush() {}
  1721. private readonly global::System.Collections.Generic.List<pomelo.PropertyStruct> _s2c_data = new global::System.Collections.Generic.List<pomelo.PropertyStruct>();
  1722. [global::ProtoBuf.ProtoMember(2, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1723. public global::System.Collections.Generic.List<pomelo.PropertyStruct> s2c_data
  1724. {
  1725. get { return _s2c_data; }
  1726. }
  1727. private global::ProtoBuf.IExtension extensionObject;
  1728. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1729. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1730. }
  1731. //---------------------------------------------------------------------------------------
  1732. /// <summary>
  1733. /// message PlayerNewRequestPush { required int32 s2c_code = 1; required Request s2c_data = 2; }
  1734. /// </summary>
  1735. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerRelivePush")]
  1736. public partial class PlayerRelivePush : global::ProtoBuf.IExtensible
  1737. {
  1738. public PlayerRelivePush() {}
  1739. private int _type;
  1740. /// <summary>
  1741. /// 1:复活;2:离开
  1742. /// </summary>
  1743. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1744. public int type
  1745. {
  1746. get { return _type; }
  1747. set { _type = value; }
  1748. }
  1749. private int _btn;
  1750. /// <summary>
  1751. /// 0:不显示,1:显示按钮可点,2:显示按钮不可点
  1752. /// </summary>
  1753. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"btn", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1754. public int btn
  1755. {
  1756. get { return _btn; }
  1757. set { _btn = value; }
  1758. }
  1759. private int _countDown;
  1760. /// <summary>
  1761. /// 倒计时
  1762. /// </summary>
  1763. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"countDown", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1764. public int countDown
  1765. {
  1766. get { return _countDown; }
  1767. set { _countDown = value; }
  1768. }
  1769. private int _op;
  1770. /// <summary>
  1771. /// 0:强化项不可操作,1:强化项可操作
  1772. /// </summary>
  1773. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"op", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1774. public int op
  1775. {
  1776. get { return _op; }
  1777. set { _op = value; }
  1778. }
  1779. private int _cbType;
  1780. /// <summary>
  1781. /// 0:关闭面板,显示可重新打开的按钮,1:发送复活,2:发送离开
  1782. /// </summary>
  1783. [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"cbType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1784. public int cbType
  1785. {
  1786. get { return _cbType; }
  1787. set { _cbType = value; }
  1788. }
  1789. private int _currCount = default(int);
  1790. /// <summary>
  1791. /// 立即复活剩余次数
  1792. /// </summary>
  1793. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"currCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1794. [global::System.ComponentModel.DefaultValue(default(int))]
  1795. public int currCount
  1796. {
  1797. get { return _currCount; }
  1798. set { _currCount = value; }
  1799. }
  1800. private int _totalCount = default(int);
  1801. /// <summary>
  1802. /// 立即复活总次数
  1803. /// </summary>
  1804. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"totalCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1805. [global::System.ComponentModel.DefaultValue(default(int))]
  1806. public int totalCount
  1807. {
  1808. get { return _totalCount; }
  1809. set { _totalCount = value; }
  1810. }
  1811. private int _cooltime = default(int);
  1812. /// <summary>
  1813. /// 复活冷却时间
  1814. /// </summary>
  1815. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"cooltime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1816. [global::System.ComponentModel.DefaultValue(default(int))]
  1817. public int cooltime
  1818. {
  1819. get { return _cooltime; }
  1820. set { _cooltime = value; }
  1821. }
  1822. private string _costStr = "";
  1823. /// <summary>
  1824. /// 立即复活消耗
  1825. /// </summary>
  1826. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"costStr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1827. [global::System.ComponentModel.DefaultValue("")]
  1828. public string costStr
  1829. {
  1830. get { return _costStr; }
  1831. set { _costStr = value; }
  1832. }
  1833. private int _payConfirm = default(int);
  1834. /// <summary>
  1835. /// 1:付费弹框确认
  1836. /// </summary>
  1837. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"payConfirm", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1838. [global::System.ComponentModel.DefaultValue(default(int))]
  1839. public int payConfirm
  1840. {
  1841. get { return _payConfirm; }
  1842. set { _payConfirm = value; }
  1843. }
  1844. private int _btnSafe = default(int);
  1845. /// <summary>
  1846. /// 1:显示安全复活按钮
  1847. /// </summary>
  1848. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"btnSafe", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1849. [global::System.ComponentModel.DefaultValue(default(int))]
  1850. public int btnSafe
  1851. {
  1852. get { return _btnSafe; }
  1853. set { _btnSafe = value; }
  1854. }
  1855. private int _btnCity = default(int);
  1856. /// <summary>
  1857. /// 1:显示回城复活按钮
  1858. /// </summary>
  1859. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"btnCity", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1860. [global::System.ComponentModel.DefaultValue(default(int))]
  1861. public int btnCity
  1862. {
  1863. get { return _btnCity; }
  1864. set { _btnCity = value; }
  1865. }
  1866. private int _btnCurr = default(int);
  1867. /// <summary>
  1868. /// 1:显示立即复活按钮
  1869. /// </summary>
  1870. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"btnCurr", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1871. [global::System.ComponentModel.DefaultValue(default(int))]
  1872. public int btnCurr
  1873. {
  1874. get { return _btnCurr; }
  1875. set { _btnCurr = value; }
  1876. }
  1877. private int _reliveFlg = default(int);
  1878. /// <summary>
  1879. /// 复活标记,0-正常显示面板,1-不显示面板,只显示时间(PVP), 2.封神战死亡
  1880. /// </summary>
  1881. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"reliveFlg", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1882. [global::System.ComponentModel.DefaultValue(default(int))]
  1883. public int reliveFlg
  1884. {
  1885. get { return _reliveFlg; }
  1886. set { _reliveFlg = value; }
  1887. }
  1888. private pomelo.player.PlayerBasicExt _attackInfo = null;
  1889. /// <summary>
  1890. /// reliveFlg=pvp时,用于显示击杀的玩家信息
  1891. /// </summary>
  1892. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"attackInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1893. [global::System.ComponentModel.DefaultValue(null)]
  1894. public pomelo.player.PlayerBasicExt attackInfo
  1895. {
  1896. get { return _attackInfo; }
  1897. set { _attackInfo = value; }
  1898. }
  1899. private global::ProtoBuf.IExtension extensionObject;
  1900. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1901. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1902. }
  1903. //---------------------------------------------------------------------------------------
  1904. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerSaverRebirthPush")]
  1905. public partial class PlayerSaverRebirthPush : global::ProtoBuf.IExtensible
  1906. {
  1907. public PlayerSaverRebirthPush() {}
  1908. private string _saverName;
  1909. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"saverName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1910. public string saverName
  1911. {
  1912. get { return _saverName; }
  1913. set { _saverName = value; }
  1914. }
  1915. private global::ProtoBuf.IExtension extensionObject;
  1916. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1917. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1918. }
  1919. //---------------------------------------------------------------------------------------
  1920. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SimulateDataPush")]
  1921. public partial class SimulateDataPush : global::ProtoBuf.IExtensible
  1922. {
  1923. public SimulateDataPush() {}
  1924. private readonly global::System.Collections.Generic.List<pomelo.item.MiniItem> _s2c_items = new global::System.Collections.Generic.List<pomelo.item.MiniItem>();
  1925. [global::ProtoBuf.ProtoMember(2, Name=@"s2c_items", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1926. public global::System.Collections.Generic.List<pomelo.item.MiniItem> s2c_items
  1927. {
  1928. get { return _s2c_items; }
  1929. }
  1930. private global::ProtoBuf.IExtension extensionObject;
  1931. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1932. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1933. }
  1934. //---------------------------------------------------------------------------------------
  1935. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ClientConfigPush")]
  1936. public partial class ClientConfigPush : global::ProtoBuf.IExtensible
  1937. {
  1938. public ClientConfigPush() {}
  1939. private string _s2c_key;
  1940. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_key", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1941. public string s2c_key
  1942. {
  1943. get { return _s2c_key; }
  1944. set { _s2c_key = value; }
  1945. }
  1946. private string _s2c_value;
  1947. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_value", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1948. public string s2c_value
  1949. {
  1950. get { return _s2c_value; }
  1951. set { _s2c_value = value; }
  1952. }
  1953. private global::ProtoBuf.IExtension extensionObject;
  1954. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1955. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1956. }
  1957. //---------------------------------------------------------------------------------------
  1958. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KickPlayerPush")]
  1959. public partial class KickPlayerPush : global::ProtoBuf.IExtensible
  1960. {
  1961. public KickPlayerPush() {}
  1962. private int _s2c_reasonType;
  1963. /// <summary>
  1964. /// 1:被顶号,2:服务器维护 ,3:逻辑错误,4:GM踢人 除此之外(s2c_reasonType>= 1000 notice表格,s2c_msg有参数,需要处理)
  1965. /// </summary>
  1966. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_reasonType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1967. public int s2c_reasonType
  1968. {
  1969. get { return _s2c_reasonType; }
  1970. set { _s2c_reasonType = value; }
  1971. }
  1972. private string _s2c_msg = "";
  1973. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1974. [global::System.ComponentModel.DefaultValue("")]
  1975. public string s2c_msg
  1976. {
  1977. get { return _s2c_msg; }
  1978. set { _s2c_msg = value; }
  1979. }
  1980. private global::ProtoBuf.IExtension extensionObject;
  1981. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1982. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1983. }
  1984. //---------------------------------------------------------------------------------------
  1985. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CommonProperty")]
  1986. public partial class CommonProperty : global::ProtoBuf.IExtensible
  1987. {
  1988. public CommonProperty() {}
  1989. private string _attrName;
  1990. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"attrName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1991. public string attrName
  1992. {
  1993. get { return _attrName; }
  1994. set { _attrName = value; }
  1995. }
  1996. private int _value;
  1997. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1998. public int value
  1999. {
  2000. get { return _value; }
  2001. set { _value = value; }
  2002. }
  2003. private int _isFormat;
  2004. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"isFormat", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2005. public int isFormat
  2006. {
  2007. get { return _isFormat; }
  2008. set { _isFormat = value; }
  2009. }
  2010. private global::ProtoBuf.IExtension extensionObject;
  2011. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2012. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2013. }
  2014. //---------------------------------------------------------------------------------------
  2015. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CommonPropertyPush")]
  2016. public partial class CommonPropertyPush : global::ProtoBuf.IExtensible
  2017. {
  2018. public CommonPropertyPush() {}
  2019. private int _s2c_type;
  2020. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2021. public int s2c_type
  2022. {
  2023. get { return _s2c_type; }
  2024. set { _s2c_type = value; }
  2025. }
  2026. private readonly global::System.Collections.Generic.List<pomelo.area.CommonProperty> _s2c_property = new global::System.Collections.Generic.List<pomelo.area.CommonProperty>();
  2027. [global::ProtoBuf.ProtoMember(3, Name=@"s2c_property", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2028. public global::System.Collections.Generic.List<pomelo.area.CommonProperty> s2c_property
  2029. {
  2030. get { return _s2c_property; }
  2031. }
  2032. private global::ProtoBuf.IExtension extensionObject;
  2033. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2034. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2035. }
  2036. //---------------------------------------------------------------------------------------
  2037. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SuitPropertyUpPush")]
  2038. public partial class SuitPropertyUpPush : global::ProtoBuf.IExtensible
  2039. {
  2040. public SuitPropertyUpPush() {}
  2041. private int _s2c_type;
  2042. /// <summary>
  2043. /// 1:主副手 2: 6件防具 3: 3件饰品
  2044. /// </summary>
  2045. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2046. public int s2c_type
  2047. {
  2048. get { return _s2c_type; }
  2049. set { _s2c_type = value; }
  2050. }
  2051. private string _s2c_msg;
  2052. [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2053. public string s2c_msg
  2054. {
  2055. get { return _s2c_msg; }
  2056. set { _s2c_msg = value; }
  2057. }
  2058. private readonly global::System.Collections.Generic.List<pomelo.area.CommonProperty> _s2c_property = new global::System.Collections.Generic.List<pomelo.area.CommonProperty>();
  2059. [global::ProtoBuf.ProtoMember(4, Name=@"s2c_property", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2060. public global::System.Collections.Generic.List<pomelo.area.CommonProperty> s2c_property
  2061. {
  2062. get { return _s2c_property; }
  2063. }
  2064. private global::ProtoBuf.IExtension extensionObject;
  2065. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2066. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2067. }
  2068. //---------------------------------------------------------------------------------------
  2069. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BuffInfo")]
  2070. public partial class BuffInfo : global::ProtoBuf.IExtensible
  2071. {
  2072. public BuffInfo() {}
  2073. private int _id = default(int);
  2074. /// <summary>
  2075. /// 属性id,
  2076. /// </summary>
  2077. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2078. [global::System.ComponentModel.DefaultValue(default(int))]
  2079. public int id
  2080. {
  2081. get { return _id; }
  2082. set { _id = value; }
  2083. }
  2084. private int _value = default(int);
  2085. /// <summary>
  2086. /// 属性值
  2087. /// </summary>
  2088. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"value", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2089. [global::System.ComponentModel.DefaultValue(default(int))]
  2090. public int value
  2091. {
  2092. get { return _value; }
  2093. set { _value = value; }
  2094. }
  2095. private int _isFormat = default(int);
  2096. /// <summary>
  2097. /// 是否是万分比
  2098. /// </summary>
  2099. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isFormat", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2100. [global::System.ComponentModel.DefaultValue(default(int))]
  2101. public int isFormat
  2102. {
  2103. get { return _isFormat; }
  2104. set { _isFormat = value; }
  2105. }
  2106. private int _expireTime = default(int);
  2107. /// <summary>
  2108. /// 到期时间戳秒
  2109. /// </summary>
  2110. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"expireTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2111. [global::System.ComponentModel.DefaultValue(default(int))]
  2112. public int expireTime
  2113. {
  2114. get { return _expireTime; }
  2115. set { _expireTime = value; }
  2116. }
  2117. private global::ProtoBuf.IExtension extensionObject;
  2118. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2119. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2120. }
  2121. //---------------------------------------------------------------------------------------
  2122. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BuffPropertyPush")]
  2123. public partial class BuffPropertyPush : global::ProtoBuf.IExtensible
  2124. {
  2125. public BuffPropertyPush() {}
  2126. private readonly global::System.Collections.Generic.List<pomelo.area.BuffInfo> _buffList = new global::System.Collections.Generic.List<pomelo.area.BuffInfo>();
  2127. /// <summary>
  2128. /// buff列表
  2129. /// </summary>
  2130. [global::ProtoBuf.ProtoMember(3, Name=@"buffList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2131. public global::System.Collections.Generic.List<pomelo.area.BuffInfo> buffList
  2132. {
  2133. get { return _buffList; }
  2134. }
  2135. private global::ProtoBuf.IExtension extensionObject;
  2136. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2137. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2138. }
  2139. //---------------------------------------------------------------------------------------
  2140. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerBattleAttributePush")]
  2141. public partial class PlayerBattleAttributePush : global::ProtoBuf.IExtensible
  2142. {
  2143. public PlayerBattleAttributePush() {}
  2144. private readonly global::System.Collections.Generic.List<pomelo.AttributeSimple> _datas = new global::System.Collections.Generic.List<pomelo.AttributeSimple>();
  2145. [global::ProtoBuf.ProtoMember(2, Name=@"datas", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2146. public global::System.Collections.Generic.List<pomelo.AttributeSimple> datas
  2147. {
  2148. get { return _datas; }
  2149. }
  2150. private global::ProtoBuf.IExtension extensionObject;
  2151. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2152. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2153. }
  2154. //---------------------------------------------------------------------------------------
  2155. /// <summary>
  2156. /// 发送GM命令请求
  2157. /// </summary>
  2158. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SendGMCmdRequest")]
  2159. public partial class SendGMCmdRequest : global::ProtoBuf.IExtensible
  2160. {
  2161. public SendGMCmdRequest() {}
  2162. private string _c2s_msg;
  2163. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2164. public string c2s_msg
  2165. {
  2166. get { return _c2s_msg; }
  2167. set { _c2s_msg = value; }
  2168. }
  2169. private global::ProtoBuf.IExtension extensionObject;
  2170. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2171. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2172. }
  2173. //---------------------------------------------------------------------------------------
  2174. /// <summary>
  2175. /// 发送GM命令返回
  2176. /// </summary>
  2177. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SendGMCmdResponse")]
  2178. public partial class SendGMCmdResponse : global::ProtoBuf.IExtensible
  2179. {
  2180. public SendGMCmdResponse() {}
  2181. private int _s2c_code;
  2182. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2183. public int s2c_code
  2184. {
  2185. get { return _s2c_code; }
  2186. set { _s2c_code = value; }
  2187. }
  2188. private string _s2c_msg = "";
  2189. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2190. [global::System.ComponentModel.DefaultValue("")]
  2191. public string s2c_msg
  2192. {
  2193. get { return _s2c_msg; }
  2194. set { _s2c_msg = value; }
  2195. }
  2196. private global::ProtoBuf.IExtension extensionObject;
  2197. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2198. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2199. }
  2200. //---------------------------------------------------------------------------------------
  2201. /// <summary>
  2202. /// 客户端提示消息推送, MSG_ClientNoticeMsg = 1111; //客户端提示消息推送
  2203. /// </summary>
  2204. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerNoticeMsgPush")]
  2205. public partial class PlayerNoticeMsgPush : global::ProtoBuf.IExtensible
  2206. {
  2207. public PlayerNoticeMsgPush() {}
  2208. private int _s2c_msgId = default(int);
  2209. /// <summary>
  2210. /// 消息id
  2211. /// </summary>
  2212. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"s2c_msgId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2213. [global::System.ComponentModel.DefaultValue(default(int))]
  2214. public int s2c_msgId
  2215. {
  2216. get { return _s2c_msgId; }
  2217. set { _s2c_msgId = value; }
  2218. }
  2219. private string _s2c_msg = "";
  2220. /// <summary>
  2221. /// 若s2c_msgId > 0,该字段存在,为带参数消息,参数格式:param1;param2;param3; || 若s2c_msgId == 600(WORLD_HORN),直接显示该字段
  2222. /// </summary>
  2223. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2224. [global::System.ComponentModel.DefaultValue("")]
  2225. public string s2c_msg
  2226. {
  2227. get { return _s2c_msg; }
  2228. set { _s2c_msg = value; }
  2229. }
  2230. private global::ProtoBuf.IExtension extensionObject;
  2231. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2232. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2233. }
  2234. //---------------------------------------------------------------------------------------
  2235. /// <summary>
  2236. /// 同地图传送遮罩时间, MSG_PLAYER_SAME_MAP_TRANS_PUSH = 1305;// 同地图传送
  2237. /// </summary>
  2238. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PlayerSameMapTransPush")]
  2239. public partial class PlayerSameMapTransPush : global::ProtoBuf.IExtensible
  2240. {
  2241. public PlayerSameMapTransPush() {}
  2242. private int _s2c_trans_time;
  2243. /// <summary>
  2244. /// s,传送遮罩或动作时间
  2245. /// </summary>
  2246. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_trans_time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2247. public int s2c_trans_time
  2248. {
  2249. get { return _s2c_trans_time; }
  2250. set { _s2c_trans_time = value; }
  2251. }
  2252. private global::ProtoBuf.IExtension extensionObject;
  2253. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2254. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2255. }
  2256. }