[Ajuda] score por kill - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] score por kill (
/showthread.php?tid=588957)
score por kill -
zPawnu - 13.09.2015
bom pessoal eu coloquei um negocio aq na minha gm pra tipo qnd o player matar alguйm ele ganha +1 de score porem quando ele morre ele perde todos os scores
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+1
return 1;
}
Re: score por kill -
SepZ - 13.09.2015
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(killerid != INVALID_PLAYER_ID) // verifica se quem matou foi um player
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+1);
}
return 1;
}
Re: score por kill -
Thider - 13.09.2015
Код:
SetPlayerScore(killerid,GetPlayerScore(killerid) + 1);