08-12-2019, 11:57 AM
Hello, I need you to help me in a pickup that I am doing, what I am doing is to create a pickup with the minigun icon and that when a player passes over the le of a minigun with 12 ammunition
I created the pickup with the minigun but when a player passes over it he doesn't give anything and I need help with that.
Here is the code I put:
new minigun;
///////////////////////////////////////////////////
public OnGameModeInit () {
minigun=CreatePickup (362, 1, 2489.5010, -1669.5480, 13.3359, 0);
return 1;
}
//////////////////////////////////////////////////// //
public OnPlayerPickUpPickup (playerid, pickupid)
{
if (pickupid == minigun)
{
GivePlayerWeapon (playerid, 362, 12);
}
return 1;
}
I created the pickup with the minigun but when a player passes over it he doesn't give anything and I need help with that.
Here is the code I put:
new minigun;
///////////////////////////////////////////////////
public OnGameModeInit () {
minigun=CreatePickup (362, 1, 2489.5010, -1669.5480, 13.3359, 0);
return 1;
}
//////////////////////////////////////////////////// //
public OnPlayerPickUpPickup (playerid, pickupid)
{
if (pickupid == minigun)
{
GivePlayerWeapon (playerid, 362, 12);
}
return 1;
}