Hmmm.. I am pretty sure he wants a system so that when you get close to a door without having to type anything it spawns you into that interior basically like single player.
This is how I read it.
Quote:
Originally Posted by daastle
So here is my idea.I want to make , lets say , a bank . So what I want to enter is an automatic "get close to the door" thing.
|
-So here is my idea. I want to make, lets say, a bank . So I want to be automatically placed inside the interior when you get close to the door icon.
I may be wrong and please correct me if I am but, it doesn't seem like he wants a /enter /exit command from my perspective.
Side note,
You should probably want to set the virtual world too.
Quote:
Originally Posted by Boooth
pawn Код:
public OnGameModeInit () {CreatePickup (1559, 23, X, Y, Z, VirtualWorld ); public OnPlayerCommandText (playerid, cmdtext []) { if(!strcmp(cmdtext, "/enter", true )) { if(IsPlayerInRangeOfPoint (playerid, 5.0, X, Y, Z )) //This checks to see if the player is within the marker { SetPlayerInterior (playerid, interiorid ); // SetPlayerPos (playerid, X, Y, Z ); //interior pos http://weedarr.wikidot.com/interior } return 1; } if(!strcmp(cmdtext, "/exit", true )) { if(IsPlayerInRangeOfPoint (playerid, 5.0, X, Y, Z )) { SetPlayerInterior (playerid, interiorid ); SetPlayerPos (playerid, X, Y, Z ); } return 1; } return 0; }
|
pawn Код:
public OnPlayerCommandText
(playerid, cmdtext
[]) { if(!strcmp(cmdtext,
"/enter", true
)) { if(IsPlayerInRangeOfPoint
(playerid,
5.0, X, Y, Z
)) //This checks to see if the player is within the marker { SetPlayerInterior
(playerid, interiorid
);
// SetPlayerVirtualWorld
(playerid,worldid
) SetPlayerPos
(playerid, X, Y, Z
);
//interior pos http://weedarr.wikidot.com/interior } return 1;
} if(!strcmp(cmdtext,
"/exit", true
)) { if(IsPlayerInRangeOfPoint
(playerid,
5.0, X, Y, Z
)) { SetPlayerInterior
(playerid, interiorid
);
SetPlayerVirtualWorld
(playerid,worldid
) SetPlayerPos
(playerid, X, Y, Z
);
} return 1;
} return 0;
}