CapY Posted August 28, 2011 Posted August 28, 2011 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
JR10 Posted August 28, 2011 Posted August 28, 2011 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.
CapY Posted August 28, 2011 Author Posted August 28, 2011 Yep i solved first problem few secs before your post , but im stuck with second problem . And i used addEventHandler , but still dont work.
Cadu12 Posted August 28, 2011 Posted August 28, 2011 function registerHandler(player, username, password) -> function registerHandler(player, command, username, password)
SDK Posted August 28, 2011 Posted August 28, 2011 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).
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