From a8fcbe6a3a594970ad5b47dde9f3ff3c7649a945 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 22 九月 2023 13:23:46 +0800
Subject: [PATCH] 9936 【BT0.1】【主干】人族法宝(任务 进度)给予奖励 master 冲突
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
index 5f7dd80..2e242b0 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py
@@ -147,6 +147,7 @@
import SkillShell
import PlayerGubao
import PlayerShentong
+import PlayerCustomAward
import PlayerLianTi
import PlayerYinji
import PlayerLove
@@ -912,6 +913,8 @@
PlayerTongTianLing.OnPlayerLogin(curPlayer)
#创角奖励
Sync_CreateRoleAwardInfo(curPlayer)
+ #自定义奖励
+ PlayerCustomAward.OnPlayerLogin(curPlayer)
#功能系统特权
PlayerFuncSysPrivilege.OnPlayerLogin(curPlayer)
#玩法前瞻奖励
@@ -5674,6 +5677,9 @@
#创角奖励
elif rewardType == ChConfig.Def_RewardType_CreateRole:
OnGetCreateRoleAward(curPlayer)
+ #自定义奖励
+ elif rewardType == ChConfig.Def_RewardType_CustomAward:
+ PlayerCustomAward.OnGetCustomAward(curPlayer, dataEx)
#玩法前瞻奖励
elif rewardType == ChConfig.Def_RewardType_GameNotice:
OnGiveAwardByClient(curPlayer, rewardType, ChConfig.Def_PDict_GameNoticeAwardState, IpyGameDataPY.GetFuncEvalCfg("GameNoticeReward", 1))
--
Gitblit v1.8.0