INTRO - 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: INTRO (
/showthread.php?tid=142707)
INTRO -
luigifan9 - 19.04.2010
How can i make an intro, like when you type /intro it will show a camera in a certain place? i just need the command to like put a players camera somewhere. I already know toggleplayercontrollable and that stuff
Re: INTRO -
Adil - 19.04.2010
pawn Код:
if(strcmp(cmdtext,"/intro",true)0 == 0)
{
SetPlayerCamera(playerid,X,Y,Z);
return 1;
}
Re: INTRO -
luigifan9 - 19.04.2010
Quote:
Originally Posted by Adil
pawn Код:
if(strcmp(cmdtext,"/intro",true)0 == 0) { SetPlayerCamera(playerid,X,Y,Z); return 1; }
|
thank you a lot, that is the only command i needed