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!

Chocobo Object is returning null in the RBx64 version

newb23

Community Developer
Joined
Nov 26, 2014
Messages
397
The Chocobo Object is returning null in the RBx64 version. The following code is returned with the result as follows when executed from the x64 bit version. Running from the x86 version executes and returns as expected.

Code:
ClearLog();


Log(ff14bot.Objects.Chocobo.Object);

foreach (var partyMember in PartyManager.VisibleMembers)
{
    Log(partyMember.Name + partyMember.GameObject.CurrentHealthPercent);
}

```x64```
null
PLAYERNAMEREDACTED100
Achilles100

```x86```
0x16021420
PLAYERNAMEREDACTED100
Achilles100
 
Back
Top