06.09.2014, 20:53
How ?
the Enter Cmd work with Dynamic Doors , biz and houses why with the hitman HQ ?
Under Cmd : Enter
And CMD : Exit
the Enter Cmd work with Dynamic Doors , biz and houses why with the hitman HQ ?
Under Cmd : Enter
pawn Код:
// Hitman HQ
else if(IsPlayerInRangeOfPoint(playerid, 2.0, 1938.545898, 165.629531, 37.281250))
{
if(PlayerInfo[playerid][pFaction] == 4 || PlayerInfo[playerid][pLeader] == 4)
{
SetPlayerVirtualWorld(playerid, 666420);
PlayerInfo[playerid][pVW] = 666420;
SetPlayerInterior(playerid, 42);
PlayerInfo[playerid][pInt] = 42;
SetPlayerPos(playerid, 1277.019165, -758.428771, 5080.750000);
SetPlayerFacingAngle(playerid, 358.16);
SetCameraBehindPlayer(playerid);
LoadObjectsForPlayer(playerid);
SendClientMessage(playerid, COLOR_WHITE, "You can /order weaponry in the armory room.");
}
}
pawn Код:
// Hitman HQ
else if(IsPlayerInRangeOfPoint(playerid, 2.0, 1277.019165, -758.428771, 5080.750000) && (GetPlayerVirtualWorld(playerid) == 666420))
{
if(PlayerInfo[playerid][pFaction] == 4 || PlayerInfo[playerid][pLeader] == 4)
{
SetPlayerVirtualWorld(playerid, 0);
PlayerInfo[playerid][pVW] = 0;
SetPlayerInterior(playerid, 0);
PlayerInfo[playerid][pInt] = 0;
SetPlayerPos(playerid, 1938.545898, 165.629531, 37.281250);
SetPlayerFacingAngle(playerid, 338.54);
SetCameraBehindPlayer(playerid);
}
}