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

DataManager.SpellCache returns incorrect information

Wheredidigo

Community Developer
Joined
Dec 15, 2013
Messages
417
Reaction score
8
I know this is still beta, but running the following in the Console is providing a lot of wrong information which is making it specifically hard to grab the Potency of a Spell from the description:

Code:
foreach (var kvp in DataManager.SpellCache)
{
	if (kvp.Value.Job == ClassJobType.Conjurer || kvp.Value.Job == ClassJobType.WhiteMage)
	{
		Log("Spell ID: " + kvp.Key.ToString() + " Spell Name: " + kvp.Value.LocalizedName +
			" Ground Target: " + kvp.Value.GroundTarget.ToString() +
			" Description: " + kvp.Value.Description);
	}
}

I was unable to post the results directly here because I got the following error:
The number of tags you tried to add exceeded the maximum number of tags by 20.

The results can bee seen here: http://pastebin.com/66h4pYjV
 
Back
Top