SA-MP Forums Archive
Money bag - 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: Money bag (/showthread.php?tid=395680)



DELETED - Er@x3r - 27.11.2012

"DELETED"


Re: Money bag - GoldZoroGrab - 27.11.2012

pawn Код:
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
CreatePickup(1550, 2, X, Y, Z);
this code to create a moneybag, good?


Re: Money bag - Er@x3r - 27.11.2012

thanks man!


AW: Money bag - Skimmer - 27.11.2012

But use x + 2, because the object will spawn direct in the position where you are.
pawn Код:
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
CreatePickup(1550, 2, X + 2, Y, Z);



Re: Money bag - Er@x3r - 27.11.2012

Thanks