SA-MP Forums Archive
Original coords deleted object in SA:MP - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: General (https://sampforum.blast.hk/forumdisplay.php?fid=13)
+--- Thread: Original coords deleted object in SA:MP (/showthread.php?tid=166361)



Original coords deleted object in SA:MP - WackoX - 08.08.2010

A while ago (I belive it was Kye) posted a list of original coordinates of standard objects deleted by SA:MP,
Such as A51 main door, missile door, and vent door, but i cannot find those anymore.
Does anyone still have them?


Re: Original coords deleted object in SA:MP - Vince - 08.08.2010

Didn't even took me 2 minutes to find in Main.scm
Code:
$OBJECT_M_A51_BLASTDOORR = Object.Init(#A51_BLASTDOORR, 215.941, 1874.571, 13.903)
Object.Angle($OBJECT_M_A51_BLASTDOORR) = 0.0
$OBJECT_M_A51_BLASTDOORL = Object.Init(#A51_BLASTDOORL, 211.842, 1874.571, 13.903)
Object.Angle($OBJECT_M_A51_BLASTDOORL) = 0.0
Object.RemoveFromMissionCleanupList($OBJECT_M_A51_BLASTDOORR)
Object.RemoveFromMissionCleanupList($OBJECT_M_A51_BLASTDOORL)
$2669 = Object.Init(#A51_LABDOOR, 297.766, 1842.618, 6.764)
Object.RemoveFromMissionCleanupList($2669)
$2670 = Object.Create(#A51_JETDOOR, 268.664, 1884.06, 15.925)
034D: rotate_object $2670 from_angle 90.0 to_angle 90.0 flag 0 
Object.RemoveFromMissionCleanupList($2670)



Re: Original coords deleted object in SA:MP - WackoX - 08.08.2010

Quote:
Originally Posted by Vince
View Post
Didn't even took me 2 minutes to find in Main.scm
Code:
$OBJECT_M_A51_BLASTDOORR = Object.Init(#A51_BLASTDOORR, 215.941, 1874.571, 13.903)
Object.Angle($OBJECT_M_A51_BLASTDOORR) = 0.0
$OBJECT_M_A51_BLASTDOORL = Object.Init(#A51_BLASTDOORL, 211.842, 1874.571, 13.903)
Object.Angle($OBJECT_M_A51_BLASTDOORL) = 0.0
Object.RemoveFromMissionCleanupList($OBJECT_M_A51_BLASTDOORR)
Object.RemoveFromMissionCleanupList($OBJECT_M_A51_BLASTDOORL)
$2669 = Object.Init(#A51_LABDOOR, 297.766, 1842.618, 6.764)
Object.RemoveFromMissionCleanupList($2669)
$2670 = Object.Create(#A51_JETDOOR, 268.664, 1884.06, 15.925)
034D: rotate_object $2670 from_angle 90.0 to_angle 90.0 flag 0 
Object.RemoveFromMissionCleanupList($2670)
Thank you!