From 4a5b10c5ca95f49cf3700619e1033da645c9de89 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期五, 23 十一月 2018 11:37:37 +0800
Subject: [PATCH] 4969 上古战场退出副本清除buff
---
PySysDB/PySysDBG.h | 45 ++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 44 insertions(+), 1 deletions(-)
diff --git a/PySysDB/PySysDBG.h b/PySysDB/PySysDBG.h
index 34a0d5b..d8c671f 100644
--- a/PySysDB/PySysDBG.h
+++ b/PySysDB/PySysDBG.h
@@ -203,6 +203,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -222,6 +223,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -241,6 +243,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -259,6 +262,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -274,6 +278,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -290,10 +295,11 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
- BYTE ResetType; //重置类型,0-0点重置;1-5点重置
+ BYTE ResetType; //重置类型,0-0点重置;1-5点重置;2-5点开始0点结束
dict NotifyInfoStart; //全服提示信息 - 相对开始时间
dict NotifyInfoEnd; //全服提示信息 - 相对结束时间
WORD LVLimit; //限制等级
@@ -314,6 +320,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -322,6 +329,7 @@
dict NotifyInfoEnd; //全服提示信息 - 相对结束时间
WORD Multiple; //倍数
WORD LVLimit; //限制等级
+ DWORD PointLimit; //限制额外修行点
};
//限时抢购表
@@ -330,6 +338,7 @@
{
DWORD _CfgID; //配置ID
char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
list ServerIDList; //服务器ID列表
char StartDate; //开启日期
char EndDate; //结束日期
@@ -353,4 +362,38 @@
DWORD ShopType; //商店类型
BYTE RefreshType; //刷新类型 0-不重置,1-onWeek0点,2-onWeek5点,3-OnDay0点,4-OnDay5点
DWORD ServerLimitCnt; //全服限制数量
+};
+
+//许愿池活动时间表
+
+struct tagActWishingWell
+{
+ DWORD _CfgID; //配置ID
+ char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
+ list ServerIDList; //服务器ID列表
+ char StartDate; //开启日期
+ char EndDate; //结束日期
+ BYTE IsDayReset; //是否每天重置
+ BYTE ResetType; //重置类型,0-0点重置;1-5点重置
+ dict NotifyInfoStart; //全服提示信息 - 相对开始时间
+ dict NotifyInfoEnd; //全服提示信息 - 相对结束时间
+ list NotifyInfoLoop; //全服提示信息 - 循环广播[间隔分钟, 广播key]
+ WORD LVLimit; //限制等级
+};
+
+//累计充值活动表
+
+struct tagActTotalRecharge
+{
+ DWORD _CfgID; //配置ID
+ char ActMark; //活动组标记
+ list PlatformList; //活动平台列表["平台A", "平台A", ...],配[]代表所有
+ list ServerIDList; //服务器ID列表
+ char StartDate; //开启日期
+ char EndDate; //结束日期
+ dict NotifyInfoStart; //全服提示信息 - 相对开始时间
+ dict NotifyInfoEnd; //全服提示信息 - 相对结束时间
+ list NotifyInfoLoop; //全服提示信息 - 循环广播[间隔分钟, 广播key]
+ BYTE IsDayReset; //是否每天重置
};
\ No newline at end of file
--
Gitblit v1.8.0