how to delete house of pickup - 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 delete house of pickup (
/showthread.php?tid=589746)
how to delete house of pickup -
sayaunta - 22.09.2015
can anybody tell me how to delete house of pickup
![Huh?](images/smilies/confused.gif)
wat
Re: how to delete house of pickup -
karemmahmed22 - 22.09.2015
What you mean?
If you wanna delete pickup, please use
https://sampwiki.blast.hk/wiki/DestroyPickup
Re: how to delete house of pickup -
sayaunta - 22.09.2015
Quote:
Originally Posted by karemmahmed22
|
how to use it...
Re: how to delete house of pickup -
karemmahmed22 - 22.09.2015
example
under your
defines
PHP код:
new housePickup;
OnGamemodeInit(or whatever you creating the pickup on)
PHP код:
housePickup = CreatePickup(model, type , x , y , z );
To destroy it(place anywhere in your script, maybe in the command or callback you want to destroy the pickup on)
PHP код:
DestroyPickup(housePickup);
Re: how to delete house of pickup -
sayaunta - 22.09.2015
Quote:
Originally Posted by karemmahmed22
example
under your defines
PHP код:
new housePickup;
OnGamemodeInit(or whatever you creating the pickup on)
PHP код:
housePickup = CreatePickup(model, type , x , y , z );
To destroy it(place anywhere in your script, maybe in the command or callback you want to destroy the pickup on)
PHP код:
DestroyPickup(housePickup);
|
but..at my ongamemodeinit,i never create pickup b4...
Re: how to delete house of pickup -
karemmahmed22 - 22.09.2015
i said whatever and wherever you creating the pickup, if you didn't created the pickup, how you'll destroy it?
Re: how to delete house of pickup -
sayaunta - 22.09.2015
Quote:
Originally Posted by karemmahmed22
i said whatever and wherever you creating the pickup, if you didn't created the pickup, how you'll destroy it?
|
idk..i never create it...it appear
Re: how to delete house of pickup -
karemmahmed22 - 22.09.2015
just search in your filterscripts/gamemode for "CreatePickup" and delete the line.
Re: how to delete house of pickup -
sayaunta - 22.09.2015
ok tq