comparison abbreviations.lua @ 83:940e53dd18c3

- More cosmetic cleanup. - Implement "GUI noob" option. Basic entries for Loot and History tabs. - Disable wipe->kill toggling once the entry is actually a kill. Duh.
author Farmbuyer of US-Kilrogg <farmbuyer@gmail.com>
date Mon, 18 Jun 2012 03:02:10 +0000
parents c01875b275ca
children 095ee38508e8
comparison
equal deleted inserted replaced
82:ae17128ef3f2 83:940e53dd18c3
1 --[==[ 1 --[==[
2 If you want to change these to something else, like in-jokes for your guild, 2 If you want to change these to something else, like in-jokes for your guild,
3 write a small addon like this: 3 write a small addon like this. Lines with * are crucial and should not be
4 changed from how they're shown here.
4 5
5 Interface/AddOns/YourMod/YourMod.toc: 6 Interface/AddOns/YourMod/YourMod.toc:
6 ================================= 7 =================================
7 ## Interface: xxxxx 8 ## Interface: xxxxx
8 ## Title: Ouro Loot For My Guild 9 ## Title: Ouro Loot For My Guild
11 * ## LoadWith: Ouro_Loot 12 * ## LoadWith: Ouro_Loot
12 13
13 main.lua 14 main.lua
14 ================================= 15 =================================
15 16
16 Lines with * are crucial. Then replace specific entries like this: 17 Then replace specific entries like this:
17 18
18 Interface/AddOns/YourMod/main.lua: 19 Interface/AddOns/YourMod/main.lua:
19 ================================= 20 =================================
20 local ouroloot = LibStub("AceAddon-3.0"):GetAddon("Ouro Loot") 21 * local ouroloot = LibStub("AceAddon-3.0"):GetAddon("Ouro Loot")
21 22
22 ouroloot.instance_abbrev["The Bastion of Twilight"] = 23 ouroloot.instance_abbrev["The Bastion of Twilight"] =
23 [[Steve Said He'd /gquit If We Make Him Go Here Ever Again]] 24 [[Steve Said He Would /gquit If We Make Him Go Here Ever Again]]
24 25
25 ouroloot.boss_abbrev["Omnotron Defense System"] = 26 ouroloot.boss_abbrev["Omnotron Defense System"] =
26 [[Jim Will Facetank The Slimes Now]] 27 [[Jim Will Facetank The Slimes Now]]
28
29 ouroloot:Print [[Tweaked stuff for mah guildies!]]
27 ================================= 30 =================================
28 31
29 This lets you update Ouro Loot with a new version (overwriting this file) 32 This lets you update Ouro Loot with a new version (overwriting this file)
30 without losing any of your changes. 33 without losing any of your changes.
31 ]==] 34 ]==]