What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Any way to tell when your character is in the process of zoning?

mistahmikey

New Member
Joined
Jun 29, 2015
Messages
161
Reaction score
3
Looked though the docs and was hoping to see something like Player.IsZoning. Any way to detect this?
 
Not zoning technically, but this should do the trick: ff14bot.Behavior.CommonBehaviors.IsLoading
 
I'm not exactly sure what you're trying to do....

but you could subscribe to the following event: ff14bot.NeoProfiles.GameEvents.OnMapChanged

That event will fire every time you change zones.
 
Ah yes, events. Love those suckers... Just need to remember to use them. :D
 
I'm not exactly sure what you're trying to do....

but you could subscribe to the following event: ff14bot.NeoProfiles.GameEvents.OnMapChanged

That event will fire every time you change zones.
I am just trying to ensure I don't try to do certain things while my character is teleporting or moving between zones.
 
If your using behavior tress just use

Code:
CommonBehaviors.HandleLoading

for coroutines

Code:
await CommonTasks.HandleLoading();
 
Back
Top