how to check players online
#10

You should try this. I have explained everything to you below.

PHP код:
/*
Script Documentation:
Made by: brauf
Tested: Yes
*/
#include <a_samp>
new PlayersOnline// this variable stores a integer of the players online
GetPlayersOnServer() // function to get players on server
{
    
PlayersOnline 0// reset online players each time when trying to fetch it otherwise "PlayersOnline" will just keep increasing each time (++) with each check
    
for(new iMAX_PLAYERSi++) // do a loop of all player slots available (1, 2, 3 - 1000), if player slot 1 or 2 or 3 has a valid player connected (IsPlayerConnected) then increase "PlayersOnline" by 1 (++)
    
{
        if(
IsPlayerConnected(i)) // a check to see if player is online on that id
        
{
            
PlayersOnline++; // increase "PlayersOnline" by 1 if there is a online player on
            
return PlayersOnline// return "PlayersOnline" which tells the server how much players are on
        
}
    }
    return 
PlayersOnline// return "PlayersOnline" which stores the value of how much players are on
}
public 
OnPlayerConnect(playerid)
{
    
GetPlayersOnServer(); // execute this function "OnPlayerConnect" so when a player logs in, it tries to detect how much players are on
    
if(PlayersOnline == 1// if online players = 1, then there is only 1 player online
    
{
        
SendClientMessage(playerid, -1"Looks like the server is empty, except you."); // send a message
    
}
    return 
1;

Reply


Messages In This Thread
how to check players online - by severance - 12.08.2018, 22:09
Re: how to check players online - by RedRex - 12.08.2018, 22:30
Re: how to check players online - by severance - 12.08.2018, 22:33
Re: how to check players online - by RedRex - 12.08.2018, 22:34
Re: how to check players online - by Jing_Chan - 12.08.2018, 22:35
Re: how to check players online - by severance - 12.08.2018, 22:44
Re: how to check players online - by Jing_Chan - 12.08.2018, 22:57
Re: how to check players online - by Sew_Sumi - 13.08.2018, 00:41
Re: how to check players online - by severance - 13.08.2018, 08:42
Re: how to check players online - by brauf - 13.08.2018, 10:28

Forum Jump:


Users browsing this thread: 2 Guest(s)