Ana içeriğe geç

GetPlayerPickupModel

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

Gets the model ID of a player-pickup.

NameDescription
playeridThe ID of the player.
pickupidThe ID of the player-pickup to get the model ID of.

Returns

Returns the model ID of the player-pickup.

Examples

new PlayerPickup[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
PlayerPickup[playerid] = CreatePlayerPickup(playerid, 1239, 1, 2010.0979, 1222.0642, 10.8206, -1);

new model = GetPlayerPickupModel(playerid, PlayerPickup[playerid]);
// model = 1239
return 1;
}