From 8f7a29d699d30c14695a1a47a6fb70f45f9f4177 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 17 十月 2024 16:50:18 +0800
Subject: [PATCH] 10263 【越南】【英文】后端支持NPC仿真实玩家战斗和快速战斗

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerState.py |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerState.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerState.py
index 9a993dc..8c89276 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerState.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerState.py
@@ -62,6 +62,7 @@
 import PlayerYinji
 import PlayerActivity
 import PlayerBackup
+import MirrorAttack
 
 #---------------------------------------------------------------------
 #---------------------------------------------------------------------
@@ -1165,9 +1166,16 @@
         #GameWorld.Log("玩家还未初始化成功, 不处理")
         return
     
+    #延迟回收镜像玩家
+    if PlayerControl.OnDelayDeleteMirror(curPlayer, tick):
+        return
+    
     #定时备档
     PlayerBackup.CheckPlayerBackup(curPlayer)
     
+    #玩家镜像战斗AI
+    MirrorAttack.ProcessPlayerMirrorAI(curPlayer, tick)
+    
     #被GM封状态响应
     ProcessGMOperLogic(curPlayer, tick)
     

--
Gitblit v1.8.0