Skip to content

Commit

Permalink
anti-spam update
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
funkydude committed Dec 11, 2016
1 parent e69b637 commit 4f10212
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions BadBoy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ local instantReportList = {
"trial.*valor.*nightmare.*myth.*karazhan.*powerleveling.*muchmor", --TRIAL OF VALOR, EMERALD NIGHTMARE HC/MYTH, KARAZHAN, POWERLEVELING, MYTH+ AND MUCH MOR >>>
"^wts.*nightmare.*mythicboost.*clear.*loot.*amazingprice.*raidstarts", --Wts Emerald nightmare Mythic boost 7/7 clear including 8-12 loot Minimum for amazing price , raid starts at 18:00 st! w me .
--Doing Honor and Prestige boosts : Unlock all PvP talents, 840-870 PvP gear, PvP Saddle, artifact power & appearance and a lot more ! visit [www.prestige-wow.com] for more details !
"pvp.*prestigewow[%.,]c", --Offering Honor and Prestige boosts : Unlock all PvP talents, 840-870 PvP gear, mounts, artifact power & appearance, golds and a lot more ! With [www.prestige-wow.com1]
"%d+.*prestigewow[%.,][cf]", --Offering Honor and Prestige boosts : Unlock all PvP talents, 840-870 PvP gear, mounts, artifact power & appearance, golds and a lot more ! With [www.prestige-wow.com1]
"wts%d+kgoldfor%d+eu", --WTS 800k GOLD FOR 35 EURO NOW !
"skype.*vf3399", --[5000+ forums vouches]wts virtual currency 0.23$/k,safe gold guaranteed,mmogoldbay.NET,{laugh} my skype is vf3399
"wtskarazhanwithmount.*mythicdungeons.*valor.*nightmare", --BLACK FRIDAY SALES! DON'T MISS IT! WTS Karazhan with mount, Mythic Dungeons+, Trial of Valor, Emerald Nightmare raids
Expand All @@ -556,6 +556,8 @@ local instantReportList = {
"wts.*nightmare.*heroic.*ml.*quality.*discount.*come.*items", --WTS EMERALD NIGHTMARE 7/7 Heroic with ML. High [quality.Discount] for cloth/mail/leather! Come get your 865+ items.
"wts.*heroic.*raid.*tonight.*come.*items.*quality.*discount", --WTS EMERALD NIGHTMARE 7/7 Heroic with ML. Raid tonight at 19.00 CET. Come get your 865+ [items.High] [quality.Discount] for cloth/leather/mail!
"wts.*nightmare.*valor.*mythic.*le?ve?ling.*price.*info", --►►►WTS: THE EMERALD NIGHTMARE | TRIAL OF VALOR | MYTHIC DUNGEONS | CHARACTER LVLing | BEST PRICE | WHISPER ME FOR MORE INFO!◄◄◄
"wts.*rbgs.*mounts.*saddle.*accshare", --▓▓WTS RbgS(1-75wins)HR/ap/6 vicious mounts(viciours saddle)also[Reins of the Time-Lost Proto-Drake]▓[Voidtalon of the Dark Star]RN,no accshare▓PST
"^wts.*nightmare.*mythic.*gear.*gua?rantee.*amazing.*price.*details", --WTS Emerald nightmare mythic 7/7 clear including 8-12 Gear for you atleast (guranteed) for amazing price only today Going on 15:00 st ! w for more details.

--[[ Chinese ]]--
"ok4gold.*skype", --纯手工100-110升级█翡翠英雄团█5M代刷 大秘境2-10层(橙装代刷)█代刷神器点数 解锁神器第三槽█金币20刀=10w█微信ok4gold█QQ或微信549965838█skype;gold4oks█微信ok4gold█v
Expand Down Expand Up @@ -634,7 +636,7 @@ local instantReportList = {
"osboosting[%.,]com.*tarifs.*remise", --☼ www.os-boosting.com ☼ Le meilleur du boosting WoW à des tarifs imbattables. Donjons mythique 10/10 - Raids Cauchemar d'Emeraude 7/7 Normal & Héroïque - Métiers 700-800 - Pack 12 Pets TCG - Réputations Legion - Gold | Code remise 5%: OS5%
"wallgaming.*loot.*keystone", --¤ www.WallGaming.com ¤ Raids Cauchemar d'Emeraude HM 7/7 6 loots/+ | Gloire au héros de Legion | Donjons Mythique 10/10 +5keystone | Arène 2c2 3c3 2000 & 2200 | Honneur PvP niveau 50 | Pets & Montures TCG | N°1 FR
"pvp.*wallgaming[%.,]com", --☺♥ Profitez des dernières nouveautés de Legion maintenant ♥☺ Cauchemar d'Emeraude HM Master Loot | Gloire au héros de Legion | Donjons Mythique+ / Karazhan 9/9 Mythique | Selle Vicieuse | Stuff PvE & PvP | www.wallgaming.com Team FR
"pvp.*prestigewow[%.,]fr", --Propose PL Honneur et Prestige ; Débloque tous les talents pvp, équipement 840-870 ilvl, monture, puissance d'artefact & nouveau skin pour l'arme artefact, gold et bien plus encore ! Visitez notre site web : www.prestige-wow.fr pour plus d'infos !
--"pvp.*prestigewow[%.,]fr", --Propose PL Honneur et Prestige ; Débloque tous les talents pvp, équipement 840-870 ilvl, monture, puissance d'artefact & nouveau skin pour l'arme artefact, gold et bien plus encore ! Visitez notre site web : www.prestige-wow.fr pour plus d'infos !

--[[ Danish ]]--
"^sælgerguldfor%d+", --sælger guld for 170kr pr. 100k (w for andre servere)
Expand Down Expand Up @@ -790,7 +792,7 @@ local function BadBoyIsFriendly(name, flag, lineId, guid)
return true
end
end
local function BadBoyCleanse(msg)
local function Cleanse(msg)
msg = lower(msg) --Lower all text, remove capitals
for k,v in next, repTbl do
msg = gsub(msg, k, v)
Expand All @@ -805,7 +807,7 @@ local eventFunc = function(_, event, msg, player, _, _, _, flag, channelId, chan
if BadBoyIsFriendly(trimmedPlayer, flag, lineId, guid) then return end

local debug = msg --Save original message format
msg = BadBoyCleanse(msg)
msg = Cleanse(msg)

--20 line text buffer, this checks the current line, and blocks it if it's the same as one of the previous 20
if event == "CHAT_MSG_CHANNEL" then
Expand Down Expand Up @@ -1004,6 +1006,7 @@ do
GameTooltip:Show()
end)
reportFrame:SetScript("OnLeave", GameTooltip_Hide)
BadBoyConfig.IsSpam, BadBoyConfig.Cleanse = IsSpam, Cleanse
end

--[[ Add Filters ]]--
Expand Down Expand Up @@ -1032,20 +1035,6 @@ do
end
end

if myDebug then
SlashCmdList.D = function(msg)
msg = BadBoyCleanse(msg)
if IsSpam(msg) then
print("Yes")
end
end
SLASH_D1 = "/d"
SlashCmdList.C = function(msg)
print(BadBoyCleanse(msg))
end
SLASH_C1 = "/c"
end

--[[ Blacklist ]]--
do
local f = CreateFrame("Frame")
Expand Down

0 comments on commit 4f10212

Please sign in to comment.