GetPlayerFromAccountName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Reverted edits by AncienT (talk) to last revision by XNawaf)
(7 intermediate revisions by one other user not shown)
Line 14: Line 14:


==Code==
==Code==
<syntaxhighlight lang="lua">function getPlayerFromAccountName(accountname)
<syntaxhighlight lang="lua">function getPlayerFromAccountName(name)  
  if accountname then
    local acc = getAccount (name)
      for _,account in ipairs(getAccounts()) do
    if name and acc and not isGuestAccount (acc) then
        for _,player in ipairs(getElementsByType('player')) do
        return getAccountPlayer (acc)
            if getAccountName(account) == accountname then
    else
              if getAccountName(getPlayerAccount(player)) == getAccountName(account) then
        return false
                  return player
    end
              end
            end
        end
      end
  end
return false
end</syntaxhighlight>
end</syntaxhighlight>


Line 32: Line 26:
This example get player name from account name by command
This example get player name from account name by command
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addCommandHandler ("name",
addCommandHandler ("getPlayerName",
     function (player,_,accountname)
     function (player,_,name)
         if accountname then
         if name then
         local thePlayer = getPlayerFromAccountName (accountname)
         local thePlayer = getPlayerFromAccountName (name)
         if thePlayer then
         if thePlayer then
             outputChatBox (getPlayerName (thePlayer),player,255,255,255,true)
             outputChatBox (getPlayerName (thePlayer),player,255,255,255,true)

Revision as of 08:14, 15 January 2019


This function get online player from their account name.

Syntax

player getPlayerFromAccountName ( string accountName )

Required Arguments

  • accountName: A string containing account name of a player you want to reference.

Returns

Returns a player if the account name exists,false if player not found.

Code

function getPlayerFromAccountName(name) 
    local acc = getAccount (name)
    if name and acc and not isGuestAccount (acc) then
        return getAccountPlayer (acc)
    else
        return false
    end
end

Example

This example get player name from account name by command

addCommandHandler ("getPlayerName",
    function (player,_,name)
        if name then
        local thePlayer = getPlayerFromAccountName (name)
        if thePlayer then
            outputChatBox (getPlayerName (thePlayer),player,255,255,255,true)
        else
            outputChatBox ("player not found !",player,255,0,0)
        end
    else
        outputChatBox ("type account name frist !",player,255,255,0)
    end
end
)

Author: ,#Na[W]aF'1000.