Console shows personal housing as ID: 59, but this is wrong, as mine is set to 61. I would like to teleport to my personal house in between waiting for Eorzea time. I have the code listed below, and the map for Goblet is correct, because I can start the profile while in my House area and it works correctly. When the profile is in a different area, it correctly teleports to my house area, but will ignore anything outside this <TeleportTo Name="Personal Housing" AetheryteId="61" />. It never hits WaitTimer and never gets out of the TeleportTo command. Is there anything else I can try?
Code:
<If Condition="IsTimeBetween(11,13)">
<!-- wait for next spawn. -->
<If Condition="not IsOnMap(341)">
<TeleportTo Name="Personal Housing" AetheryteId="61" />
<WaitTimer WaitTime="30"/>
</If>
<If Condition="IsOnMap(341)">
<LogMessage Message= "in IsOnMap condition TRUE"/>
</If>
<LogMessage Message= "Waiting until 5AM Eorzea"/>
<WaitWhile Condition ="IsTimeBetween(11,13)" />
</If>