OnPlayerUpdate Problem - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: OnPlayerUpdate Problem (
/showthread.php?tid=596400)
OnPlayerUpdate Problem -
DiamondGold - 17.12.2015
Hello, I have a problem, when I change my Hunger Bladder Energy system into percent, it always changing with random numbers.
Код:
public OnPlayerUpdate(playerid)
{
new RolPointTXT1[250];
if(PlayerInfo[playerid][pAccount] == 0)
{
RolPointTXT1 = "Ninguno";
}
new string4[250];
format(string4, sizeof(string4), "BANK: %s", FormatMoney(PlayerInfo[playerid][pAccount]));
TextDrawSetString(RolPoint4[playerid], string4);
new RolPointTXT2[250];
if(PlayerInfo[playerid][pJailTime] == 0)
{
RolPointTXT2 = "Ninguno";
}
format(string4, sizeof(string4), "Jail Time: %d", PlayerInfo[playerid][pJailTime]-10);
TextDrawSetString(JailTimeNotice, string4);
// Alt-Tab detection
AltTabbed[playerid] = 0;
//HungerBladderEnergy System
//Energy
new RolPointTXT3[250];
if(PlayerInfo[playerid][pHunger] == 0)
{
RolPointTXT3 = "Ninguno";
}
format(string4, sizeof(string4), "%d%", PlayerInfo[playerid][pHunger]);
TextDrawSetString(lapar, string4);
//Energy
new RolPointTXT4[250];
if(PlayerInfo[playerid][pEnergy] == 0)
{
RolPointTXT4 = "Ninguno";
}
format(string4, sizeof(string4), "%d%", PlayerInfo[playerid][pHaus]);
TextDrawSetString(butuhair, string4);
//Bladder
new RolPointTXT5[250];
if(PlayerInfo[playerid][pBladder] == 0)
{
RolPointTXT5 = "Ninguno";
}
format(string4, sizeof(string4), "%d%", PlayerInfo[playerid][pBladder]);
TextDrawSetString(bladder01, string4);
//Power
new RolPointTXT6[250];
if(PlayerInfo[playerid][pTired] == 0)
{
RolPointTXT6 = "Ninguno";
}
format(string4, sizeof(string4), "%d%", PlayerInfo[playerid][pTired]);
TextDrawSetString(tidur, string4);
When I try my GM at my laptop, it works. But when I upload to my VPS, when the players login, it mix with the other Hunger Bladder Energy.
Can anyone help me to fix this bug?..
Thanks before
Re: OnPlayerUpdate Problem -
Dokins - 17.12.2015
Use %f.