SA-MP Forums Archive
[Pedido] salvar vida e colete - 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: [Pedido] salvar vida e colete (/showthread.php?tid=483733)



salvar vida e colete - gmstrikker - 27.12.2013

Alguem sabe um fs / include qlqr coisa q salve vida e colete qnd reloga?


Re: salvar vida e colete - CharlieBrown - 27.12.2013

https://sampforum.blast.hk/showthread.php?tid=143657


Re: salvar vida e colete - LucaAllexandre - 27.12.2013

Estude DOF2 ou Y_INI.

DOF2: http://pastebin.com/TQJGwYyZ

Y_INI: https://sampforum.blast.hk/showthread.php?tid=175565

Quote:
Originally Posted by CharlieBrown
Посмотреть сообщение
Todos dizem que essa include estб ultrapassada, entгo nгo recomendo. Porcausa disso..


Re: salvar vida e colete - gmstrikker - 28.12.2013

Ta dando:
warning 202: number of arguments does not match definition

Nas linhas de salvar qnd disconecta:
dini_IntSet("Health.ini",PlayerName(playerid),GetP layerHealth(playerid));
dini_IntSet("Armour.ini",PlayerName(playerid),GetP layerArmour(playerid));


Re: salvar vida e colete - PT - 28.12.2013

nao seria junto?

GetPlayerHealth(playerid)
GetPlayerArmour(playerid)


Re: salvar vida e colete - Red Smoke - 28.12.2013

Uso incorreto do GetPlayerHealth, pois essa funзгo nгo retorna valor, ela recebe uma variбvel pra armazenar.
Veja: https://sampwiki.blast.hk/wiki/GetPlayerHealth (sempre usa a wiki do SA-MP, pois eles dгo exemplos)
Uso:
Код:
new Float:health;
GetPlayerHealth(playerid,health);
dini_FloatSet("Health.ini", PlayerName(playerid), health);
Outro erro:
dini_IntSet - Perceba que 'Int' no nome da funзгo significa Inteiro, mas o valor do sangue й um Float (flutuante/real), qual a diferenзa?
Int: 10
Float: 10.0

Portanto, substitua por dini_FloatSet.