howww????
#1

Could give me a system for when you are 50 players online, send a message to the server:
50 Online games mortal congratulations!
Reply
#2

Top of the your mod

pawn Код:
new onlineplayers = 0;
To OnPlayerConnect:

pawn Код:
public OnPlayerConnect(playerid)
{
onlineplayers++;
if(onlineplayers == 50) { return SendClientMessageToAll(0xFFFF00FF,"50 Online games mortal congratulations!"); }
return 1;
}
)
To OnPlayerDisconnect:

pawn Код:
public OnPlayerDisconnect(playerid)
{
onlineplayers--;
return 1;
}
)
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)