Akranes123 Posted November 20, 2016 Share Posted November 20, 2016 hi, I need help I want it when someone registers and logs into your account when logging into your account automatically passes it to a team such as Team * Civil * I want it when I register and log in to the team * Civil * Automatically ..... Please if you would be so kind to help me with a script like this or give me an idea Link to comment
Anzo Posted November 21, 2016 Share Posted November 21, 2016 (edited) Try this (not tested) function onQuit() local Team = getPlayerTeam(source) local account = getPlayerAccount(source) if (Team) and (not isGuessAccount(account)) then setAccountData(account, "myTeam", getTeamName(Team)) end end addEventHandler("onPlayerQuit", root, onQuit) addEventHandler("onPlayerLogout", root, onQuit) function onLogin() local account = getPlayerAccount( source ) local theTeam = getAccountData(account, "myTeam") if (theTeam) and (getTeamFromName(theTeam)) then setAccountData(account, "myTeam", getTeamFromName(theTeam)) end end addEventHandler("onPlayerLogin", root, onLogin) Edited November 21, 2016 by Anzo Link to comment
iPrestege Posted November 21, 2016 Share Posted November 21, 2016 40 minutes ago, Anzo said: Try this (not tested) function onQuit() local Team = getPlayerTeam(source) local account = getPlayerAccount(source) if (Team) and (not isGuessAccount(account)) then setAccountData(account, "myTeam", getTeamName(Team)) end end addEventHandler("onPlayerQuit", root, onQuit) addEventHandler("onPlayerLogout", root, onQuit) function onLogin() local account = getPlayerAccount( source ) local theTeam = getAccountData(account, "myTeam") if (theTeam) and (getTeamFromName(theTeam)) then setAccountData(account, "myTeam", getTeamFromName(theTeam)) end end addEventHandler("onPlayerLogin", root, onLogin) This is not going to work since you are not setting the player team also isGuessAccount you have an extra 's' should be 't' . Link to comment
Akranes123 Posted November 26, 2016 Author Share Posted November 26, 2016 Thanks <3 <3 nice day 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