Mercurial > wow > ouroloot
comparison options.lua @ 154:823a987ac492 beta-l10n-1
Adjust option text wording, add fractured temporal crystal.
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Mon, 09 Feb 2015 10:00:08 -0500 |
parents | b79b1cb6d057 |
children |
comparison
equal
deleted
inserted
replaced
153:55018c10f3a5 | 154:823a987ac492 |
---|---|
12 [52722] = true, -- Maelstrom Crystal | 12 [52722] = true, -- Maelstrom Crystal |
13 [71716] = true, -- Soothsayer's Runes | 13 [71716] = true, -- Soothsayer's Runes |
14 [74247] = true, -- Ethereal Shard | 14 [74247] = true, -- Ethereal Shard |
15 [74248] = true, -- Sha Crystal | 15 [74248] = true, -- Sha Crystal |
16 [113588] = true, -- Temporal Crystal | 16 [113588] = true, -- Temporal Crystal |
17 [115504] = true, -- Fractured Temporal Crystal | |
17 | 18 |
18 -- could probably remove most of this now | 19 -- could probably remove most of this now |
19 -- [29434] = true, -- Badge of Justice | 20 -- [29434] = true, -- Badge of Justice |
20 -- [40752] = true, -- Emblem of Heroism | 21 -- [40752] = true, -- Emblem of Heroism |
21 -- [40753] = true, -- Emblem of Valor | 22 -- [40753] = true, -- Emblem of Valor |
131 container:AddChildren(mktitle[[Account Options (saved across sessions)]]) | 132 container:AddChildren(mktitle[[Account Options (saved across sessions)]]) |
132 | 133 |
133 container:PauseLayout() | 134 container:PauseLayout() |
134 local w | 135 local w |
135 local stdw = 0.99 -- standard width | 136 local stdw = 0.99 -- standard width |
137 local experimental = | |
138 [[|TInterface\Scenarios\ScenarioIcon-Boss:0|t]] | |
139 .. '|cff00ff00Experimental! ' | |
136 | 140 |
137 -- the nubtoggle! | 141 -- the nubtoggle! |
138 w = mktoggle('gui_noob', [[Show UI Tips]], stdw, | 142 w = mktoggle('gui_noob', [[Show UI Tips]], stdw, |
139 [[Toggles display of the "helpful tips" box hanging off the right side. Useful if you've just installed/upgraded.]]) | 143 [[Toggles display of the "helpful tips" box hanging off the right side. Useful if you've just installed/upgraded.]]) |
140 w:SetImage[[Interface\OptionsFrame\UI-OptionsFrame-NewFeatureIcon]] | 144 w:SetImage[[Interface\OptionsFrame\UI-OptionsFrame-NewFeatureIcon]] |
167 | 171 |
168 -- (try to) track bonus loot | 172 -- (try to) track bonus loot |
169 -- For the texture coordinates, see EncounterJournal_SetFlagIcon() and | 173 -- For the texture coordinates, see EncounterJournal_SetFlagIcon() and |
170 -- http://wow.gamepedia.com/API_EJ_GetSectionInfo | 174 -- http://wow.gamepedia.com/API_EJ_GetSectionInfo |
171 w = mktoggle('track_bonusrolls', "Track loot from bonus rolls", stdw, | 175 w = mktoggle('track_bonusrolls', "Track loot from bonus rolls", stdw, |
172 [[Track items received from spending roll tokens (e.g., Seal of Fate).]] | 176 [[Track items received from spending roll tokens.]] |
173 .. [[ |cff00ff00Experimental! May only work when rebroadcast.|r]]) | 177 .. experimental |
178 .. [[Might only see your own bonus loot, unless rebroadcasted.|r]]) | |
174 --w:SetImage([[Interface\EncounterJournal\UI-EJ-Icons]], | 179 --w:SetImage([[Interface\EncounterJournal\UI-EJ-Icons]], |
175 -- This is "ID 6", the interruptible lightning icon | 180 -- This is "ID 6", the interruptible lightning icon |
176 --0.75, (0.75 + (1/8)), 0, 0.5) | 181 --0.75, (0.75 + (1/8)), 0, 0.5) |
177 -- This is "ID 7", the heroic/skull | 182 -- This is "ID 7", the heroic/skull |
178 --3/8, 0.5, 0, 0.5) | 183 --3/8, 0.5, 0, 0.5) |
179 w:SetImage([[Interface\Scenarios\ScenarioIcon-Boss]]) | 184 w:SetImage([[Interface\Scenarios\ScenarioIcon-Boss]]) |
180 container:AddChild(w) | 185 container:AddChild(w) |
181 | 186 |
182 -- track receiving arbitrary items | 187 -- track receiving arbitrary items |
183 w = mktoggle('track_nonloot', "Track non-loot items", stdw, | 188 w = mktoggle('track_nonloot', "Track non-loot items", stdw, |
184 [[Track items received from the mailbox, salvage bags, lockboxes...]]) | 189 [[Track items received from the mailbox, salvage bags, quests, lockboxes...]]) |
185 container:AddChild(w) | 190 container:AddChild(w) |
186 | 191 |
187 -- auto-GOP mode when in LFR | 192 -- auto-GOP mode when in LFR |
188 w = mktoggle('history_suppress_LFR', "Suppress history in LFR", stdw, | 193 w = mktoggle('history_suppress_LFR', "Suppress history in LFR", stdw, |
189 [[Do not record anything at all in the History tab while in an LFR raid. Changes only take effect outside of LFR.]]) | 194 [[Do not record anything at all in the History tab while in an LFR raid. Changes only take effect outside of LFR.]]) |