Export/Import Ranges w/Gaps Macro Share

BECOME PART OF THE COMMUNITY - Sign up here
  • 2 macros for exporting/importing items while maintaining gaps/spacing in the pool.


    Export:

    Code
    SetGlobalVar "RG_Exp_Type" ("Export What?")
    SetGlobalVar "RG_Exp_Range" ("What Range?")
    SetGlobalVar "RG_Exp_Name" ("Export Name?")
    SetGlobalVar "RG_Exp_Name" $"RG_Exp_Name"".xml"
    Export $RG_Exp_Type $RG_Exp_Range $"RG_Exp_Name" /Gaps "Yes"
    DelGlobalVar "RG_Exp_Type"
    DelGlobalVar "RG_Exp_Range"
    DelGlobalVar "RG_Exp_Name"

    Import:


    Code
    SetGlobalVar "RG_Imp_File" ("File Name")
    SetGlobalVar "RG_Imp_File" $"RG_Imp_File"".xml"
    SetGlobalVar "RG_Imp_Type" ("Import Type IE: group")
    SetGlobalVar "RG_Imp_Number" ("Import Starting At What Number?")
    Import Library $"RG_Imp_File" At $RG_Imp_Type $RG_Imp_Number /Gaps "Yes"
    DelGlobalVar "RG_Imp_File"
    DelGlobalVar "RG_Imp_Number"
    DelGlobalVar "RG_Imp_Type"

    Would be a fun little plugin to make if I knew my way around LUA.


    -Rob

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!