Search the Community
Showing results for tags 'kills'.
-
ola pessoal, andei pesquisando e tentando fazer um script que quando eu der /stats ele aparecera as mortes as kills e o KD(ratio) mais por algum motivo n sei pq esta dando errado olhem os codigos e pfv me ajudem com isso. Codigo server: function chat( sourcePlayer, commandName, targetPlayerName ) if ( thePlayer ) then local kills = getPlayerKills( getLocalPlayer() ) local deaths = getPlayerDeaths( getLocalPlayer() ) outputChatBox ( "O Player"..getPlayerName(player).."Tem"..kills.."/"..deaths"", root, 255, 255, 255, true ) end end addCommandHandler("stats", chat) Codigo Client: function kills() setElementData ( getLocalPlayer ( ), "kills", 0 ) end addEventHandler ( "onClientResourceStart", resourceRoot, kills ) o KD(ratio) n testei por enquanto mais se vcs quiserem ja colocar pra me ajudar eu ficaria muito grato OBS: Nao deu nenhum erro mais tambem n apareceu no chat quando eu digitava /stats
-
Bom quero saber como posso corrigir o erro neste script Client : function kills() setElementData ( getLocalPlayer ( ), "kills", 0 ) end addEventHandler ( "onPlayerJoin", root, kills ) Server : function MostrarKills () if ( thePlayer ) then local contarkills = getPlayerKills( getLocalPlayer() ) local contardeaths = getPlayerDeaths( getLocalPlayer() ) outputChatBox ( "O Player"..getPlayerName(player).."Tem"..contarkills.."/"..contardeaths"", root, 255, 255, 255, true ) end end addCommandHandler("kills", MostrarKills)