how to make a welcome screen? - 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 to make a welcome screen? (
/showthread.php?tid=390558)
how to make a welcome screen? -
DerickClark - 06.11.2012
how to make a welcome screen
Re: how to make a welcome screen? -
ThePhenix - 06.11.2012
Below OnPlayerConnect
PHP код:
GameTextForPlayer(playerid, "Welcome to my Server", 3000, 1);
Re: how to make a welcome screen? -
DerickClark - 06.11.2012
Dont work.
Re: how to make a welcome screen? - Patrick - 06.11.2012
or just copy this
Код:
public OnPlayerConnect(playerid)
{
GameTextForPlayer(playerid, "~b~Welcome To <servername>", 3000, 3);
return 1;
}
Re: how to make a welcome screen? -
Private200 - 06.11.2012
Код:
public OnPlayerConnect(playerid)
{
ShowGameTextForPlayer(playerid, "~b~Welcome To <servername>", 3000, 3);
return 1;
}