14.03.2013, 16:32
I am looking for a way to give player a jetpack. This is old way I used:
But in my new GM this command doesnt work. I think it is because there players play on a map which is located far away from SA map, in the sea. I am looking for any other ways to give player jetpack. I hope yopu can help. Thank you in advance.
pawn Код:
if (!strcmp("/jet", cmdtext, true))
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreatePickup(370, 4, x, y, z);
return 1;
}