pickup parachute ?
#1

how i make so there is a parachute pickup? parachute pickup id is: 1310 . i want to pickup to be here: 315.8856,974.9424,1961.2294

and the interior i want it to be in is: 9

please help? thanks!!
Reply
#2

Look at the CreatePickup page, and the streamer page.
You need the streamer to only place the pickup in interior 9.
pawn Код:
CreateDynamicPickup(1310, 1, 315.8856, 974.9424, 1961.2294, -1, 9, -1, 100.0);
Reply
#3

pickup for some reason no show up? why?
Reply
#4

pawn Код:
CreateDynamicPickup(1310, 2, 315.8856, 974.9424, 1961.2294, 9, 9, -1, 100.0);
Reply
#5

Quote:
Originally Posted by newbienoob
Посмотреть сообщение
pawn Код:
CreateDynamicPickup(1310, 2, 315.8856, 974.9424, 1961.2294, 9, 9, -1, 100.0);
nothing happen and nothing show up
Reply
#6

Here's an example of the usage. Try this one.
pawn Код:
new money;
 
public OnGameModeInit()
{
    money = CreatePickup(1274, 2, 0.0, 0.0, 9.0); // Change the coordinates where you want this pickup to be.
    return 1;
}
 
public OnPlayerPickUpPickup(playerid, pickupid)
{
    if(pickupid == money) GivePlayerMoney(playerid,10000);
    return 1;
}
Reply
#7

You said it doesnt shows up, but you also said it had to be in interior 9 so make sure you are in interior 9 yourself too, else if you arent in interior 9 then it wont show up
Reply
#8

i fixed it. i put -1 for world instead of 9 . i know interior is 9 but it wont work like that so i put -1. thx gys!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)