• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->
  • The 32nd expansion, Shattering of Ro, is here and EverQuest (live servers) were patched with the newest expansion, SOR so brainiac has been spending his time updating MacroQuest. Please show him your appreciation. Thanks brainiac!
dump_equipment.mac - Dumps your gear w/augs to a file. Optional weblinks.

Utility dump_equipment.mac - Dumps your gear w/augs to a file. Optional weblinks. 1.0

Download now:  Join us with Level 2 access or earn your way in with  RedCents.
Rich (BB code):
| dump_equipment.mac :: Sym 05-14-2017
| Dumps your equipped items (with augs) to dump_equipment.mac.log.
|
| set ItemLinks to 1 to have magelo links generated for each item
|

Sub Main

    /declare ItemLinks int local 1

    /declare inv int local 0
    /declare aug int local 0
    /declare tmpLine string
   
    /mqlog --------------------------------------------------
    /mqlog Equipment for ${Me.Name} ${Me.Level} ${Me.Gender} ${Me.Race} ${Me.Class}
    /mqlog --------------------------------------------------

    /for inv 0 to 22
        /varset tmpLine
        /if (${InvSlot[${inv}].Item.ID} ) {
            /varset tmpLine ${InvSlot[${inv}].Name} -- ${InvSlot[${inv}].Item.Name}
            /if (${ItemLinks}) {
                /varset tmpLine ${tmpLine} -- http://eq.magelo.com/item/${InvSlot[${inv}].Item.ID}
            }
            /for aug 1 to 5
                /if (${Me.Inventory[${inv}].Item[${aug}].ID} ) {
                    /varset tmpLine ${tmpLine} ( ${Me.Inventory[${inv}].Item[${aug}]}
                    /if (${ItemLinks}) {
                        /if (${Me.Inventory[${inv}].Item[${aug}].ID} ) /varset tmpLine ${tmpLine} -- http://eq.magelo.com/item/${Me.Inventory[${inv}].Item[${aug}].ID}
                    }
                    /varset tmpLine ${tmpLine} )
                }              
            /next aug
        } else {
            /varset tmpLine ${InvSlot[${inv}].Name} -- EMPTY
        }
        /mqlog ${tmpLine}
    /next inv
    /mqlog --------------------------------------------------
/return
Author
Sym
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from Sym

Share this resource

Back
Top