Jump to content

Register denied


CapY

Recommended Posts

Posted
  
Errors :  
  
-- Access Denied @ 'addAccount'       
-- Bad argument @ 'logIn' [Expected player at argument 1, got string '123]     
  
--Register  
function registerHandler(player, username, password) 
    local account = getAccount(username, password) 
    if (account ~= false) then 
        triggerClientEvent(player, "registerTaken", getRootElement()) 
    else    
            if (logIn(player, account, password) == true) then 
            triggerClientEvent(player, "hideRegisterWindow", getRootElement()) 
        end 
    end 
end 

Posted

If you used addCommandHandler on this, then it won't work, because the second argument, is the command.

Also add the resource to admin group in ACL.

Posted

Yep i solved first problem few secs before your post , but im stuck with second problem .

And i used addEventHandler , but still dont work.

Posted

function registerHandler(player, username, password)

->

function registerHandler(player, command, username, password)

Posted

Is this all the (serverside) code? Cause I can't see addAccount anywhere.

Also keep in mind that you don't need to add the password for getAccount to check if an account exists (check the wiki).

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