• 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

Question - How to export more data from chars than /ouputfiles ?

Magnuss

Well-known member
Joined
Apr 30, 2018
RedCents
1,243¢
EQ export data like :
  • guild
  • raid
  • spellbook
  • inventory
  • guildbank
  • realestate
  • guildhall
  • missingspells
  • recipes
But there is a way to export Skills too ?
or better to export everything with a macro, with 1 file per char ?
 
I based my research on Gears macro i have find :
[CODE title="Status of the macro"]
|
|/mac 1Export-Skills.mac
|
Sub Main
/call Decs
/if (${Param0.Length}) /varset Tag ${Param0}
/echo Outputting gear and stats to Gear.ini [${Tag}Gear]

/for i 1 to 22
|Skip the power source - it's added to items with purity.
/if (${i} == 21) /continue

/varset itemHP ${InvSlot[${i}].Item.HP}
/varset itemAC ${InvSlot[${i}].Item.AC}

/next i

/ini "1Export-Skills.ini" "${Tag}Skills list" "${Me}","${InvSlot[1].Item.AC}","${InvSlot[1].Item.HP}","${InvSlot[2].Item.AC}","${InvSlot[2].Item.HP}","${InvSlot[3].Item.AC}","${InvSlot[3].Item.HP}","${InvSlot[4].Item.AC}","${InvSlot[4].Item.HP}","${InvSlot[5].Item.AC}","${InvSlot[5].Item.HP}","${InvSlot[6].Item.AC}","${InvSlot[6].Item.HP}","${InvSlot[7].Item.AC}","${InvSlot[7].Item.HP}","${InvSlot[8].Item.AC}","${InvSlot[8].Item.HP}","${InvSlot[9].Item.AC}","${InvSlot[9].Item.HP}","${InvSlot[10].Item.AC}","${InvSlot[10].Item.HP}","${InvSlot[11].Item.AC}","${InvSlot[11].Item.HP}","${InvSlot[12].Item.AC}","${InvSlot[12].Item.HP}","${InvSlot[13].Item.AC}","${InvSlot[13].Item.HP}","${InvSlot[14].Item.AC}","${InvSlot[14].Item.HP}","${InvSlot[15].Item.AC}","${InvSlot[15].Item.HP}","${InvSlot[16].Item.AC}","${InvSlot[16].Item.HP}","${InvSlot[17].Item.AC}","${InvSlot[17].Item.HP}","${InvSlot[18].Item.AC}","${InvSlot[18].Item.HP}","${InvSlot[19].Item.AC}","${InvSlot[19].Item.HP}","${InvSlot[20].Item.AC}","${InvSlot[20].Item.HP}"

/return

Sub Decs
/declare i int outer
/declare itemHP int outer 0
/declare itemAC int outer 0
/declare Tag string outer

/return
[/CODE]

At the moment, the macro create an "1Export-Skills.ini" file in Next \ Config folder.
[CODE title="Result of the .ini"][Skills list]
xChar_NAMEx,0,276,327,6247,0,274,0,270,334,7517,361,5941,315,6247,458,7680,246,6059,246,6059,260,5945,297,6122,8,257,35,277,0,280,0,279,508,6559,382,6434,294,6309,296,6035=[/CODE]

The macro update well the data, not yet the data i want and how to display data in the file.
I wish get data with the char Skills data, the current skill level and max level.
What ever is the char class or the level, but for all possible skill.
If you have any skill in macro programming, you can help me ? Something i can use after for create something in Excel for display the skills of all my chars. Mainly trade skills, but export too everything possible can help.
 
Question - How to export more data from chars than /ouputfiles ?

Users who are viewing this thread

Back
Top
Cart