Vehicles not spawning [MYSQL] - 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: Vehicles not spawning [MYSQL] (
/showthread.php?tid=382924)
Vehicles not spawning [MYSQL] -
Djole1337 - 05.10.2012
________
Re: Vehicles not spawning [MYSQL] -
CmZxC - 05.10.2012
because you did not fetch data for anything else but the myVehicles, you need to fetch data for all:
pawn Код:
sscanf(Query, "e<p<|>dffffdd>", myVehicles[i],myVehicles[i][vPositionX], myVehicles[i][vPositionY], myVehicles[i][vPositionZ], myVehicles[i][vAngleZ], myVehicles[i][vColor1], myVehicles[i][vColor2]);
Re: Vehicles not spawning [MYSQL] -
Djole1337 - 05.10.2012
________