SA-MP Forums Archive
HELP ME PLZ - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: HELP ME PLZ (/showthread.php?tid=247987)



HELP ME PLZ - Bilawal2050 - 11.04.2011

hello guys help me how i make this
%S has joind the server /left the server / end etc



Re: HELP ME PLZ - gamer931215 - 11.04.2011

First stop posting topics with that redicilous fontsize.
Second:

pawn Код:
public OnPlayerConnect(playerid)
{
    new string[64], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    format(string,sizeof string,"%s has joined the server. Welcome!",pName);
    SendClientMessageToAll(0xFFFFFFAA,string);
    return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
    new
        string[64],
        name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,MAX_PLAYER_NAME);
    switch(reason)
    {
        case 0: format(string,sizeof string,"%s left the server. (Timed out)",name);
        case 1: format(string,sizeof string,"%s left the server. (Leaving)",name);
        case 2: format(string,sizeof string,"%s left the server. (Kicked/Banned)",name);
    }
    SendClientMessageToAll(0xFFFFFFAA,string);
    return 1;
}
from the sa-mp wiki, next time first search on http://wiki.sa-mp.com and on this forum before posting a topic


Re: HELP ME PLZ - Bilawal2050 - 11.04.2011

thanks cya and plz check server


Re: HELP ME PLZ - Ben7544 - 11.04.2011

Nvm I'm to late.


Re: HELP ME PLZ - Rivera - 11.04.2011

Quote:

thanks cya and plz check server

Was this a SA ?! You should be banned :P