CapY Posted August 28, 2011 Share 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 Link to comment
JR10 Posted August 28, 2011 Share 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. Link to comment
CapY Posted August 28, 2011 Author Share 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. Link to comment
Cadu12 Posted August 28, 2011 Share Posted August 28, 2011 function registerHandler(player, username, password) -> function registerHandler(player, command, username, password) Link to comment
SDK Posted August 28, 2011 Share 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). 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