SetAccountPassword

From Multi Theft Auto: Wiki
Revision as of 15:50, 1 August 2015 by Lopez (talk | contribs) (li fix)
Jump to navigation Jump to search

This function sets the password of the specified account.

Syntax

bool setAccountPassword ( account theAccount, string password[, string passwordType="plaintext"] )

OOP Syntax Help! I don't understand this!

Method: account:setPassword(...)
Variable: .password


Required Arguments

  • theAccount: the account whose password you want to set
  • password: the password

Optional Arguments

  • passwordType: can be "plaintext", "sha256", or "md5" - See CAccountPassword for more information

Returns

Returns true if the password was set correctly, false otherwise.

Limits

Unless hashed with sha256 (length 97) or md5 (length 32), the following limits apply:

  • Minimal account password length is 1 character.
  • Maximum account password length is 30 characters.
  • Account password can not be equal to "*****"

Example

This example allows a user to change their password with a command.

function ChangePlayerPassword(player, command, oldpass, newpass)
	-- get the account the player is currently logged into
	local account = getPlayerAccount(player)
	if (account) then
		-- if its only a guest account, do not allow the password to be changed
		if (isGuestAccount(account)) then
			outputChatBox("You must be logged into an account to change your password.", player) 
			-- end the function
			return
		end
		
		-- check that the old password is correct
		local password_check = getAccount(getAccountName(account), oldpass)
		if (password_check) then
			-- check the length of the new password
			if (string.len(newpass)>=5) then
				setAccountPassword(account,newpass)
			else
				outputChatBox("Your new password must be at least 5 characters long.", player)
			end
		else
			outputChatBox("Old password invalid.", player)
		end
	end
end
addCommandHandler("changepass", ChangePlayerPassword)

See Also