WoWInterface SVN TotemManager

[/] [trunk/] [TotemManager/] [TotemManagerBackup.lua] - Rev 95

Compare with Previous | Blame | View Log

--[[
    TotemManager
    Copyright (C) 2008 Gael Lalire
    Contact: gael.lalire@laposte.net

    TotemManager is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    TotemManager is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with self.  If not, see <http://www.gnu.org/licenses/>.
--]]

-- my saved variable
TotemManager.defaultTotemManagerData = {
    ["scale"] = 1,
        ["actionBarSkin"] = 2,
        ["timerSkin"] = 1,
        ["longCooldownActionFrame"] = {
                ["visible"] = true,
                ["direction"] = 1,
        },
        ["totemActionFrame"] = {
                ["visible"] = true,
                ["direction"] = 1,
        },
        ["buffActionFrame"] = {
                ["visible"] = true,
                ["direction"] = 1,
        },
        ["tooltipVisibility"] = 1,
        ["actionBarBackup"] = {
                ["airTotem"] = {
                        ["favoriteCount"] = 1,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 5,
                        ["selectedAction"] = 5,
                        ["visibilityList"] = {
                                3, -- [1]
                                2, -- [2]
                                2, -- [3]
                                2, -- [4]
                                2, -- [5]
                        },
                        ["originalSelectedAction"] = 5,
                        ["actionList"] = {
                                1, -- [1]
                                2, -- [2]
                                3, -- [3]
                                4, -- [4]
                                5, -- [5]
                        },
                        ["totalCount"] = 5,
                        ["unavailable"] = {
                        },
                },
                ["earthShield"] = {
                        ["favoriteCount"] = 1,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 2,
                        ["selectedAction"] = 2,
                        ["visibilityList"] = {
                                3, -- [1]
                                2, -- [2]
                                2, -- [3]
                                2, -- [4]
                        },
                        ["originalSelectedAction"] = 2,
                        ["actionList"] = {
                                1, -- [1]
                                2, -- [2]
                                3, -- [3]
                                4, -- [4]
                        },
                        ["totalCount"] = 4,
                        ["unavailable"] = {
                        },
                },
                ["waterTotem"] = {
                        ["favoriteCount"] = 3,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 5,
                        ["selectedAction"] = 5,
                        ["visibilityList"] = {
                                3, -- [1]
                                3, -- [2]
                                3, -- [3]
                                2, -- [4]
                                2, -- [5]
                                4, -- [6]
                        },
                        ["originalSelectedAction"] = 5,
                        ["actionList"] = {
                                6, -- [1]
                                3, -- [2]
                                1, -- [3]
                                2, -- [4]
                                5, -- [5]
                                0, -- [6]
                        },
                        ["totalCount"] = 5,
                        ["unavailable"] = {
                                [4] = {
                                        4, -- [1]
                                        false, -- [2]
                                },
                        },
                },
                ["shield"] = {
                        ["favoriteCount"] = 2,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 3,
                        ["selectedAction"] = 2,
                        ["visibilityList"] = {
                                3, -- [1]
                                3, -- [2]
                                2, -- [3]
                        },
                        ["originalSelectedAction"] = 2,
                        ["actionList"] = {
                                3, -- [1]
                                1, -- [2]
                                2, -- [3]
                        },
                        ["totalCount"] = 3,
                        ["unavailable"] = {
                        },
                },
                ["earthTotem"] = {
                        ["favoriteCount"] = 4,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 6,
                        ["selectedAction"] = 4,
                        ["visibilityList"] = {
                                3, -- [1]
                                3, -- [2]
                                3, -- [3]
                                3, -- [4]
                                2, -- [5]
                                2, -- [6]
                        },
                        ["originalSelectedAction"] = 4,
                        ["actionList"] = {
                                2, -- [1]
                                3, -- [2]
                                5, -- [3]
                                6, -- [4]
                                1, -- [5]
                                4, -- [6]
                        },
                        ["totalCount"] = 6,
                        ["unavailable"] = {
                        },
                },
                ["fireTotem"] = {
                        ["favoriteCount"] = 4,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 5,
                        ["selectedAction"] = 3,
                        ["visibilityList"] = {
                                3, -- [1]
                                3, -- [2]
                                3, -- [3]
                                3, -- [4]
                                2, -- [5]
                                2, -- [6]
                                4, -- [7]
                        },
                        ["originalSelectedAction"] = 3,
                        ["actionList"] = {
                                1, -- [1]
                                4, -- [2]
                                5, -- [3]
                                7, -- [4]
                                3, -- [5]
                                2, -- [6]
                                0, -- [7]
                        },
                        ["totalCount"] = 6,
                        ["unavailable"] = {
                                [6] = {
                                        6, -- [1]
                                        false, -- [2]
                                },
                        },
                },
                ["mainHandWeapon"] = {
                        ["favoriteCount"] = 1,
                        ["selectedVisibility"] = 1,
                        ["selectedPosition"] = 5,
                        ["selectedAction"] = 5,
                        ["visibilityList"] = {
                                3, -- [1]
                                2, -- [2]
                                2, -- [3]
                                2, -- [4]
                                2, -- [5]
                        },
                        ["originalSelectedAction"] = 5,
                        ["actionList"] = {
                                3, -- [1]
                                1, -- [2]
                                2, -- [3]
                                4, -- [4]
                                5, -- [5]
                        },
                        ["totalCount"] = 5,
                        ["unavailable"] = {
                        },
                },
        },
};

Compare with Previous | Blame