关灯
开启左侧

魔兽世界sf中聊天过滤系统

  [复制链接]
admin实名认证 发表于 2016-5-3 23:01:41 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题
 
就是一套聊天的过滤脚本系统。。适用于T端

    checks[0] ="Styler is gay";
    checks[1] ="Styler is Homosexual";
    checks[2] ="Infusion-WoW Sucks";
    checks[3] ="Fuck Styler";
    checks[4] ="I hate Styler";
    checks[5] ="Styler is retarded";
    checks[6] ="Screw Styler";
    checks[7] ="wow-";
    checks[8] ="-wow";
    checks[9] =".pl";
    checks[10] ="lumiawow is better than Deception";
这些大概就是在游戏中不允许玩家聊天所用的一些词语,例如你可以修改成一些可能玩家骂GM的词语!这样就可以过滤了

这样,就可以在一定程度上禁止魔兽里面脏话什么的~~WOW聊天也比较正常了!

当然,这个脚本系统我还没有测试过,。具体作用希望有兴趣的朋友试试~~~


#include "ScriptPCH.h"

#include "Channel.h"

class System_Censure : public PlayerScript
{
public:
        System_Censure() : PlayerScript("System_Censure") {}

        void OnChat(Player* player, uint32 /*type*/, uint32 lang, std::string& msg)
        {
                CheckMessage(player, msg, lang, NULL, NULL, NULL, NULL);
        }

        void OnChat(Player* player, uint32 /*type*/, uint32 lang, std::string& msg, Player* receiver)
        {
                CheckMessage(player, msg, lang, receiver, NULL, NULL, NULL);
        }

        void OnChat(Player* player, uint32 /*type*/, uint32 lang, std::string& msg, Group* group)
        {
                CheckMessage(player, msg, lang, NULL, group, NULL, NULL);
        }

        void OnChat(Player* player, uint32 /*type*/, uint32 lang, std::string& msg, Guild* guild)
        {
                CheckMessage(player, msg, lang, NULL, NULL, guild, NULL);
        }

        void OnChat(Player* player, uint32 /*type*/, uint32 lang, std::string& msg, Channel* channel)
        {
                CheckMessage(player, msg, lang, NULL, NULL, NULL, channel);
        }

void CheckMessage(Player* player, std::string& msg, uint32 lang, Player* /*receiver*/, Group* /*group*/, Guild* /*guild*/, Channel* channel)
{
    //if (player->isGameMaster() || lang == LANG_ADDON)
            //return;

    // transform to lowercase (for simpler checking)
    std::string lower = msg;
    std::transform(lower.begin(), lower.end(), lower.begin(), ::tolower);

    uint8 cheksSize = 11;//Change these if you want to add more words to the array.
    std::string checks[11];//Change these if you want to add more words to the array.
    // Strony (Sites)
    checks[0] ="Styler is gay";
    checks[1] ="Styler is Homosexual";
    checks[2] ="Infusion-WoW Sucks";
    checks[3] ="Fuck Styler";
    checks[4] ="I hate Styler";
    checks[5] ="Styler is retarded";
    checks[6] ="Screw Styler";
    checks[7] ="wow-";
    checks[8] ="-wow";
    checks[9] =".pl";
    checks[10] ="lumiawow is better than Deception";

    for (int i = 0; i < cheksSize; ++i)
        if (lower.find(checks[i]) != std::string::npos)
        {
            msg = "";
            ChatHandler(player->GetSession()).PSendSysMessage("Advertising and vulgar behavior is not allowed!");
            return;
        }
}
};

void AddSC_System_Censure()
{
    new System_Censure();
}


标签:魔兽世界
 
VIP介绍
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

  • 最佳新人

    注册账号后积极发帖的会员
  • 活跃会员

    经常参与各类话题的讨论,发帖内容较有主见
  • 热心会员

    经常帮助其他会员答疑
  • 推广达人

    积极宣传本站,为本站带来更多注册会员
  • 宣传达人

    积极宣传本站,为本站带来更多的用户访问量
  • 灌水之王

    经常在论坛发帖,且发帖量较大
  • 突出贡献

    长期对论坛的繁荣而不断努力,或多次提出建设性意见
  • 优秀版主

    活跃且尽责职守的版主
  • 荣誉管理

    曾经为论坛做出突出贡献目前已离职的版主
  • 论坛元老

    为论坛做出突出贡献的会员

0关注

5粉丝

3421帖子

排行榜
作者专栏

QQ交流群&&微信订阅号

QQ交流群

微信订阅号

吾爱尚玩资源基地永久域名:

Www.523Play.Com

在线管理员QQ:1589479632

邮箱:Email@523play.com

QQ交流群:558936238

Copyright   ©2015-2116  吾爱尚玩资源基地|523play.comPowered by©523Pplay.Com技术支持:吾爱尚玩资源基地