How to make tuortial ? - 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 make tuortial ? (
/showthread.php?tid=246326)
How to make tuortial ? -
Alex.Cone - 03.04.2011
How to make tuortial when somebody first time connecting on server ? I have register login system just need that !
Re: How to make tuortial ? -
Baboon - 03.04.2011
at onplayerconnect, do return 0; ( I think that will work). Then open a new public function like: publicfunction(playerid); Put that in onplayerconnect.
then use in that public function your stuff.
Like:
forward mypublicfunction(playerid);
public function(playerid)
{
blabla
return 1;
}
Re: How to make tuortial ? -
Alex.Cone - 03.04.2011
I don't understand nothing .