Skip to content

added minimalistic house interiors #932

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 11 additions & 15 deletions AutoDuty/Helpers/GotoHousingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,17 @@ internal static bool InPrivateHouse(Housing whichHousing) =>
(TeleportHelper.ApartmentTeleportId == 97 && Svc.ClientState.TerritoryType == 655) || //Shirogane
(TeleportHelper.ApartmentTeleportId == 165 && Svc.ClientState.TerritoryType == 999)) || //Empyreum
//FC Estates
(whichHousing == Housing.FC_Estate && TeleportHelper.FCEstateTeleportId is 56 or 57 or 58 or 96 or 164 &&
Svc.ClientState.TerritoryType is
282 or 283 or 284 or
342 or 343 or 344 or
345 or 346 or 347 or
649 or 650 or 651 or
980 or 981 or 982) ||
//Private houses
(whichHousing == Housing.Personal_Home && TeleportHelper.PersonalHomeTeleportId is 59 or 60 or 61 or 97 or 165 &&
Svc.ClientState.TerritoryType is
282 or 283 or 284 or
342 or 343 or 344 or
345 or 346 or 347 or
649 or 650 or 651 or
980 or 981 or 982);
(whichHousing == Housing.FC_Estate && TeleportHelper.FCEstateTeleportId is 56 or 57 or 58 or 96 or 164 ||
//Private houses
whichHousing == Housing.Personal_Home && TeleportHelper.PersonalHomeTeleportId is 59 or 60 or 61 or 97 or 165) &&

Svc.ClientState.TerritoryType is
282 or 283 or 284 or
342 or 343 or 344 or
345 or 346 or 347 or
649 or 650 or 651 or
980 or 981 or 982 or
1249 or 1250 or 1251; //minimalistic

internal static bool InHousingArea(Housing whichHousing) =>
//Mist
Expand Down