24.10.2011, 20:16
well to delet the yellow markets you will have to put:
Then add your own using Pickups...
pawn Код:
public OnGameModeInit()
{
DisableInteriorEnterExits();
return 1;
}
pawn Код:
new tele;
public OnGameModeInit()
{
tele = CreatePickup(model, type, Float:X, Float:Y, Float:Z, Virtualworld)
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == tele) SetPlayerPos(playerid,x, y, z);
return 1;
}