FFXIV Bot - 2.3.3.8 Scripting additions, bug fixes, etc

Read-only announcements from the team.

Moderator: ScreamingEagle

Post Reply
Message
Author
PitViper
Site Admin
Posts: 20740
Joined: Tue Oct 16, 2007 7:01 am

FFXIV Bot - 2.3.3.8 Scripting additions, bug fixes, etc

#1 Post by PitViper »

========= MMOViperBot Change Notes =========
============================================
November 30, 2023 MMOViperBot Version 2.3.3.8

Final Fantasy XIV (FFXIV) Bot:
- Bugfix: Fixed rare crash bug
- Tweak: Changed scripting enum Status to remove Casting and replace with Fighting (casting added below)
- Added: Scripting Struct: Point3f for use with below.
- Added: Scripting APIs:
IClassGauges IPlayer.ClassGauges { get; }
ISpellCastInfo IMob.SpellCastInfo { get; }
public interface ISpellCastInfo
{
uint ID { get; }
string Name { get; }
UInt64 TargetID { get; }
float RemainingCastTime { get; }
Point3f CastLocation { get; }
bool Interruptible { get; }
}
public interface IClassGauges
{
ISamurai Samurai { get; }
ISummoner Summoner { get; }
}
public interface ISummoner
{
int TranceTimer { get; }
int PetTimer { get; }
int ElementalAttunement { get; }
int Aetherflow { get; }
ClassGauges.Summoner.PetFlags ActivePet { get; }
ClassGauges.Summoner.PetFlags AvailablePets { get; }
}
public interface ISamurai
{
int Kenki { get; }
int Meditation { get; }
ClassGauges.Samurai.Iaijutsu Sen { get; }
}
- Added: Scripting Enums:
public class ClassGauges
{
public class Samurai
{
[Flags]
public enum Iaijutsu
{
Setsu = 1,
Getsu = 2,
Ka = 4
}
}
public class Summoner
{
[Flags]
public enum PetFlags
{
None = 0,
Phoenix = 1,
Ifrit = 2,
Titan = 4,
Garuda = 8,
Bahamut = 16,
}
}
}

PitViper
Site Admin
Posts: 20740
Joined: Tue Oct 16, 2007 7:01 am

Re: FFXIV Bot - 2.3.3.8 Scripting additions, bug fixes, etc

#2 Post by PitViper »

Updated 2.3.3.9 to fix a profile corruption bug.

Post Reply

Return to “Announcements”