Jump to content

Logging in


AMARANT

Recommended Posts

Simply you can use something like this :

-- Add you serial here because u ara a staff member so only you can use /login  
access = { 
   [" your serial "] = true, 
} 
  
-- And you can add commands here like /login /register etc MTA commands. 
commands = { 
    ["login"] = true, 
 } 
  
-- and then you need to add this to prevent players from using those commands 
function youCant(command) 
    if (commands[command]) then 
        local serial = getPlayerSerial(source) 
        if (not access[serial]) then 
            cancelEvent() 
            outputChatBox(command.." is a blocked command ", source, 255, 0, 0) 
            return 
        end 
    end 
end 
addEventHandler("onPlayerCommand", root,youCant) 

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...