RaiN_ Posted June 8, 2014 Share Posted June 8, 2014 (edited) i am trying create an anti divulgation script, but don't works my code: function Divulguer (message,messageType) if string.find ( message, "%d+.%d+.%d+.%d+:%d+" ) or string.find ( message, "%d+.%d+.%d+.%d+" ) or string.find ( message, "mtasa://" ) then --banPlayer ( source, true, false, true, "x", 0 ) -- Removed For Testing.... outputChatBox ( "IP Found !", root ) else outputChatBox ( "No IP Found !", root ) end end addEventHandler ( "onPlayerChat", root, Divulguer ) Edited August 9, 2014 by Guest Link to comment
Den. Posted June 8, 2014 Share Posted June 8, 2014 You can use: string.find(message, "mtasa://%d+.%d+.%d+.%d+") -- Matches a complete mtasa IP string.find(message, "mtasa://") -- if "mtasa://" exists in the message. string.find(message, "%d+.%d+.%d+.%d+") -- if there is an IP in the message. Link to comment
RaiN_ Posted June 8, 2014 Author Share Posted June 8, 2014 You can use pregFind how to use this to find an IP ? if pregFind ( message, "%d+.%d+.%d+.%d+" ) then Don't Work Link to comment
cheez3d Posted June 9, 2014 Share Posted June 9, 2014 addEventHandler("onPlayerChat",root,function(message) local Pattern = "[mtasa://]?%d%d?%d?%.%d%d?%d?%.%d%d?%d?%.%d%d?%d?[:%d%d%d%d%d?]?"; -- simple pattern for detecting an IP address; if message:find(Pattern) then -- if the message contains an IP address; cancelEvent(); -- cancel the chat event; local Result,Matches = message:gsub(Pattern,""); -- remove the IPs, no need to ban the player for a simple IP, maybe he wrote it by mistake; outputServerLog("WARNING! - "..tostring(Matches).." IPs detected in chat message \""..message.."\". Removing them."); outputChatBox(Result,root); -- output the new message with no IPs to the chatbox; end end); 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now