File verlihub.lua: String 366: if not OnParsedMsgSearch(curUser, data, GetIP(curUser) or "") then return BreakActions_false end WAS CHANGED to: if (OnParsedMsgSearch(curUser, data, GetIP(curUser) or "") or BreakActions_false)==BreakActions_false then return BreakActions_false end Plugin BASIC (version 11): Localization verlihub: File OnMsgAny.lua: Code (strings 4-8): if data:find("^%s*{prefix}me") then if not VH_OnParsedMsgChat(curUser, data) then return true end else if not VH_OnParsedMsgChat(curUser, "{prefix}me "..data:match("^%s*%b<>%s+[!%+/]me%s(.+)")) then return true end end WAS CHANGED to: if data:find("^%s*{prefix}me") then if (VH_OnParsedMsgChat(curUser, data) or BreakActions_false)==BreakActions_false then return true end else if (VH_OnParsedMsgChat(curUser, "{prefix}me "..data:match("^%s*%b<>%s+[!%+/]me%s(.+)")) or BreakActions_false)==BreakActions_false then return true end end String 107: if VH_OnOperatorCommand(curUser, data) then ToUser(MySettings["BotName"], curUser, gl(tmpCurPlugName.."_41",curUser)) end WAS CHANGED to: if (VH_OnOperatorCommand(curUser, data) or BreakActions_false)==BreakActions_true then ToUser(MySettings["BotName"], curUser, gl(tmpCurPlugName.."_41",curUser)) end