SA-MP Forums Archive
fountain help - 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: fountain help (/showthread.php?tid=367679)



fountain help - srcka< - 10.08.2012

how i make moving fountain like on pictures please ?

http://zaslike.com/viewer.php?file=k...nwjje3ygw4.png
http://zaslike.com/viewer.php?file=r...o0xd24rrcv.png
http://zaslike.com/viewer.php?file=w...400fhsbj5x.png
http://zaslike.com/viewer.php?file=a...5brah804pd.png


Re: fountain help - MeDaKewlDude - 10.08.2012

use the function CreateObject in OnGameModeInit() / OnFilterScriptInit()
pawn Код:
CreateObject(9833,X,Y,Z,0,0,0);
replace X Y and Z with the position.


Re: fountain help - srcka< - 10.08.2012

thanks


Re: fountain help - RedFusion - 10.08.2012

That wont make it move.
Assign the object do an ID.
For example
new movingobject;
movingobject = CreateObject(blabla..)
And then further down in your script MoveObject(movingobject,X,Y,Z,etc etc);