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

Chocobo Object is returning null in the RBx64 version

newb23

Community Developer
Joined
Nov 26, 2014
Messages
397
Reaction score
15
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