ShowScoreBoard?? - 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: ShowScoreBoard?? (
/showthread.php?tid=208940)
ShowScoreBoard?? -
[MNC]Azz - 09.01.2011
I was wondering if there is a way for the scoreboard to appear without pressing Tab?
I would really appreciate your help...
Example of what I want:
pawn Код:
ShowScoreBoardForPlayer(playerid);
ShowScoreBoardForAll();
HideScoreBoardForPlayer(playerid);
HideScoreBoardForAll();
Regards!
EDIT: I know you can do that with TextDraws but i would still like this better...
Re: ShowScoreBoard?? -
Mauzen - 09.01.2011
pawn Код:
stock ShowScoreBoardForPlayer(playerid)
{
SendClientMessage(playerid, 0xFF0000FF, "Please press TAB now!");
}
stock ShowScoreBoardForAll()
{
SendClientMessageToAll(0xFF0000FF, "Please press TAB now!");
}
//same code for hide
Should work
There is no way to script this yet, maybe it will be added in future versions.
Re: ShowScoreBoard?? -
[MNC]Azz - 09.01.2011
Quote:
Originally Posted by Mauzen
pawn Код:
stock ShowScoreBoardForPlayer(playerid) { SendClientMessage(playerid, 0xFF0000FF, "Please press TAB now!"); } stock ShowScoreBoardForAll() { SendClientMessageToAll(0xFF0000FF, "Please press TAB now!"); } //same code for hide
Should work
There is no way to script this yet, maybe it will be added in future versions.
|
OMG HAHAHA Lawl...
Epic answer, but thanks anyway xD
Re: ShowScoreBoard?? -
Mike Garber - 09.01.2011
You can make a somewhat scoreboard with Dialogs, don't ask me to explain because I wont.
Re: ShowScoreBoard?? -
[MNC]Azz - 09.01.2011
Quote:
Originally Posted by Mike Garber
You can make a somewhat scoreboard with Dialogs, don't ask me to explain because I wont.
|
Oh Yeah! I totally forgotten about the dialogs! Thanks man