GetAccountsByIP: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}
{{Server function}}
{{New feature/item|3.0160|1.5.5|12217|
{{New feature/item|3.0156|1.5.5|11747|This function returns a [[table]] containing all accounts that were logged onto from specified IP-address.}}
This function returns a [[table]] containing all accounts that were logged onto from specified IP-address.
}}


==Syntax==  
==Syntax==  
Line 11: Line 9:
{{OOP|This function is a static function underneath the Account class.|Account.getAllByIP||}}
{{OOP|This function is a static function underneath the Account class.|Account.getAllByIP||}}
===Required Arguments===  
===Required Arguments===  
*'''ip:''' The IP to get accounts from
*'''ip:''' The IP to get accounts from.


===Returns===
===Returns===
Line 17: Line 15:


==Example==  
==Example==  
This example adds command ''getAccounts'' that outputs the number of accounts a player has in the chat box.
This example adds command ''getAccounts'' that outputs the number of accounts a player has in the chatbox:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addCommandHandler("getAccounts",  
addCommandHandler("getAccounts",  
Line 29: Line 27:
==See Also==
==See Also==
{{Account_functions}}
{{Account_functions}}
[[en:GetAccountsByIP]]
[[ru:getAccountsByIP]]
[[zh-cn:GetAccountsByIP]]

Latest revision as of 21:27, 23 September 2021

This function returns a table containing all accounts that were logged onto from specified IP-address.

Syntax

table getAccountsByIP ( string ip )

OOP Syntax Help! I don't understand this!

Note: This function is a static function underneath the Account class.
Method: Account.getAllByIP(...)


Required Arguments

  • ip: The IP to get accounts from.

Returns

Returns table containing the accounts associated with specified IP-address. Returns false if invalid arguments were specified.

Example

This example adds command getAccounts that outputs the number of accounts a player has in the chatbox:

addCommandHandler("getAccounts", 
	function (player, cmd)
		local ip = getPlayerIP(player)
		local accounts = getAccountsByIP(ip)
		outputChatBox("You have " .. #accounts .. " accounts.", player)
	end)

See Also