09.02.2018, 02:58
Primeiro Vamos Baixar e instalar a INCLUDE progress.inc: Agora vamos lб, fiz porque ainda tem gente com dъvida de como fazer, fiz Pelo SetPvarInt e GetPVarInt, tempo que desenvolvi: 3 Minutos. Antes que venha falar que todos jб sabe, Nгo, Ainda tem novatos que quer saber a programar. Enfim, use como base.
PHP код:
#include a_samp
#include progress
#include DOF2
// -- News
new Bar:BarraFome;
public OnFilterScriptInit()
{
BarraFome = CreateProgressBar(560.00, 251.00, 56.50, 4.19, -1035059713, 100.0);
return 1;
}
public OnPlayerConnect(playerid)
{
SetPVarInt(playerid, "Fome", 100);
ShowProgressBarForPlayer(playerid, BarraFome);
return 1;
}
public OnPlayerSpawn(playerid)
{
SetTimerEx("Fome", 20, true, "d", playerid);
return 1;
}
forward Fome(playerid);
public Fome(playerid)
{
SetPVarInt(playerid, "Fome", GetPVarInt(playerid, "Fome")-1);
SetProgressBarValue(BarraFome, GetPVarInt(playerid, "Fome"));
UpdateProgressBar(BarraFome, playerid);
if(GetPVarInt(playerid, "Fome") < 5)
{
SetPVarInt(playerid, "Fome", 100);
SetProgressBarValue(BarraFome, 100);
UpdateProgressBar(BarraFome, playerid);
return 1;
}
return 1;
}