コード例 #1
0
ファイル: GameContext.cs プロジェクト: Matodor/TeeSharp
        protected override void OnMsgClientEmoticon(BasePlayer player, GameMsg_ClEmoticon message)
        {
            if (Config["SvSpamprotection"] && player.LastEmoteTick + Server.TickSpeed * 3 > Server.Tick)
            {
                return;
            }

            player.LastEmoteTick = Server.Tick;
            SendEmoticon(player.ClientId, message.Emoticon);
        }
コード例 #2
0
ファイル: BaseGameContext.cs プロジェクト: Matodor/TeeSharp
 protected abstract void OnMsgClientEmoticon(BasePlayer player, GameMsg_ClEmoticon message);