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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

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

mistahmikey

New Member
Joined
Jun 29, 2015
Messages
161
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