Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // Vamos ao Comando Entrar
  2. if(strcmp(cmdtext, "/entrandointerior", true) == 0) // Comando ( Não Importa Vamos Usar o F )
  3. {
  4.    // Ou Seja. Se Ele tiver no Local Do IsPlayerInRangeOfPoint, Funcionará as Funções Abaixo
  5.    if(IsPlayerInRangeOfPoint(playerid, 2.0, 2695.6880, -1704.6300, 11.8438))
  6.    {
  7.        SetPlayerInterior(playerid, 11); // .Setando o Interior ao Entrar
  8.        SetPlayerPos(playerid, 1503.3359, 1432.3585, 10.1191); // Setado Para Aqui ( TELE )
  9.    }
  10.    return true; // Returnando a 1
  11. }