DestroyPickup
Description:
Function DestroyPickup destroys a pickup created with CreatePickup.
Parameters:
(pickupid)
int | pickupid | The ID of the pickup to destroy (returned by CreatePickup). |
Return Values:
This function does not return any specific values.
Examples:
// Create a pickup for armor. pickup_armour = CreatePickup ( 1242, 2, 1503.3359, 1432.3585, 10.1191 ); //some time later... DestroyPickup(pickup_armour);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- CreatePickup: Create a pickup.
Related Callbacks
The following callbacks might be useful as well, as they are related to this callback in one way or another.
- OnPlayerPickUpPickup: Called when a player picks up a pickup.