From 921ba9c6e954f2f1377cb08d5a8476c9e6c2b30e Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 15 三月 2019 17:44:27 +0800
Subject: [PATCH] 6332 【后端】【2.0】主要是拍品相关规则调整及背包优化(给非拍卖物品为拍品时优化)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChGameToMapPyPack.py | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChGameToMapPyPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChGameToMapPyPack.py
index 819991e..2b3a2db 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChGameToMapPyPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChGameToMapPyPack.py
@@ -478,6 +478,7 @@
PlayerID = 0 #(DWORD PlayerID)//玩家ID
CompensationType = 0 #(BYTE CompensationType)//补偿类型 0 全服 1 个人
GUID = "" #(char GUID[40])//对应的补偿ID
+ CreateTime = "" #(char CreateTime[30])//邮件接收时间
TextLen = 0 #(DWORD TextLen)//文字内容长度
Text = "" #(String Text)//文字内容
Count = 0 #(BYTE Count)//当前补偿物品数
@@ -500,6 +501,7 @@
self.PlayerID,_pos = CommFunc.ReadDWORD(_lpData, _pos)
self.CompensationType,_pos = CommFunc.ReadBYTE(_lpData, _pos)
self.GUID,_pos = CommFunc.ReadString(_lpData, _pos,40)
+ self.CreateTime,_pos = CommFunc.ReadString(_lpData, _pos,30)
self.TextLen,_pos = CommFunc.ReadDWORD(_lpData, _pos)
self.Text,_pos = CommFunc.ReadString(_lpData, _pos,self.TextLen)
self.Count,_pos = CommFunc.ReadBYTE(_lpData, _pos)
@@ -521,6 +523,7 @@
self.PlayerID = 0
self.CompensationType = 0
self.GUID = ""
+ self.CreateTime = ""
self.TextLen = 0
self.Text = ""
self.Count = 0
@@ -537,6 +540,7 @@
length += 4
length += 1
length += 40
+ length += 30
length += 4
length += len(self.Text)
length += 1
@@ -555,6 +559,7 @@
data = CommFunc.WriteDWORD(data, self.PlayerID)
data = CommFunc.WriteBYTE(data, self.CompensationType)
data = CommFunc.WriteString(data, 40, self.GUID)
+ data = CommFunc.WriteString(data, 30, self.CreateTime)
data = CommFunc.WriteDWORD(data, self.TextLen)
data = CommFunc.WriteString(data, self.TextLen, self.Text)
data = CommFunc.WriteBYTE(data, self.Count)
@@ -572,6 +577,7 @@
PlayerID:%d,
CompensationType:%d,
GUID:%s,
+ CreateTime:%s,
TextLen:%d,
Text:%s,
Count:%d,
@@ -586,6 +592,7 @@
self.PlayerID,
self.CompensationType,
self.GUID,
+ self.CreateTime,
self.TextLen,
self.Text,
self.Count,
--
Gitblit v1.8.0