From fb86600c411e628bdf36461783c21c84a8e285c5 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期三, 31 七月 2019 15:03:49 +0800 Subject: [PATCH] 8187 【后端】【主干】优化仙盟宴会体验 --- 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