Server counter

Posted by BubbleDerp
Before a player joins a session or server I would like to display the count of people on the server how could I get this number?

Replies (1)

Last message on 21 Nov 2018

jdev on 21 Nov 2018, 11:10:51
Hi,

You could do this if you want to get everyone online including you:

[/code]
draw_text(x,y,string(gms_other_count()+1));
[code]

Or, just get rid of the +1 if you don't want to include yourself in the amount of people online.