From 2ce511e068fbd899dfd35dfe96b2f0d65b579eac Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 17 一月 2025 12:01:59 +0800
Subject: [PATCH] 1111 【越南】【英语】【BT】【砍树】增加击杀boss任务事件
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py | 1 +
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py | 5 +++++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py
index 47aea33..1f71aa2 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventShell.py
@@ -1747,6 +1747,11 @@
RunQuestEvent(curPlayer, "killworldbossbyfeel", 'killworldbossbyfeel', Def_RunQuestType_Normal)
return
+def EventRespons_KillBoss(curPlayer, indexMark):
+ # 击杀BOSS
+ RunQuestEvent(curPlayer, "killboss", indexMark, Def_RunQuestType_Normal)
+ return
+
def EventRespons_SealDemon(curPlayer):
# 获得封魔坛110级以上BOSS伤害排名第一
RunQuestEvent(curPlayer, "sealdemon", "sealdemon", Def_RunQuestType_Normal)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py
index 8ab5d43..be84dc8 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/NPC/NPCCommon.py
@@ -2564,6 +2564,7 @@
"AccID":curPlayer.GetAccID(), "PlayerID":curPlayer.GetPlayerID()}
DataRecordPack.SendEventPack("AddKillBossCnt", dataDict, curPlayer)
PlayerSuccess.DoAddSuccessProgress(curPlayer, ShareDefine.SuccType_FeastRedPack_KillBoss, 1, [limitIndex])
+ EventShell.EventRespons_KillBoss(curPlayer, limitIndex)
if isCrossServer:
return
--
Gitblit v1.8.0