22.11.2014, 15:57
How to tele pickup icon I?
please help me !
Bad English
new pickup1;
public OnGameModeInit()
{
pickup1 = CreatePickup(1239, 2, -423.699341, 2201.723145, 42.926292); //place of the pick up
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if (pickupid == pickup1) //If they piccked up pickup 1
{
SetPlayerPos(playerid,3935.8965,-1096.5420,3.2836); //nPositio to teleport to this x,y,z,
}
return 1;
}