05.02.2010, 19:11
The best way to find it out is testing 
You don't need to use what I posted above but that's a fast solution (testing).

pawn Код:
OnPlayerText(playerid, text[])
{
if(strcmp(text, "takeme", true) == 0)
{
SetPlayerInterior(playerid, 5);
SetPlayerPos(playerid, 246.1914, 1112.5812, 1085.0160);
SendClientMessage(playerid, COLOR, "Is this the interior you wanted to see?");
return 0;
}
return 1;
}

