02-22-2009, 05:26 PM
This is taken from other echo script, but might aswell do the trick:
Code:
public OnPlayerConnect(playerid)
{
format(lolz, sizeof(lolz), "14*** %s has joined the server.",PlayerName(playerid));
Echo(lolz);
return true;
}
public OnPlayerDisconnect(playerid, reason)
{
format(lolz,256, "14*** %s has left the server. (%s)1", PlayerName(playerid), Dcon[reason]);
ircSay(RandomBot(), ECHOCHAN, lolz);
return true;
}