17.12.2012, 00:44
Use the example from that link where your point capture events are at (SendBoxMsg will send messages to that box).
pawn Код:
//------Example-------//
public OnPlayerConnect(playerid)
{
new string[128],name[24];
GetPlayerName(playerid,name,sizeof(name));
format(string,sizeof(string),"%s has ~g~joined ~w~the server.",name);
SendBoxMsg(string);
return 1;
}

