15.11.2010, 21:45
THIS should help.
Now, we all thank you for your very professional title, as "Help :S" ovbiously tells us you want to make a teleport so that when someone walks into the area it teleports them.
Maybe a more professional title would be "Teleporting by Area".
But okay. I Guess. I will give you a little boost:
Good Day,
6d
Now, we all thank you for your very professional title, as "Help :S" ovbiously tells us you want to make a teleport so that when someone walks into the area it teleports them.
Maybe a more professional title would be "Teleporting by Area".
But okay. I Guess. I will give you a little boost:
pawn Код:
public Check()
{
for(new i=0;i<MAX_PLAYERS;i++)
{
if(IsPlayerInRangeOfPoint(i, 2/*this is the range*/, x, y, z/*Coordinates here*/))
{
SetPlayerInterior(playerid, /*the interior you want*/);
SetPlayerPos(playerid, /*Coordinates you want*/);
}
}
return 1;
}
public OnGameModeInit()
{
SetTimer("Check", 1000, true);
return 1;
}
6d