How to remove original objects ? - 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: How to remove original objects ? (
/showthread.php?tid=310526)
How to remove original objects ? -
ahmeddirect - 12.01.2012
i'm new in scripting , so
how to removed original ojects to add my objects ?
Re: How to remove original objects ? -
Papier - 12.01.2012
https://sampforum.blast.hk/showthread.php?tid=282801
Look here
Re: How to remove original objects ? -
Babul - 12.01.2012
for removing any GTA objects, have a look @
https://sampwiki.blast.hk/wiki/RemoveBuildingForPlayer
heres one of my stocks used in a filterscript. works well...
pawn Код:
public OnPlayerConnect(playerid){
RemoveKACCGates(playerid);
return 1;
}
pawn Код:
stock RemoveKACCGates(playerid){
RemoveBuildingForPlayer(playerid,985,2495,2772,10,20);
RemoveBuildingForPlayer(playerid,986,2495,2772,10,20);
return 1;
}