23.12.2016, 20:15
PHP код:
CMD:entrar(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, 1154.0200,-1772.6787,16.5992))
{
SetPlayerInterior(playerid, 3);
SetPlayerPos(playerid,1491.8854,1305.9750,1093.2964); // Setado Para Aqui ( TELE )
}
return 1;
}
CMD:sair(playerid)
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, 1494.3815,1303.5789,1093.2891))
{
SetPlayerInterior(playerid, 0); // Setando o Interior ao Sair.
SetPlayerPos(playerid, 1154.0200,-1772.6787,16.5992); // Setado Para Aqui ( TELE )
}
return 1;
}