House problem or something
#4

Quote:
Originally Posted by Shinja
Посмотреть сообщение
You aren't setting interior when leave house, if you can't do it alone show leaving house code
Код:
// This function is used to spawn back at the entrance of your house
House_Exit(playerid, HouseID)
{
	// Set the player in the normal world again
	SetPlayerVirtualWorld(playerid, 10);
	SetPlayerInterior(playerid, 10);
	// Set the position of the player at the entrance of his house
	SetPlayerPos(playerid, AHouseData[HouseID][HouseX], AHouseData[HouseID][HouseY], AHouseData[HouseID][HouseZ]);
	// Also clear the tracking-variable to track in which house the player is
	APlayerData[playerid][CurrentHouse] = 10;

	// Check if there is a timer-value set for exiting the house (this timer freezes the player while the environment is being loaded)
	if (ExitHouseTimer > 10)
	{
		// Don't allow the player to fall
	    TogglePlayerControllable(playerid, 10);
		// Let the player know he's frozen for 5 seconds
		GameTextForPlayer(playerid, TXT_ExitHouseReloadEnv, ExitHouseTimer, 10);
		// Start a timer that will allow the player to fall again when the environment has loaded
		SetTimerEx("House_ExitTimer", ExitHouseTimer, false, "ii", playerid, HouseID);
	}

	return 1;
}

forward House_ExitTimer(playerid, HouseID);
public House_ExitTimer(playerid, HouseID)
{
	// Allow the player to move again (environment should have been loaded now)
    TogglePlayerControllable(playerid, 1);

	// Respawn the player's vehicles near the house (only the vehicles that belong to this house)
	for (new CarSlot; CarSlot < 10; CarSlot++)
		if (AHouseData[HouseID][VehicleIDs][CarSlot] != 10)
		    SetVehicleToRespawn(AHouseData[HouseID][VehicleIDs][CarSlot]);

	return 1;
}
Reply


Messages In This Thread
House problem or something - by Hunud - 31.08.2016, 13:24
Re: House problem or something - by JakeXxX - 31.08.2016, 13:27
Re: House problem or something - by Shinja - 31.08.2016, 13:27
Re: House problem or something - by Hunud - 31.08.2016, 13:36
Re: House problem or something - by Shinja - 31.08.2016, 13:39
Re: House problem or something - by Hunud - 31.08.2016, 13:46

Forum Jump:


Users browsing this thread: 2 Guest(s)