Skip to content

OnApartmentRoomCheckedout

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnApartmentRoomCheckedout( BasePlayer player, ApartmentRoom playerApartment, ApartmentBuilding instance )
{
    Puts( "OnApartmentRoomCheckedout works!" );
}

Location

  • ApartmentBuilding::TryCheckout(BasePlayer player)
csharp
//---
	if (obj != null)
	{
		return false;
	}
	Checkout(playerApartment);
	Interface.CallHook("OnApartmentRoomCheckedout", player, playerApartment, this);
	return true;
}

Released under the MIT License.