Jump to content

[HELPED] is there any wrong in my script


iMr.3a[Z]eF

Recommended Posts

i don't know what is the wrong code please help me

the script is when anyone say bad word he'll get mute. but this isn't work

Words = { 
    ["sever"] = true,   
    }  
     
----- Muting Function  
    addEventHandler("onPlayerChat", getRootElement(), 
    function(msg, msgType) 
        local theMsg = msg 
            if Words[theMsg] then 
            cancelEvent() 
            pName = getPlayerName(source) 
            outputChatBox(" (( #FFFFFF".. pName .." #ff0000 )) #808080 Have Been Muted By Consle   Rason = Bad Mouth",getRootElement(),255,0,0,true) 
            setTimer (function ( player , ... ) 
            setPlayerMuted(source, true) 
            setTimer(unmute(player),tonumber(muteTime)*300000,1) 
            outputChatBox(" (( #FFFFFF".. pName .." #0000ff )) #ff0000 You Have Been UnMuted By Consle   Don't Try That Agine",getRootElement(),255,0,0,true) 
            end, 
            300000 
            ,1, true ) 
        end 
  
    end 
) 

Edited by Guest
Link to comment

Words = { 
    ["sever"] = true,   
    }  
     
----- Muting Function  
    addEventHandler("onPlayerChat", getRootElement(), 
    function(msg, msgType) 
        local theMsg = msg 
            if Words[theMsg] then 
                cancelEvent() 
            pName = getPlayerName(source) 
            outputChatBox(" (( #FFFFFF".. pName .." #ff0000 )) #808080 Have Been Muted By Consle   Rason = Bad Mouth",getRootElement(),255,0,0,true) 
    setPlayerMuted(source, true) 
    setTimer (function ( player ) 
    setPlayerMuted (player, false ) 
         outputChatBox(" (( #FFFFFF".. pName .." #0000ff )) #ff0000 You Have Been UnMuted By Consle   Don't Try That Agine",getRootElement(),255,0,0,true) 
    end, 
    300000,1, source ) 
         end 
end 
) 

Should Have Admin Rights | resource.Name

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...