Well, you also forgot to close your 'if' statement, try this:
Код:
public OnPlayerPickupPickup(playerid, pickupid)
{
if (pickupid == value) // Check that the picked up pickup id is the same as the id of the one we created
{
SetPlayerPos(playerid,1616.4656,-2249.4036,-2.8516);
}
return 1;
}