SA-MP Forums Archive
[question] how to make a rp tutorial - 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: [question] how to make a rp tutorial (/showthread.php?tid=285420)



[question] how to make a rp tutorial - biogenic1 - 24.09.2011

is theres a tutorial on how to make an rp tutorial for when a player registers to server, i mean just show tutorial once after a new player registers, ive searched thru ****** and thru forus search but im not lucky to find one.


Re: [question] how to make a rp tutorial - grantism - 24.09.2011

Explain what you mean? Like to show different area's of your map? you need a timer, and and you need a switch scenario i believe, i'm new my self but I believe this is what you need hopefully a more experienced user will help you. Good luck.


Re: [question] how to make a rp tutorial - biogenic1 - 24.09.2011

nah , i just need to show rules and few commands only with one camera , but giving time beetween paragraphs so the player can read them completely, this tutorial should just be shown on player register.


Re: [question] how to make a rp tutorial - grantism - 24.09.2011

Use timers for the time that you want to set ^_^, for showing rules only to the newly registered users do as follows:
At the top
Код:
 new fresh = 0;
Then after they have already registered and have just logged in type :
Код:
fresh = 1;
then in OnPlayerSpawn
type
Код:
if(fresh == 0 )
{
 // your message to the NEW players
}
// out here is what you want to say to the players coming back again or the players who died and respawned.
EDIT: Did i help you?