[Ajuda] Como inverter progress bar ....
#1

Olб gente eu to tentando inverter a progress bar , tipo ela vai aumentando a fome Assim [||||| ] eu quero que fique assim [||||||| ] que va abaixando como eu faзo isso ?

PHP код:
#include <a_samp>
#include <progress>
#include <zcmd>
#define FomeTempo 5 // em minutos
new Bar:FomeB;
forward Fome(playerid);
public 
OnGameModeInit()
{
FomeB CreateProgressBar(549.0058.0055.503.20, -8716033100.0);
SetProgressBarMaxValue(FomeB100);
return 
1;
}
public 
OnGameModeExit()
{
HideProgressBarForAll(FomeB);
return 
1;
}
public 
OnPlayerConnect(playerid)
{
SetPVarInt(playerid,"Fome",0);
ShowProgressBarForPlayer(playeridFomeB);
return 
1;
}
public 
OnPlayerSpawn(playerid)
{
SetTimerEx("Fome",FomeTempo*60000 1"i"playerid);
return 
1;
}
public 
OnPlayerDeath(playeridkilleridreason)
{
SetProgressBarValue(FomeB,0);
UpdateProgressBar(FomeB,playerid);
SetPVarInt(playerid,"Fome",0);
return 
1;
}
public 
Fome(playerid)
{
SetPVarInt(playerid,"Fome",GetPVarInt(playerid,"Fome")+5);
SetProgressBarValue(FomeBGetPVarInt(playerid,"Fome"));
UpdateProgressBar(FomeB,playerid);
if(
GetPVarInt(playerid,"Fome") >= 95)
{
new 
Float:vida;
GetPlayerHealth(playerid,vida),SetPlayerHealth(playerid,vida-90.0);
SendClientMessage(playerid,-1,"Vб comer um lanche ou morrб");
}
return 
1;

Entгo como eu faзo ?
Reply


Messages In This Thread
Como inverter progress bar .... - by LucasPlays - 15.03.2014, 03:30
Re: Como inverter progress bar .... - by LucasPR2013 - 15.03.2014, 06:23
Re: Como inverter progress bar .... - by Sky™ - 15.03.2014, 12:59
Re: Como inverter progress bar .... - by LucasPlays - 15.03.2014, 14:40
Re: Como inverter progress bar .... - by LucasPR2013 - 15.03.2014, 15:23
Re: Como inverter progress bar .... - by LucasPlays - 15.03.2014, 15:24

Forum Jump:


Users browsing this thread: 1 Guest(s)