123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者= justsogo
- // * 创建时间= 2019-06-27
- // * 用途= 跨服场景
- // ***************************************************************************
- // Generated from: crossAreaHandlerExt.proto
- // Note: requires additional types generated from: common.proto
- // Note: requires additional types generated from: item.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 多服无名镇 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleResItem")]
- public partial class BattleResItem : global::ProtoBuf.IExtensible
- {
- public BattleResItem() {}
-
-
- private int _rank;
- /// <summary>
- /// 排名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"rank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int rank
- {
- get { return _rank; }
- set { _rank = value; }
- }
-
- private int _pro;
- /// <summary>
- /// 职业
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int pro
- {
- get { return _pro; }
- set { _pro = value; }
- }
-
- private string _name;
- /// <summary>
- /// 玩家名称
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private int _kills;
- /// <summary>
- /// 击杀数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int kills
- {
- get { return _kills; }
- set { _kills = value; }
- }
-
- private int _deads;
- /// <summary>
- /// 死亡数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"deads", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int deads
- {
- get { return _deads; }
- set { _deads = value; }
- }
-
- private int _pickEquipScore;
- /// <summary>
- /// 拾取装备评分之和
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"pickEquipScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int pickEquipScore
- {
- get { return _pickEquipScore; }
- set { _pickEquipScore = value; }
- }
-
- private int _sex = default(int);
- /// <summary>
- /// 性别
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int sex
- {
- get { return _sex; }
- set { _sex = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 多服无名镇结果推送, 1400
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilServerBattleResultPush")]
- public partial class MutilServerBattleResultPush : global::ProtoBuf.IExtensible
- {
- public MutilServerBattleResultPush() {}
-
-
- private pomelo.area.BattleResItem _myData = null;
- /// <summary>
- /// rankdId>rankData数量,才有数据, 否则直接读randData数据
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.area.BattleResItem myData
- {
- get { return _myData; }
- set { _myData = value; }
- }
-
- private int _rankId = default(int);
- /// <summary>
- /// myData存在,显示randId+,否则直接显示rankId, 然后读rankData排名数据
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"rankId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int rankId
- {
- get { return _rankId; }
- set { _rankId = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.BattleResItem> _rankData = new global::System.Collections.Generic.List<pomelo.area.BattleResItem>();
- [global::ProtoBuf.ProtoMember(3, Name=@"rankData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.BattleResItem> rankData
- {
- get { return _rankData; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 多服无名镇右上角界面信息推送, 1401
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BattleRightTopDataPush")]
- public partial class BattleRightTopDataPush : global::ProtoBuf.IExtensible
- {
- public BattleRightTopDataPush() {}
-
-
- private int _leftSec = default(int);
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"leftSec", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int leftSec
- {
- get { return _leftSec; }
- set { _leftSec = value; }
- }
-
- private int _timeDropRate = default(int);
- /// <summary>
- /// 时间爆率
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"timeDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int timeDropRate
- {
- get { return _timeDropRate; }
- set { _timeDropRate = value; }
- }
-
- private int _killDropRate = default(int);
- /// <summary>
- /// 额外爆率
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"killDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int killDropRate
- {
- get { return _killDropRate; }
- set { _killDropRate = value; }
- }
-
- private int _kills = default(int);
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int kills
- {
- get { return _kills; }
- set { _kills = value; }
- }
-
- private int _pickEquipScore = default(int);
- /// <summary>
- /// 玩家得分
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"pickEquipScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int pickEquipScore
- {
- get { return _pickEquipScore; }
- set { _pickEquipScore = value; }
- }
-
- private int _pickEquipNums = default(int);
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"pickEquipNums", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int pickEquipNums
- {
- get { return _pickEquipNums; }
- set { _pickEquipNums = value; }
- }
-
- private int _baseDropRate = default(int);
- /// <summary>
- /// 基础爆率
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"baseDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int baseDropRate
- {
- get { return _baseDropRate; }
- set { _baseDropRate = value; }
- }
-
- private int _leaveDropBuff = default(int);
- /// <summary>
- /// 截至时间戳
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"leaveDropBuff", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int leaveDropBuff
- {
- get { return _leaveDropBuff; }
- set { _leaveDropBuff = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 多服无名镇排行信息 1404
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossRankPushItem")]
- public partial class MutilCrossRankPushItem : global::ProtoBuf.IExtensible
- {
- public MutilCrossRankPushItem() {}
-
-
- private int _randId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"randId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int randId
- {
- get { return _randId; }
- set { _randId = value; }
- }
-
- private int _score;
- /// <summary>
- /// 击杀数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"score", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int score
- {
- get { return _score; }
- set { _score = value; }
- }
-
- private string _name;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private int _assists = default(int);
- /// <summary>
- /// 助攻数, 装备评分
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"assists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int assists
- {
- get { return _assists; }
- set { _assists = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossRankPush")]
- public partial class MutilCrossRankPush : global::ProtoBuf.IExtensible
- {
- public MutilCrossRankPush() {}
-
-
- private readonly global::System.Collections.Generic.List<pomelo.area.MutilCrossRankPushItem> _datas = new global::System.Collections.Generic.List<pomelo.area.MutilCrossRankPushItem>();
- [global::ProtoBuf.ProtoMember(1, Name=@"datas", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.MutilCrossRankPushItem> datas
- {
- get { return _datas; }
- }
-
-
- private pomelo.area.MutilCrossRankPushItem _myData = null;
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.area.MutilCrossRankPushItem myData
- {
- get { return _myData; }
- set { _myData = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 多服无名镇,主面板信息, 700
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossMainInfoRequest")]
- public partial class MutilCrossMainInfoRequest : global::ProtoBuf.IExtensible
- {
- public MutilCrossMainInfoRequest() {}
-
-
- private int _reqIndex;
- /// <summary>
- /// 请求排行榜的索引信息,默认0
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"reqIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int reqIndex
- {
- get { return _reqIndex; }
- set { _reqIndex = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossMainNewsBase")]
- public partial class MutilCrossMainNewsBase : global::ProtoBuf.IExtensible
- {
- public MutilCrossMainNewsBase() {}
-
-
- private string _killer;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"killer", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string killer
- {
- get { return _killer; }
- set { _killer = value; }
- }
-
- private string _dead;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"dead", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string dead
- {
- get { return _dead; }
- set { _dead = value; }
- }
-
- private pomelo.item.ItemDetail _equipDetail;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"equipDetail", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.item.ItemDetail equipDetail
- {
- get { return _equipDetail; }
- set { _equipDetail = value; }
- }
-
- private int _time = default(int);
- /// <summary>
- /// 时间戳
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int time
- {
- get { return _time; }
- set { _time = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossMainInfoResponse")]
- public partial class MutilCrossMainInfoResponse : global::ProtoBuf.IExtensible
- {
- public MutilCrossMainInfoResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private int _minEquipScore = default(int);
- /// <summary>
- /// 最低装备评分
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"minEquipScore", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int minEquipScore
- {
- get { return _minEquipScore; }
- set { _minEquipScore = value; }
- }
-
- private int _reqIndex = default(int);
- /// <summary>
- /// 附带请求中的reqIndex
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"reqIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int reqIndex
- {
- get { return _reqIndex; }
- set { _reqIndex = value; }
- }
-
- private bool _isend = default(bool);
- /// <summary>
- /// 是否结束
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"isend", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isend
- {
- get { return _isend; }
- set { _isend = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.MutilCrossMainNewsBase> _detail = new global::System.Collections.Generic.List<pomelo.area.MutilCrossMainNewsBase>();
- /// <summary>
- /// 一次只会传回10条
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, Name=@"detail", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.MutilCrossMainNewsBase> detail
- {
- get { return _detail; }
- }
-
-
- private int _baseDropRate = default(int);
- /// <summary>
- /// 基础爆率
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"baseDropRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int baseDropRate
- {
- get { return _baseDropRate; }
- set { _baseDropRate = value; }
- }
-
- private bool _iscanJoin = default(bool);
- /// <summary>
- /// 装备评分是否满足进入条件
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"iscanJoin", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool iscanJoin
- {
- get { return _iscanJoin; }
- set { _iscanJoin = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 击杀推送,1405
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"KillPlayerPush")]
- public partial class KillPlayerPush : global::ProtoBuf.IExtensible
- {
- public KillPlayerPush() {}
-
-
- private int _kills;
- /// <summary>
- /// 击杀数, 连续击杀数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int kills
- {
- get { return _kills; }
- set { _kills = value; }
- }
-
- private string _name;
- /// <summary>
- /// 击杀者名字
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private int _pro = default(int);
- /// <summary>
- /// 击杀者职业
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int pro
- {
- get { return _pro; }
- set { _pro = value; }
- }
-
- private int _killSex = default(int);
- /// <summary>
- /// 击杀者性别
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"killSex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int killSex
- {
- get { return _killSex; }
- set { _killSex = value; }
- }
-
- private int _killerServerID = default(int);
- /// <summary>
- /// 击杀者服务器id
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"killerServerID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int killerServerID
- {
- get { return _killerServerID; }
- set { _killerServerID = value; }
- }
-
- private int _totalKills = default(int);
- /// <summary>
- /// 用于客户端本地刷新排名数据
- /// </summary>
-
- /// <summary>
- /// 总击杀数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"totalKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int totalKills
- {
- get { return _totalKills; }
- set { _totalKills = value; }
- }
-
- private int _totalAssists = default(int);
- /// <summary>
- /// 总助攻数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"totalAssists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int totalAssists
- {
- get { return _totalAssists; }
- set { _totalAssists = value; }
- }
-
- private string _hitter = "";
- /// <summary>
- /// 被击杀者名字
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"hitter", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string hitter
- {
- get { return _hitter; }
- set { _hitter = value; }
- }
-
- private int _hitterPro = default(int);
- /// <summary>
- /// 被击杀者职业
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"hitterPro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int hitterPro
- {
- get { return _hitterPro; }
- set { _hitterPro = value; }
- }
-
- private int _hitterSex = default(int);
- /// <summary>
- /// 被击杀者性别
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"hitterSex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int hitterSex
- {
- get { return _hitterSex; }
- set { _hitterSex = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 面板信息请求, MSG_RequestMutilCrossBroadInfo 716
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossBroadInfoRequest")]
- public partial class MutilCrossBroadInfoRequest : global::ProtoBuf.IExtensible
- {
- public MutilCrossBroadInfoRequest() {}
-
-
- private string _instanceId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string instanceId
- {
- get { return _instanceId; }
- set { _instanceId = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossBroadInfoResponse")]
- public partial class MutilCrossBroadInfoResponse : global::ProtoBuf.IExtensible
- {
- public MutilCrossBroadInfoResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private pomelo.area.BattleRightTopDataPush _data;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.area.BattleRightTopDataPush data
- {
- get { return _data; }
- set { _data = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 装备状态推送,msgID = 1411
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilEquipDropFlagPush")]
- public partial class MutilEquipDropFlagPush : global::ProtoBuf.IExtensible
- {
- public MutilEquipDropFlagPush() {}
-
-
- private readonly global::System.Collections.Generic.List<int> _dropIndex = new global::System.Collections.Generic.List<int>();
- [global::ProtoBuf.ProtoMember(1, Name=@"dropIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public global::System.Collections.Generic.List<int> dropIndex
- {
- get { return _dropIndex; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 双服无名镇 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 双服无名镇排行信息
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleRankInfo")]
- public partial class DoubleRankInfo : global::ProtoBuf.IExtensible
- {
- public DoubleRankInfo() {}
-
-
- private int _randId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"randId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int randId
- {
- get { return _randId; }
- set { _randId = value; }
- }
-
- private int _wins;
- /// <summary>
- /// 胜场
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"wins", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int wins
- {
- get { return _wins; }
- set { _wins = value; }
- }
-
- private int _fails;
- /// <summary>
- /// 败场
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"fails", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int fails
- {
- get { return _fails; }
- set { _fails = value; }
- }
-
- private int _equals;
- /// <summary>
- /// 平局
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"equals", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int equals
- {
- get { return _equals; }
- set { _equals = value; }
- }
-
- private string _servername;
- [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"servername", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string servername
- {
- get { return _servername; }
- set { _servername = value; }
- }
-
- private int _pro;
- /// <summary>
- /// 头像-玩家职业
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int pro
- {
- get { return _pro; }
- set { _pro = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服无名镇主面板信息, 701
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossMainInfoRequest")]
- public partial class DoubleCrossMainInfoRequest : global::ProtoBuf.IExtensible
- {
- public DoubleCrossMainInfoRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossMainInfoResponse")]
- public partial class DoubleCrossMainInfoResponse : global::ProtoBuf.IExtensible
- {
- public DoubleCrossMainInfoResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleRankInfo> _rankInfo = new global::System.Collections.Generic.List<pomelo.area.DoubleRankInfo>();
- /// <summary>
- /// 服务器不会特别多,一次传回
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, Name=@"rankInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleRankInfo> rankInfo
- {
- get { return _rankInfo; }
- }
-
-
- private int _myServerRank = default(int);
- /// <summary>
- /// 1,-1, 暂无排名,2,小于rankInfo数量,myServerRankData为空,需要自己去rankInfo中取
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"myServerRank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int myServerRank
- {
- get { return _myServerRank; }
- set { _myServerRank = value; }
- }
-
- private pomelo.area.DoubleRankInfo _myServerRankData = null;
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"myServerRankData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.area.DoubleRankInfo myServerRankData
- {
- get { return _myServerRankData; }
- set { _myServerRankData = value; }
- }
-
- private int _seasonWins = default(int);
- /// <summary>
- /// 赛季占点百分比,分母
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"seasonWins", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int seasonWins
- {
- get { return _seasonWins; }
- set { _seasonWins = value; }
- }
-
- private int _seasonBoxFlag = default(int);
- /// <summary>
- /// 赛季宝箱领取状态(seasonBoxFlag & 1, seasonBoxFlag & 2, seasonBoxFlag & 4)判断领取状态
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"seasonBoxFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int seasonBoxFlag
- {
- get { return _seasonBoxFlag; }
- set { _seasonBoxFlag = value; }
- }
-
- private int _seasonEndTime = default(int);
- /// <summary>
- /// 赛季结束时间
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"seasonEndTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int seasonEndTime
- {
- get { return _seasonEndTime; }
- set { _seasonEndTime = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服无名镇面板信息(其他信息,战斗服传过来)1402
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBroadInfoPush")]
- public partial class DoubleCrossBroadInfoPush : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBroadInfoPush() {}
-
-
- private string _serverNameA = "";
- /// <summary>
- /// 左边服务器信息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"serverNameA", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string serverNameA
- {
- get { return _serverNameA; }
- set { _serverNameA = value; }
- }
-
- private string _serverNameB = "";
- /// <summary>
- /// 右边服务器信息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"serverNameB", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string serverNameB
- {
- get { return _serverNameB; }
- set { _serverNameB = value; }
- }
-
- private int _serverAKills = default(int);
- /// <summary>
- /// A服击杀
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"serverAKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int serverAKills
- {
- get { return _serverAKills; }
- set { _serverAKills = value; }
- }
-
- private int _serverBKills = default(int);
- /// <summary>
- /// B服击杀
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"serverBKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int serverBKills
- {
- get { return _serverBKills; }
- set { _serverBKills = value; }
- }
-
- private int _serverIdA = default(int);
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"serverIdA", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int serverIdA
- {
- get { return _serverIdA; }
- set { _serverIdA = value; }
- }
-
- private int _serverIdB = default(int);
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"serverIdB", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int serverIdB
- {
- get { return _serverIdB; }
- set { _serverIdB = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服个人击杀信息 1409
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossMyKillInfoPush")]
- public partial class DoubleCrossMyKillInfoPush : global::ProtoBuf.IExtensible
- {
- public DoubleCrossMyKillInfoPush() {}
-
-
- private int _myKills;
- /// <summary>
- /// 个人击杀信息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"myKills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int myKills
- {
- get { return _myKills; }
- set { _myKills = value; }
- }
-
- private int _myAssists;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"myAssists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int myAssists
- {
- get { return _myAssists; }
- set { _myAssists = value; }
- }
-
- private string _myAreaName;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"myAreaName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string myAreaName
- {
- get { return _myAreaName; }
- set { _myAreaName = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服无名镇结算推送, 1403
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossResulteItem")]
- public partial class DoubleCrossResulteItem : global::ProtoBuf.IExtensible
- {
- public DoubleCrossResulteItem() {}
-
-
- private string _playerName;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"playerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string playerName
- {
- get { return _playerName; }
- set { _playerName = value; }
- }
-
- private int _killCnt;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"killCnt", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int killCnt
- {
- get { return _killCnt; }
- set { _killCnt = value; }
- }
-
- private float _killPrecent;
- /// <summary>
- /// 百分之N
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"killPrecent", DataFormat = global::ProtoBuf.DataFormat.FixedSize)]
- public float killPrecent
- {
- get { return _killPrecent; }
- set { _killPrecent = value; }
- }
-
- private int _score;
- /// <summary>
- /// 分数 = 6*击杀+3*助攻
- /// </summary>
-
- /// <summary>
- /// 击杀数, 重复killCnt
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"score", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int score
- {
- get { return _score; }
- set { _score = value; }
- }
-
- private int _assists = default(int);
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"assists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int assists
- {
- get { return _assists; }
- set { _assists = value; }
- }
-
- private int _pro = default(int);
- /// <summary>
- /// 职业
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int pro
- {
- get { return _pro; }
- set { _pro = value; }
- }
-
- private int _sex = default(int);
- /// <summary>
- /// 性别
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int sex
- {
- get { return _sex; }
- set { _sex = value; }
- }
-
- private int _rankid = default(int);
- /// <summary>
- /// 排名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"rankid", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int rankid
- {
- get { return _rankid; }
- set { _rankid = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossResultPush")]
- public partial class DoubleCrossResultPush : global::ProtoBuf.IExtensible
- {
- public DoubleCrossResultPush() {}
-
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> _rankA = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem>();
- /// <summary>
- /// A方排名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, Name=@"rankA", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> rankA
- {
- get { return _rankA; }
- }
-
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> _rankB = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem>();
- /// <summary>
- /// B方排名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, Name=@"rankB", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleCrossResulteItem> rankB
- {
- get { return _rankB; }
- }
-
-
- private int _result;
- /// <summary>
- /// -1:败, 0:平,1:赢
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int result
- {
- get { return _result; }
- set { _result = value; }
- }
-
- private pomelo.area.DoubleCrossResulteItem _myData = null;
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.area.DoubleCrossResulteItem myData
- {
- get { return _myData; }
- set { _myData = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服无名镇赛季奖励领取, 702
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDoubelCrossSeaonAwardRequest")]
- public partial class GetDoubelCrossSeaonAwardRequest : global::ProtoBuf.IExtensible
- {
- public GetDoubelCrossSeaonAwardRequest() {}
-
-
- private int _index;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int index
- {
- get { return _index; }
- set { _index = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDoubelCrossSeaonAwardResponse")]
- public partial class GetDoubelCrossSeaonAwardResponse : global::ProtoBuf.IExtensible
- {
- public GetDoubelCrossSeaonAwardResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- /// <summary>
- /// 为空才成功,否则提示错误
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private int _index;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int index
- {
- get { return _index; }
- set { _index = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服无名镇排行信息 MSG_DoubleCrossRankPush1408
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleRankInfoExt")]
- public partial class DoubleRankInfoExt : global::ProtoBuf.IExtensible
- {
- public DoubleRankInfoExt() {}
-
-
- private string _name;
- /// <summary>
- /// 玩家昵称
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string name
- {
- get { return _name; }
- set { _name = value; }
- }
-
- private int _pro;
- /// <summary>
- /// 玩家职业
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int pro
- {
- get { return _pro; }
- set { _pro = value; }
- }
-
- private int _sex;
- /// <summary>
- /// 玩家性别
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int sex
- {
- get { return _sex; }
- set { _sex = value; }
- }
-
- private int _kills = default(int);
- /// <summary>
- /// 分数 = 6*击杀+3*助攻
- /// </summary>
-
- /// <summary>
- /// 击杀数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"kills", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int kills
- {
- get { return _kills; }
- set { _kills = value; }
- }
-
- private int _assists = default(int);
- /// <summary>
- /// 助攻数
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"assists", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int assists
- {
- get { return _assists; }
- set { _assists = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossRankPush")]
- public partial class DoubleCrossRankPush : global::ProtoBuf.IExtensible
- {
- public DoubleCrossRankPush() {}
-
-
- private string _serverAName;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"serverAName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string serverAName
- {
- get { return _serverAName; }
- set { _serverAName = value; }
- }
-
- private string _serverBName;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"serverBName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string serverBName
- {
- get { return _serverBName; }
- set { _serverBName = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> _serverA = new global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt>();
- [global::ProtoBuf.ProtoMember(3, Name=@"serverA", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> serverA
- {
- get { return _serverA; }
- }
-
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> _serverB = new global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt>();
- [global::ProtoBuf.ProtoMember(4, Name=@"serverB", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleRankInfoExt> serverB
- {
- get { return _serverB; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 面板信息请求, MSG_RequestDoubleCrossBroadInfo 717
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBroadInfoRequest")]
- public partial class DoubleCrossBroadInfoRequest : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBroadInfoRequest() {}
-
-
- private string _instanceId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"instanceId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string instanceId
- {
- get { return _instanceId; }
- set { _instanceId = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBroadInfoResponse")]
- public partial class DoubleCrossBroadInfoResponse : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBroadInfoResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private pomelo.area.DoubleCrossBroadInfoPush _data;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.area.DoubleCrossBroadInfoPush data
- {
- get { return _data; }
- set { _data = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 双服无名镇对战记录请求, MSG_GetDoubleCrossBattleRecord = 718;
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleRecordRequest")]
- public partial class DoubleCrossBattleRecordRequest : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBattleRecordRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleRecord")]
- public partial class DoubleCrossBattleRecord : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBattleRecord() {}
-
-
- private string _serverName;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"serverName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string serverName
- {
- get { return _serverName; }
- set { _serverName = value; }
- }
-
- private int _battleTime;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"battleTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int battleTime
- {
- get { return _battleTime; }
- set { _battleTime = value; }
- }
-
- private int _myOccupyRate = default(int);
- /// <summary>
- /// 自己服务器占比,百分之X
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"myOccupyRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int myOccupyRate
- {
- get { return _myOccupyRate; }
- set { _myOccupyRate = value; }
- }
-
- private int _otherOccupyRate = default(int);
- /// <summary>
- /// 其他服务器占比,百分之X
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"otherOccupyRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int otherOccupyRate
- {
- get { return _otherOccupyRate; }
- set { _otherOccupyRate = value; }
- }
-
- private int _result = default(int);
- /// <summary>
- /// -1:败, 0:平,1:赢
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int result
- {
- get { return _result; }
- set { _result = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleWinRate")]
- public partial class DoubleCrossBattleWinRate : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBattleWinRate() {}
-
-
- private string _serverName;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"serverName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string serverName
- {
- get { return _serverName; }
- set { _serverName = value; }
- }
-
- private int _winRate = default(int);
- /// <summary>
- /// 自己与这个服务器对战的胜率
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"winRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int winRate
- {
- get { return _winRate; }
- set { _winRate = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DoubleCrossBattleRecordResponse")]
- public partial class DoubleCrossBattleRecordResponse : global::ProtoBuf.IExtensible
- {
- public DoubleCrossBattleRecordResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private string _myServerName;
- /// <summary>
- /// 自己服务器名称
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"myServerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string myServerName
- {
- get { return _myServerName; }
- set { _myServerName = value; }
- }
-
- private int _winRate = default(int);
- /// <summary>
- /// 胜率, 百分之X
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"winRate", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int winRate
- {
- get { return _winRate; }
- set { _winRate = value; }
- }
-
- private int _continueWins = default(int);
- /// <summary>
- /// 最大连胜次数,
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"continueWins", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int continueWins
- {
- get { return _continueWins; }
- set { _continueWins = value; }
- }
-
- private int _averageOcuupy = default(int);
- /// <summary>
- /// 平均占点比,百分之X
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"averageOcuupy", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int averageOcuupy
- {
- get { return _averageOcuupy; }
- set { _averageOcuupy = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleWinRate> _winRates = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleWinRate>();
- /// <summary>
- /// 与服务器对战胜率信息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(7, Name=@"winRates", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleWinRate> winRates
- {
- get { return _winRates; }
- }
-
-
- private readonly global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleRecord> _record = new global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleRecord>();
- /// <summary>
- /// 对局信息
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(8, Name=@"record", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.DoubleCrossBattleRecord> record
- {
- get { return _record; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取多服无名镇游戏内,装备掉落情况, 719
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossPickEquipsRequest")]
- public partial class MutilCrossPickEquipsRequest : global::ProtoBuf.IExtensible
- {
- public MutilCrossPickEquipsRequest() {}
-
-
- private int _type = default(int);
- /// <summary>
- /// 0-游戏内,1-活动所有掉落
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int type
- {
- get { return _type; }
- set { _type = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PickEquipInfo")]
- public partial class PickEquipInfo : global::ProtoBuf.IExtensible
- {
- public PickEquipInfo() {}
-
-
- private pomelo.item.ItemDetail _equipDetail;
- /// <summary>
- /// 装备详情
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"equipDetail", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.item.ItemDetail equipDetail
- {
- get { return _equipDetail; }
- set { _equipDetail = value; }
- }
-
- private int _time;
- /// <summary>
- /// 获得时间戳
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int time
- {
- get { return _time; }
- set { _time = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MutilCrossPickEquipsResponse")]
- public partial class MutilCrossPickEquipsResponse : global::ProtoBuf.IExtensible
- {
- public MutilCrossPickEquipsResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.PickEquipInfo> _data = new global::System.Collections.Generic.List<pomelo.area.PickEquipInfo>();
- [global::ProtoBuf.ProtoMember(3, Name=@"data", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.PickEquipInfo> data
- {
- get { return _data; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 进入跨服boss地图 633
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CrossBossRequestEnterAreaRequest")]
- public partial class CrossBossRequestEnterAreaRequest : global::ProtoBuf.IExtensible
- {
- public CrossBossRequestEnterAreaRequest() {}
-
-
- private int _areaId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"areaId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int areaId
- {
- get { return _areaId; }
- set { _areaId = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CrossBossRequestEnterAreaResponse")]
- public partial class CrossBossRequestEnterAreaResponse : global::ProtoBuf.IExtensible
- {
- public CrossBossRequestEnterAreaResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private bool _isAreaFull = default(bool);
- /// <summary>
- /// 地图已满
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isAreaFull", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(default(bool))]
- public bool isAreaFull
- {
- get { return _isAreaFull; }
- set { _isAreaFull = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|