02.08.2014, 16:14
Код:
pickupexample = CreatePickup(1239, 1, coordonate x, y, z);
now instead of putting the textdraw in OnPlayerSpawn put it here on OnPlayerPickUpPickup
Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == pickupexample)
{
TextDrawShowForPlayer(playerid, textid);
return 1;
}

