13.04.2014, 08:13
tenho o seguinte cуdigo:
Eu queria que aparece-se um numero inteiro tipo : 100 mas aparece 100.000 ..
Como posso resolver isso ?
@RESOLVIDO
Soluзгo : mudar %0.f => %.0f
pawn Код:
new Float:tip;
if(tip > 0.0)
{
format(String, sizeof(String), "%0.f", tip);
PlayerTextDrawSetString(playerid, DrawArmour, String);
PlayerTextDrawShow(playerid, DrawArmour);
}else PlayerTextDrawHide(playerid, DrawArmour);
GetPlayerHealth(playerid, tip);
if(tip > 0.0)
{
format(String, sizeof(String), "%0.f", tip);
PlayerTextDrawSetString(playerid, DrawHealth, String);
PlayerTextDrawShow(playerid, DrawHealth);
}else PlayerTextDrawHide(playerid, DrawHealth);
Como posso resolver isso ?
@RESOLVIDO
Soluзгo : mudar %0.f => %.0f