Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
| | |
| | |
|
| | |
|
| | |
|
| | | public class DTCAC09_tagGCFairyCeremonyInfo : DtcBasic {
|
| | | public class DTCAC09_tagGCFairyCeremonyInfo : DtcBasic
|
| | | {
|
| | |
|
| | | FairylandCeremonyModel ceremonyModel { get { return ModelCenter.Instance.GetModel<FairylandCeremonyModel>(); } }
|
| | |
|
| | |
| | | public string EndtDate; // 结束日期 y-m-d
|
| | | public ushort WorldLV; // 世界等级
|
| | | public ushort LimitLV; // 限制等级
|
| | | public byte ResetType; // 重置类型 0-0点重置 1-5点重置
|
| | |
|
| | | public HAC09_tagGCFairyCeremonyInfo () {
|
| | | _cmd = (ushort)0xAC09;
|
| | |
| | | TransBytes (out EndtDate, vBytes, NetDataType.Chars, 10);
|
| | | TransBytes (out WorldLV, vBytes, NetDataType.WORD);
|
| | | TransBytes (out LimitLV, vBytes, NetDataType.WORD);
|
| | | TransBytes (out ResetType, vBytes, NetDataType.BYTE);
|
| | | }
|
| | |
|
| | | }
|
| | |
| | | operation.startDate = ParseOperationDate(package.StartDate);
|
| | | operation.endDate = ParseOperationDate(package.EndtDate);
|
| | | operation.limitLv = package.LimitLV;
|
| | | operation.resetType = package.ResetType;
|
| | | if (operationTimeUpdateEvent != null)
|
| | | {
|
| | | operationTimeUpdateEvent(Operation.FairyCeremony);
|