AddStaticPickup
From SA-MP Wiki
AddStaticPickup
This function adds an object to the game in a pickupable form.
(model, type, Float:X, Float:Y, Float:Z, Virtualworld)
| model | The model of the pickup. |
| type | The pickup spawn type, see further down this page. |
| Float:X | The X coordinate to create the pickup at. |
| Float:Y | The Y coordinate to create the pickup at. |
| Float:Z | The Z coordinate to create the pickup at. |
| virtualworld | The virtual world ID of the pickup. Use -1 to show the pickup in all worlds. |
| Returns | 1 if the pickup is successfully created. |
public OnGameModeInit( ) { // Create a pickup for armor. AddStaticPickup(1242, 2, 1503.3359, 1432.3585, 10.1191, 0); // Create a pickup for some health, right next to the armour. AddStaticPickup(1240, 2, 1506.3359, 1432.3585, 10.1191, 0); // return 1; }
Related Functions
The following functions might be useful as well, as they're related to this function in one way or another.
- CreatePickup: Create a pickup.
- DestroyPickup: Destroy a pickup.
Related Callbacks
The following callbacks might be useful, as they're related to this function in one way or another.
- OnPlayerPickUpPickup: Called when a player picks up a pickup.
