progressbar doesnt update - 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: progressbar doesnt update (
/showthread.php?tid=548357)
progressbar doesnt update -
bogushas - 29.11.2014
Код:
new progress = RandomEx(1, 5);
apProgress[playerid] += progress;
SetProgressBarValue(apBar[playerid], apProgress[playerid]);
UpdateProgressBar(apBar[playerid], apProgress[playerid]);
Re: progressbar doesnt update -
bogushas - 29.11.2014
any ideas ?
Re: progressbar doesnt update -
Raweresh - 29.11.2014
Show
CreateProgessBar.
Re: progressbar doesnt update -
bogushas - 29.11.2014
apBar[playerid] = CreateProgressBar(206.00, 405.00, 246.50, 3.20, 3446015, 100.0);
Re: progressbar doesnt update -
Raweresh - 29.11.2014
Ok, try it and show result.
Код:
new progress = RandomEx(1, 5);
apProgress[playerid] += progress;
printf("%d",apProgess[playerid]);
SetProgressBarValue(apBar[playerid], apProgress[playerid]);
UpdateProgressBar(apBar[playerid], apProgress[playerid]);
Re: progressbar doesnt update -
bogushas - 29.11.2014
fixed