Need help with a server opening - 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: Need help with a server opening (
/showthread.php?tid=404393)
Need help with a server opening -
ElCowboy - 02.01.2013
Ok, I need help making a server opener, i know the basic script, but I just don't know how to make it.
Here's a video of how I want the server opening screen.
I know it's possible.....
Please help, I can pay VIA Paypal.
link of opening screen: [ame]http://www.youtube.com/watch?v=uFog0XGiO4k[/ame]
Re: Need help with a server opening -
aslan890 - 02.01.2013
Text draw
Re: Need help with a server opening -
ElCowboy - 02.01.2013
Yes, the tetdraw and the background of how the camera is.
please, i'll pay VIA PAYPAL
Re: Need help with a server opening -
aslan890 - 02.01.2013
Quote:
Originally Posted by ElCowboy
Yes, the tetdraw and the background of how the camera is.
please, i'll pay VIA PAYPAL
|
Stop writing paypal this is help section or i have to report you
Re: Need help with a server opening -
xSiiiLenTx - 02.01.2013
No need to pay friend! check out (
www.wiki.sa-mp.com) for tutorials on textdraws, and other things like this!
Re: Need help with a server opening -
aslan890 - 02.01.2013
Quote:
Originally Posted by xSiiiLenTx
No need to pay friend! check out ( www.wiki.sa-mp.com) for tutorials on textdraws, and other things like this!
|
You mean >
https://sampwiki.blast.hk/
Re: Need help with a server opening -
Mr.Anonymous - 02.01.2013
The movement of camera is done by
InterpolateCameraPos.
Re: Need help with a server opening -
ElCowboy - 02.01.2013
OOO Thank you friends.
and sorry aslan, I didn't know.
Re: Need help with a server opening -
aslan890 - 02.01.2013
Quote:
Originally Posted by ElCowboy
OOO Thank you friends.
and sorry aslan, I didn't know.
|
Ok! no problem
Re: Need help with a server opening -
ElCowboy - 02.01.2013
Ok, but I want it like the speed of the video above.
heres the code below:
Quote:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/moveme", true))
{
TogglePlayerSpectating(playerid, 1);
InterpolateCameraPos(playerid, 0.0, 0.0, 10.0, 1000.0, 1000.0, 30.0, 10000, CAMERA_MOVE);
//Move the player's camera from point A to B in 10000 milliseconds (10 seconds).
return 1;
}
return 0;
|