Login & Logout List - 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: Login & Logout List (
/showthread.php?tid=484146)
Login & Logout List -
SpringValeRPG - 29.12.2013
Please how can I make Blue & Red mark on the kill list when player log-in & log-out ?
Re: Login & Logout List -
Stereotype - 29.12.2013

and

are automaticly created on player login and disconnect if you have "activated" SendDeathMessage
ps..
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid, playerid, reason);
return 1;
}
Re : Login & Logout List -
SpringValeRPG - 29.12.2013
How can I active it ?
Re: Re : Login & Logout List -
doreto - 29.12.2013
Quote:
Originally Posted by SpringValeRPG
How can I active it ?
|
Quote:
Originally Posted by Stereotype
pawn Код:
public OnPlayerDeath(playerid, killerid, reason) { SendDeathMessage(killerid, playerid, reason); return 1; }
|
Stereotype already told you.
Re: Login & Logout List -
Stereotype - 29.12.2013
https://sampwiki.blast.hk/wiki/SendDeathMessage
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid, playerid, reason);
return 1;
}