SA-MP Forums Archive
How do I get this??? - 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: How do I get this??? (/showthread.php?tid=270838)



How do I get this??? - OleKristian95 - 21.07.2011

How do I get a blue computer icon on the deathlst when someone join the server and a red computer when someone leaves the server?


Re: How do I get this??? - Fj0rtizFredde - 21.07.2011

Add this:
pawn Код:
//OnPlayerConnect:
SendDeathMessage(playerid, INVALID_PLAYER_ID, 200);
//OnPlayerDisconnect:
SendDeathMessage(INVALID_PLAYER_ID, playerid, 201);



Re: How do I get this??? - OleKristian95 - 21.07.2011

Quote:
Originally Posted by Fj0rtizFredde
Посмотреть сообщение
Add this:
pawn Код:
//OnPlayerConnect:
SendDeathMessage(playerid, INVALID_PLAYER_ID, 200);
//OnPlayerDisconnect:
SendDeathMessage(INVALID_PLAYER_ID, playerid, 201);
Okay, thanks