how do I make it - 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)
+--- Thread: how do I make it (
/showthread.php?tid=607151)
how do I make it -
gogo45 - 15.05.2016
how do I make this
computer logo mark red and blue, how do I make it
Re: how do I make it -
J0sh... - 15.05.2016
SendDeathMessage(INVALID_PLAYER_ID, playerid, 200); // Blue
SendDeathMessage(INVALID_PLAYER_ID, playerid, 201); // Red
Re: how do I make it -
Micko123 - 15.05.2016
That is SendDeathMessage
Do this OnPlayerConnect
Код:
SendDeathMessage(INVALID_PLAYER_ID,playerid, ICON_CONNECT);
Do this OnPlayerDisconnect
Код:
SendDeathMessage(INVALID_PLAYER_ID,playerid, ICON_DISCONNECT);
Do this OnPlayerDeath
Код:
SendDeathMessage(killerid, playerid, reason);
Re: how do I make it -
J0sh... - 15.05.2016
ICON_XXX Isn't defined...
Re: how do I make it -
Micko123 - 15.05.2016
put this on top
Код:
#define ICON_CONNECT 200
#define ICON_DISCONNECT 201