SA-MP Forums Archive
How to do that? - 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 to do that? (/showthread.php?tid=160944)



How to do that? - RatHack - 18.07.2010

Hello

I want to put this. when the person connect appears blue icon and when disconnect appear red

something the attach file


Re: How to do that? - bartje01 - 18.07.2010

Well. I don't think this is possible. Because that picture is a picture of the deadlist.
Youcan just make a SendClientMessageToAll


Re: How to do that? - Mystique - 18.07.2010

You can't modify the deathlist by putting those icons in there. You can't actually put them anywhere. Do as Bartje01 said, use SendClientMessageToAll or create textdraws to make it look cooler.


Re: How to do that? - [L3th4l] - 18.07.2010

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

pawn Код:
public OnPlayerDisconnect(playerid)
{
  SendDeathMessage(INVALID_PLAYER_ID, playerid, 201);
}