Help with one ID ? - 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: Help with one ID ? (
/showthread.php?tid=320990)
Help with one ID ? -
backnot - 25.02.2012
Hi guys , I need the ID of one door to remove it , but I can't find it anywhere.
The door is in my left

Can somebody help me ?
Thanks.
Re: Help with one ID ? -
Aira - 25.02.2012
There's a name "Door" on your file (.pwn) if you converted it via convertffs.. Look for it
Re: Help with one ID ? -
backnot - 25.02.2012
The door is not added . It's from the game.
Re: Help with one ID ? -
Vince - 25.02.2012
Correct, the door is SCM generated and I think the SA-MP team forgot to remove it, among other objects. The plastics factory in west Las Venturas is blocked off by a shutter too. Here is the code for the door:
Код:
$2703 = Object.Init(#AB_CASDORLOK, 2168.644, 1619.43, 1000.3)
0566: link_object $2703 to_interior 1
Object.Angle($2703) = 270.0
Object.RemoveFromMissionCleanupList($2703)
Object model is 3089. So:
pawn Код:
public OnPlayerConnect(playerid)
{
RemoveBuildingForPlayer(playerid, 3089, 2168.644, 1619.43, 1000.3, 0.25);
return 1;
}
Re: Help with one ID ? -
backnot - 25.02.2012
Thanks, Vince !