SA-MP Forums Archive
[HELP] Connect / Disconnect 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: [HELP] Connect / Disconnect icon (/showthread.php?tid=79243)



[HELP] Connect / Disconnect icon - _Vortex - 26.05.2009

How do I make it so when someone disconnects/connects it shows these boxes:




Thanks


Re: [HELP] Connect / Disconnect icon - Puzi - 26.05.2009

Have a look. I used that script once It should be available for download.


Re: [HELP] Connect / Disconnect icon - lol2112 - 26.05.2009

Put this under OnPlayerConnect:

Код:
SendDeathMessage(playerid, INVALID_PLAYER_ID, 200);
And this under OnPlayerDisconnect:

Код:
SendDeathMessage(INVALID_PLAYER_ID, playerid, 201);



Re: [HELP] Connect / Disconnect icon - _Vortex - 26.05.2009

Thanks a bunch


Re: [HELP] Connect / Disconnect icon - BP13 - 26.05.2009

which one is the connect one and which one is the disconnect one?


Re: [HELP] Connect / Disconnect icon - woot - 26.05.2009

Quote:
Originally Posted by [SU
BP13 ]
which one is the connect one and which one is the disconnect one?
Depends on how you want it.
Scroll down to the very bottom; https://sampwiki.blast.hk/wiki/Weapons


Re: [HELP] Connect / Disconnect icon - propilot - 26.05.2009

Quote:
Originally Posted by [SU
BP13 ]
which one is the connect one and which one is the disconnect one?
Connect

SendDeathMessage(playerid, INVALID_PLAYER_ID, 200);

Disconnect

SendDeathMessage(INVALID_PLAYER_ID, playerid, 201);


Re: [HELP] Connect / Disconnect icon - BP13 - 26.05.2009

Quote:
Originally Posted by //exora
Quote:
Originally Posted by [SU
BP13 ]
which one is the connect one and which one is the disconnect one?
Depends on how you want it.
Scroll down to the very bottom; https://sampwiki.blast.hk/wiki/Weapons
wow that's a great link for everything thanks.