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. Business System viewtopic.php?f=108&t=35797 Notepad++ Syntax Highlighting & Auto Completion viewtopic.php?f=91&t=76726 SQLite Tutorial viewtopic.php?f=148&t=38203
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) Ingame nick: Cadu12
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). Learn Lua - Learn to script - GUI scripting Scripter tools - Find/fix errors yourself(!) Don't pm me for scripting help, keep it for the Scripting subforum!
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