SetAccountName: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Useful Function}} __NOTOC__ This function is used to change existing accounts name.<br> ==Syntax== <syntaxhighlight lang="lua">bool setAccountName ( element player, string oldAccount, string...") |
m (Обновление информации) |
||
(15 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{Server function}} | ||
__NOTOC__ | __NOTOC__ | ||
This function | {{New feature/item|3.155|1.5.5|11747| | ||
This function sets the name of an [[account]]. | |||
}} | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua">bool setAccountName ( | <syntaxhighlight lang="lua"> | ||
bool setAccountName ( account theAccount, string name [, bool allowCaseVariations = false] ) | |||
</syntaxhighlight> | |||
{{OOP||[[account]]:setName|name|getAccountName}} | |||
===Required Arguments=== | |||
*'''theAccount:''' The account you wish to change the name. | |||
*'''name:''' The new name. | |||
=== | ===Optional Arguments=== | ||
* ''' | *'''allowCaseVariations:''' Whether the username is case sensitive (if this is set to true, usernames "Bob" and "bob" will refer to different accounts) | ||
===Returns=== | ===Returns=== | ||
Returns ''true'' if account was | Returns a ''true'' if the account name was set, ''false'' if an invalid argument was specified. | ||
== | ==Example== | ||
Change the name of an account. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
addCommandHandler("changeaccountname", function(player, _, oldname, newname) | |||
if not oldname or not newname then | |||
return | |||
end | |||
local account = getAccount(oldname) | |||
if not account then | |||
return | |||
end | |||
setAccountName(account, newname) | |||
end) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{ | {{Account_functions}} | ||
[[en:SetAccountName]] | |||
[[ru:setAccountName]] | |||
[[zh-cn:SetAccountName]] |
Latest revision as of 17:12, 12 April 2021
Syntax
bool setAccountName ( account theAccount, string name [, bool allowCaseVariations = false] )
OOP Syntax Help! I don't understand this!
- Method: account:setName(...)
- Variable: .name
- Counterpart: getAccountName
Required Arguments
- theAccount: The account you wish to change the name.
- name: The new name.
Optional Arguments
- allowCaseVariations: Whether the username is case sensitive (if this is set to true, usernames "Bob" and "bob" will refer to different accounts)
Returns
Returns a true if the account name was set, false if an invalid argument was specified.
Example
Change the name of an account.
addCommandHandler("changeaccountname", function(player, _, oldname, newname) if not oldname or not newname then return end local account = getAccount(oldname) if not account then return end setAccountName(account, newname) end)
See Also
- addAccount
- copyAccountData
- getAccount
- getAccountData
- getAccountName
- getAccountPlayer
- getAccountSerial
- getAccounts
- getAccountsBySerial
- getAllAccountData
- getPlayerAccount
- isGuestAccount
- logIn
- logOut
- removeAccount
- setAccountData
- setAccountPassword
- getAccountByID
- getAccountID
- getAccountIP
- getAccountsByData
- getAccountsByIP
- setAccountName