function setPlayerZombieKills ( playerSource, commandName, jugador, zkills )
local cuenta = getAccountName ( getPlayerAccount ( playerSource ) )
if ( jugador ) and ( zkills ) and ( cuenta == "Alexs_Steel" ) then
local jugador = getPlayerFromName ( jugador )
local account = getPlayerAccount ( jugador )
if ( account and not isGuestAccount ( account ) ) then
setAccountData ( account, "Zombie kills", tonumber ( zkills ) )
setElementData ( jugador, "Zombie kills", tonumber ( zkills ) )
end
end
end
addCommandHandler ( "zkills", setPlayerZombieKills )