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!

Actionmanager.LastSpell.Name

Endus

Community Developer
Joined
Jul 9, 2012
Messages
458
When using:

Code:
Log(Actionmanager.LastSpell.Name);

From the console, it will tell you the last spell that you used. Being able to see the last spell used comes in handy for making combos in Combat Routines.

However, when checking Ninja/Rogue (specifically with Ninjutsu, Ten, Chi, Jin, etc.), I noticed a lot of spells either give no response or come back as "EmptySpell". Is there a reason, or is it a bug?
 
Last edited:
I thought it only worked on spells that are part of a combo and Ninjutsu, Ten, Chi, Jin don't count XD

I remember reading it pulls the data directly from the game, so if the game doesn't keep track of it, results will be null
 
If the boy could read the chatlog you could keep a cache of what spell your CR last used, then read the battle log to verify that it hit the enemy, and make your own LastSpellUsed function. Currently the bot can't read chat, but all the code necessary is in FFXIV-App which is open source, so you could write your own code to read chat and then you'd be fine.
 
If the boy could read the chatlog you could keep a cache of what spell your CR last used, then read the battle log to verify that it hit the enemy, and make your own LastSpellUsed function. Currently the bot can't read chat, but all the code necessary is in FFXIV-App which is open source, so you could write your own code to read chat and then you'd be fine.

i heard that chat parsing like that slows down your ticks a lot. You can use the returned bool on do action to make your own variable for it without the performance drop :p
 
When using:

Code:
Log(Actionmanager.LastSpell.Name);

From the console, it will tell you the last spell that you used. Being able to see the last spell used comes in handy for making combos in Combat Routines.

However, when checking Ninja/Rogue (specifically with Ninjutsu, Ten, Chi, Jin, etc.), I noticed a lot of spells either give no response or come back as "EmptySpell". Is there a reason, or is it a bug?

LastSpell is really a misnomer, it really should be called LastComboSpell
 
Back
Top