24.09.2013, 12:59
You have to make a Command with zcmd called "enter"
Let me give you an Example:
If you won't understand, feel free to reply here Again.
Let me give you an Example:
pawn Код:
CMD:enter(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid, 5, x,y,z)) //Set Range from where Player can do /enter
{
SetPlayerPos(playerid, x,y,z); //Set Position of Player by doing /save in game.
SetPlayerInterior(playerid, <interiorid>); //Check Interior ID from ******
}
return 1;
}