SA-MP Forums Archive
adding connect icon - 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: adding connect icon (/showthread.php?tid=174450)



adding connect icon - Face9000 - 05.09.2010

Hi all,i need to add connect chat on my gm.

Here is:



Thanks for the help


Re: adding connect icon - ipsBruno - 05.09.2010

In OnPlayerConnect

pawn Код:
SendDeathMessage(INVALID_PLAYER_ID,playerid, 200);



Re: adding connect icon - Face9000 - 05.09.2010

Thanks! I will test after


Re: adding connect icon - Face9000 - 05.09.2010

And how to add the disconnect icon?


Re: adding connect icon - [XST]O_x - 05.09.2010

pawn Код:
public OnPlayerConnect(playerid)
{
    SendDeathMessage(INVALID_PLAYER_ID,playerid, 200);
    return 1;
}

public OnPlayerDisconnect(playerid)
{
    SendDeathMessage(INVALID_PLAYER_ID,playerid,201);
    return 1;
}



Re: adding connect icon - Face9000 - 05.09.2010

Thanks alot!