You want to say that you open your server, and after a while, it just doesn't appear în the masterlist? It happens to me everytime... I think the problem is the announce plugin or the masterlist.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menuelse if(cmd == "int")
{
if( !text )
{
MessagePlayer( "Error - Correct Syntax - /int <interior name>", player );
MessagePlayer( "Available interior names - bistro, lawyer, strip, concerth, bank 1/2, studio, dtemtyshop, room", player );
}
else if( IsNum(text) )
{
MessagePlayer( "Error - The parameter cannot be a number !", player);
MessagePlayer( "Available interior names - bistro, lawyer, strip, concerth, bank 1/2, studio, dtemtyshop, room", player );
}
else
{
switch(text)
{
case "bistro":
player.Pos = Vector( -446.831, -352.636, 6.91663 );
break;
case "lawyer":
player.Pos = Vector( 140.42, -1367.74, 13.2634 );
break;
case "strip":
player.Pos = Vector( 90.6799, -1466.88, 10.872 );
break;
case "concerth":
player.Pos = Vector( -943.601, 1081.99, 11.342 );
break;
case "bank 1":
player.Pos = Vector( -907.181, -354.405, 13.8653 );
break;
case "bank 2":
player.Pos = Vector( -907.133, -327.816, 13.8653 );
break;
case "studio":
player.Pos = Vector( -880.085, 1152.28, 17.9996 );
break;
case "dtemtyshop":
player.Pos = Vector( -474.188, 1066.3, 11.3733 );
break;
case "room":
player.Pos = Vector( 397.698, 253.251, 15.7615 );
break;
default: MessagePlayer( "Error - The written interior name doesn't exist !", player );
MessagePlayer( "Available interior names - bistro, lawyer, strip, concerth, bank 1/2, studio, dtemtyshop, room", player );
break;
}
}
}
[/spoiler]
Quote from: stormeus on Jul 16, 2014, 09:27 AMRelative positioning was something that was supposed to be implemented but wasn't. Throwing that in the TODO for an upcoming minor update.