From 68dc66d3523c073907ad4b5d83fb8d95df26a30e Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 07 一月 2020 14:45:10 +0800
Subject: [PATCH] 8360 【主干】仙界秘境修改(评级经验同步修改;提升百分比修改为相对包含评级经验的总经验)

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

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTalk.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTalk.py
index a41ad2e..2e010dd 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTalk.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTalk.py
@@ -215,6 +215,14 @@
     curPlayer.ChatMiByID(sendPack.GetTalkType(), sendPack.GetPlayerID(), content, 0, extras)
     return
 
+def TalkPrivateByID(curPlayer, tagPlayerID, content):
+    #私聊 0为默认 1为1对1聊天
+    talkType = 1
+    extras = GetTalkExtraValue(curPlayer)
+    curPlayer.ChatMiByID(talkType, tagPlayerID, content, 0, extras)
+    return
+
+
 
 ## 私聊频道(封包参数)
 #  @param index 玩家索引

--
Gitblit v1.8.0