Joining
#1

How to create message to send to all admins when someone join the server like - Name of the players has joined the server IP:
If you can please help me
Reply
#2

Hmm, depends on your admin system, but that's really easy to do.
It should be like the following, let's say your enums are PlayerInfo[MAX_PLAYERS][Admin] for the admin rank.
pawn Код:
public OnPlayerConnect(playerid)
{
new name, nam[128];
GetPlayerName(playerid, name, sizeof(name));
format(nam, sizeof(nam), "%s has joined the server!", name);
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][Admin] >=1) SendClientMessage(i, -1, nam);
}
return 1;
}
It's simple.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)