How to make a pickup that... - 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 make a pickup that... (
/showthread.php?tid=533621)
How to make a pickup that... -
TheRaGeLord - 25.08.2014
Hey Guys..! My Question Is That How To Make a Pickup That Doesn't Disappears When We Touch It...As I Have Seen In Many Server Some "i" icon shape pickup.. which doesn't disappears when we touch it...
Re: How to make a pickup that... -
Mzake - 25.08.2014
Thats Easy look: example:
pawn Код:
public OnGameModeInit()
{
pickup = CreatePickup(1242, 2, 1503.3359, 1432.3585, 10.1191, -1);// change "2" its the type!
return 1;
}
You can find types
HERE
Re : How to make a pickup that... -
Lexus95 - 25.08.2014
All you have to do is to chose the pickup type 1, it wont disappear when you touch it, and check this for all the pickup types
https://sampwiki.blast.hk/wiki/PickupTypes.
Re: How to make a pickup that... -
TheRaGeLord - 25.08.2014
Thnx friends..