Üdv ez a 2-scriptem Kicsit kezdõ script de ezzel próbálkozom. #include
#define COLOR_CSATLAKOZAS 0x007bffAA
#if defined FILTERSCRIPT
public OnPlayerConnect(playerid)
{
new pName[MAX_PLAYER_NAME];
new string[250];
GetPlayerName(playerid, pName, sizeof(pName));
format(string, sizeof(string), \"[CSATLAKOZÁS]:%s [iD:%d]Csatlakozott a szerverre!\", pName, playerid);
SendClientMessageToAll(COLOR_CSATLAKOZAS, string);
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
new pName[MAX_PLAYER_NAME];
new string[250];
GetPlayerName(playerid, pName, sizeof(pName));
switch(reason)
{
case 0: format(string, sizeof (string),\"[CSATLAKOZÁS]:%s [iD:%d]Elhagyta a szervert![Kilépés]\" pName, playerid);
case 1: format(string, sizeof (string),\"[CSATLAKOZÁS]:%s [iD:%d]Elhagyta a szervert![Kifagyott]\" pName, playerid);
case 2: format(string, sizeof (string),\"[CSATLAKOZÁS]:%s [iD:%d]Elhagyta a szervert![Kick/Ban]\" pName, playerid);
}
SendClientMessageToAll(COLOR_CSATLAKOZAS, string);
return 1;
}
Remelem hasznat veszítek. :thumbsup: