SA-MP Forums Archive
mta to samp - 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: mta to samp (/showthread.php?tid=480647)



mta to samp - Gafsi - 12.12.2013

hello why when i convert object from mta to samp i got a lot of zero!!

pawn Код:
CreateObject(2920,1544.6999500,-1630.8000500,13.1000000,0.0000000,0.0000000,0.0000000); //object(police_barrier) (1)



Re: mta to samp - Loot - 12.12.2013

It's just the accuracy of the position.
pawn Код:
CreateObject(2920,1544.6999500,-1630.8000500,13.1000000,0.0000000,0.0000000,0.0000000); //object(police_barrier) (1)
Same as:
pawn Код:
CreateObject(2920,1544.6999500,-1630.8000500,13.1000000,0,0,0); //object(police_barrier) (1)