Ugrás a fő tartalomhoz

ShowPickupForPlayer

vigyázat

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

Description

Shows a pickup for a specific player.

NameDescription
playeridThe ID of the player.
pickupidThe ID of the pickup to display for the player.

Returns

This function always returns true.

Examples

new g_Pickup;

public OnGameModeInit()
{
g_Pickup = CreatePickup(1239, 1, 1686.6160, 1455.4277, 10.7705, -1);
return 1;
}

public OnPlayerSpawn(playerid)
{
ShowPickupForPlayer(playerid, g_Pickup);
return 1;
}