SA-MP Forums Archive
[Help]Monster mod question - 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: [Help]Monster mod question (/showthread.php?tid=98502)



[Help]Monster mod question - GiP_YossI - 21.09.2009

Hey
in the regular monter mod,that build in the samp server 0.2.X
i have a question.
How to make my own bike in line?
Код:
public OnGameModeInit()
{
	new Float:bikeX = 393.8199;
	new count;
	
	// Mountain bikes/BMXes
	for(count = 0; count <= 10; count++) {
		AddStaticVehicle(481,bikeX,2547.0911,16.0545,356.9482,-1,-1);
		AddStaticVehicle(510,bikeX,2538.3503,16.1516,356.1028,-1,-1);
		bikeX -= 2.5;
	}
	
	return 1;
}
i mean i want to know how this code works!
And what i need to change to have like 5-6 bikes,Where i want?
thanks


Re: [Help]Monster mod question - GiP_YossI - 21.09.2009

Help?