[Ajuda] Veja aqui - 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] Veja aqui (
/showthread.php?tid=266872)
[Ajuda] Veja aqui -
arakuta - 06.07.2011
Estou tentando fazer com que toda ver que um jogador mate o outro ele ganhe 20 de HP, so se tiver menos ou igual a 80.
pawn Код:
if (GetPlayerHealth(killerid) <= 80)
{
SetPlayerHealth(killerid, GetPlayerHealth(killerid) + 20);
SendClientMessage(killerid,COLOR_WHITE,"Vocк tinha menos que 80 de vida, e ganhou 20!");
}
Eu nгo testei, mas ta retornando esses warnings:
pawn Код:
G:\Projeto Samp\gamemodes\lvdm.pwn(423) : warning 202: number of arguments does not match definition
G:\Projeto Samp\gamemodes\lvdm.pwn(425) : warning 202: number of arguments does not match definition
Re: [Ajuda] Veja aqui -
Shadoww5 - 06.07.2011
PHP код:
new Float:Health;
GetPlayerHealth(killerid, Health);
if(Health <= 80)
{
SetPlayerHealth(killerid, Health + 20);
SendClientMessage(killerid,COLOR_WHITE,"Vocк tinha menos que 80 de vida, e ganhou 20!");
}
Re: [Ajuda] Veja aqui -
arakuta - 06.07.2011
nгo retornou warnings nem erros. um outra hora eu testo. agora nгo posso. qualqur coisa posto aqui, vlw.
Re: [Ajuda] Veja aqui -
arakuta - 06.07.2011
funcionou. Obrigado.