• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Request - List spells I have in spell book and spells in my spell sets

Joined
Mar 19, 2019
RedCents
1,926¢
I'm currently levelling up a couple of groups, and one thing that keeps changing is spell sets. Often I have spare time away from EQ to write my ini's (on the train where I have laptop access but not reliable internet). To do this I tend to look at spell lists (like on Alla's) and *assume* that I have the spells memmed in my spell list, as well as in my spell book. What sometimes happens is:-

a) I keep memming un-memmed spells in slot 8 (using KA default).
b) I don't mem or use that spell, because I never picked it up.

To avoid this, it would be great if I had a way to list all of this info out into a text file. I think I can probably hack going through the spellbook window to do this, but can't seem to find the memmed spell sets. I presume they're stored locally? (At least, as a returning player, none of my old spell sets were available). Some of the KA ini's have the list of spells at the end, but when I tried the KA template plugin it didn't write them out. At worst I guess I could use ${Me.Gem[slot]} ?

Does anyone have macs/subs/advice for this?
 
do you want to see what spells you are missing?

Everquest implemented /outputfile missingspells filename ---- then that filename is in your everquest folder (i always name mine zzzzzzzztoonname to find easily)

Once I do this I will get rid of any rank 2 or 3s listed so I can see any rank 1's I'm missing
 
Yeah.. that's one thing. I didn't know about that command, thanks.

I was thinking of writing it to an ini file in my macro's folder, which I have backed up and can synch with my laptop. I could do this in some way with the EQ folder, but it would be a pain. I already dump AA's that I have, for example. With auto-grant the aa list gets bigger than I have time read up on!

Was thinking of something like this:-

Code:
Sub DumpGems(SpellFile)
    /ini ${SpellFile} SpellsMemmed Gem 0
    /for slot 0 to 12
      /ini ${SpellFile} SpellsMemmed Gem${slot} "${Me.Gem[${slot}].Name}"
    /next slot
/return

That way I can set up KA so that I know what spells are where, gem wise. Listing the missing spells will ensure I won't configure an ini for spells I don't have (in game money is tight).
 
I have a macro at home I can post later that writes all the spells in your spellbook to an ini file by level.
I can post it later if you want it when I get home.
 
Also when you first start kiss the error routine will tell you if you are missing the spells in the spell book
 
Yeah that'd be awesome Maskoi. The following works for the spell gems:-

Code:
Sub DumpGems(GemIniFile)
    /declare slot int local 1
    /for slot 1 to 12
      /ini ${GemIniFile} SpellsMemmed Gem${slot} "${Me.Gem[${slot}].Name}"
    /next slot
/return

which produces something like:-

Code:
[SpellsMemmed]
Gem1=Preincarnation
Gem2=Nature's Searing Wrath
Gem3=Blanched Frost
Gem4=Horde of the Hive
Gem5=Summer Solstice
Gem6=Legacy of Brierbloom
Gem7=Blessing of the Heartwood
Gem8=Glaciating Crystals
Gem9=Gate
Gem10=Foliage Shield
Gem11=Mask of the Raptor
Gem12=Ring of Steamfont
 
Request - List spells I have in spell book and spells in my spell sets

Users who are viewing this thread

Back
Top
Cart