Players count Fs Help!! - 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: Players count Fs Help!! (
/showthread.php?tid=624105)
Players count Fs Help!! -
vikoo - 11.12.2016
Hello Guys ,anyone Have an online Players count [Fs] Or can tell me how to make it
Exm: Players Online: 13/20 like in photo
Re: Players count Fs Help!! -
SyS - 11.12.2016
Use
foreach
and use
Iter_Count(Player)
Re: Players count Fs Help!! -
BiosMarcel - 11.12.2016
Pretty easy, that's pseudo code!:
PHP код:
new players = 0;
public OnPlayerConnect(...)
{
players++;
updateYourTextDraw;
}
public OnPlayerDisconnect(...)
{
players--;
updateYourTextDraw;
}
updateYourTextDraw()
{
new playerString[30];
format(playerString, 30, "Players %d/MAX", players);
TextDrawSetString(yourTextDraw, playerString);
}
Re: Players count Fs Help!! -
vikoo - 11.12.2016
how i can add my text draw ?
please explain more couse idk anything about textdraw
Re: Players count Fs Help!! -
BiosMarcel - 11.12.2016
Read it up on the wikipedia , it's not difficult
Re: Players count Fs Help!! -
vikoo - 11.12.2016
bro you can make it? for me?
Re: Players count Fs Help!! -
BiosMarcel - 11.12.2016
I am not your scripter, and i am not willing to make that , sry, you should put some effort into it if you want it to be done
Re: Players count Fs Help!! -
vikoo - 11.12.2016
iam not said you are my scripter but u must help me if i need more help or give me link of that site to learn it
Re: Players count Fs Help!! -
BiosMarcel - 11.12.2016
The links/things you need:
https://sampwiki.blast.hk/
http://forum.sa-mp.com/
https://******.com/
and brain.exe
Re: Players count Fs Help!! -
vikoo - 14.12.2016
-_- -_-