Jump to content

target


LucasBaker

Recommended Posts

Posted

because I am unable to generate the nick of targetPlayer?

function gerarI (targetPLayer) 
local target = getPlayerFromName (targetPlayer) 
local geta = getPlayerName (target) 
outputChatBox ( "Nome: "..targetPlayer, getRootElement(), 255, 0, 0, true ) 
end 
addCommandHandler ( "pc", gerarI ) 

Posted
function gerarI (player, cmdName, targetPlayer) 
local target = getPlayerFromNamePart(targetPlayer) 
local geta = getPlayerName (target) 
outputChatBox ( "Nome: "..geta, getRootElement(), 255, 0, 0, true ) 
end 
addCommandHandler ( "pc", gerarI ) 
  
function getPlayerFromNamePart(name) 
    local name = name and name:gsub("#%x%x%x%x%x%x", ""):lower() or nil 
    if name then 
        for _, player in ipairs(getElementsByType("player")) do 
            local name_ = getPlayerName(player):gsub("#%x%x%x%x%x%x", ""):lower() 
            if name_:find(name, 1, true) then 
                return player 
            end 
        end 
    end 
end 

Please do not PM me with scripting related question nor support, use the forums instead.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...