Mercurial > wow > ouroloot
comparison verbage.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 | 124da015c4a2 |
children | c9f955f9a285 |
comparison
equal
deleted
inserted
replaced
82:ae17128ef3f2 | 83:940e53dd18c3 |
---|---|
414 the History tab is shown. Starting in WoW 4.0, the local game cache is not preserved | 414 the History tab is shown. Starting in WoW 4.0, the local game cache is not preserved |
415 across play sessions, so the +UNKNOWN> entries will pop up from time to time. | 415 across play sessions, so the +UNKNOWN> entries will pop up from time to time. |
416 ]] | 416 ]] |
417 | 417 |
418 T.tips = [[ | 418 T.tips = [[ |
419 Shift-clicking an item in the <Loot> or <History> display will paste it into an | |
420 open chat editbox. | |
421 | |
422 The |cffff8000[Ouro Loot]|r "legendary item" displayed at the start of all | 419 The |cffff8000[Ouro Loot]|r "legendary item" displayed at the start of all |
423 chat messages is a clickable link. Clicking opens the main display. An option | 420 chat messages is a clickable link. Clicking opens the main display. An option |
424 on the <Options> tab will cause a message to be printed after a boss kill, | 421 on the <Options> tab will cause a message to be printed after a boss kill, |
425 mostly for lazy loot trackers who don't like typing slash commands to open windows. | 422 mostly for lazy loot trackers who don't like typing slash commands to open windows. |
426 | 423 |
435 will behave a little strangely when doing this. Be sure to check the threshold! | 432 will behave a little strangely when doing this. Be sure to check the threshold! |
436 You can also use <"/ouroloot debug notraid"> instead. | 433 You can also use <"/ouroloot debug notraid"> instead. |
437 | 434 |
438 Using the "Saved Texts" feature plus the +Clear> button is a great way of putting | 435 Using the "Saved Texts" feature plus the +Clear> button is a great way of putting |
439 off pasting loot into your guild's website until a more convenient time. | 436 off pasting loot into your guild's website until a more convenient time. |
437 | |
438 Shift-clicking an item in the <Loot> or <History> display will paste it into an | |
439 open chat editbox. | |
440 ]] | 440 ]] |
441 | 441 |
442 T.tips_slashies = [[ | 442 T.tips_slashies = [[ |
443 If you give an unrecognized argument to the </ouroloot> slash command, it will | 443 If you give an unrecognized argument to the </ouroloot> slash command, it will |
444 search the tab titles left to right for a title beginning with the same letters as | 444 search the tab titles left to right for a title beginning with the same letters as |
565 for k,text in pairs(T) do | 565 for k,text in pairs(T) do |
566 local funkykey = k:gsub('_','\001') -- this is how TreeGroup makes unique keys | 566 local funkykey = k:gsub('_','\001') -- this is how TreeGroup makes unique keys |
567 local wrapped = text | 567 local wrapped = text |
568 wrapped = wrapped:gsub ("[%+<>]", replacement_colors) | 568 wrapped = wrapped:gsub ("[%+<>]", replacement_colors) |
569 wrapped = wrapped:gsub ("([^\n])\n([^\n])", "%1 %2") | 569 wrapped = wrapped:gsub ("([^\n])\n([^\n])", "%1 %2") |
570 --safeprint(wrapped) | |
570 wrapped = wrapped:gsub ("|r\n\n", "|r\n") | 571 wrapped = wrapped:gsub ("|r\n\n", "|r\n") |
571 wrapped = wrapped:gsub ("Ouroboros", "|cffa335ee<Ouroboros>|r") | 572 wrapped = wrapped:gsub ("Ouroboros", "|cffa335ee<Ouroboros>|r") |
573 --safeprint(wrapped) | |
572 wrapped = wrapped:gsub ("%*%(", "<") :gsub("%)%*", ">") :gsub(":PLUS:", "+") | 574 wrapped = wrapped:gsub ("%*%(", "<") :gsub("%)%*", ">") :gsub(":PLUS:", "+") |
573 addon.helptext[funkykey] = wrapped | 575 addon.helptext[funkykey] = wrapped |
574 end | 576 end |
575 end -- do scope | 577 end -- do scope |
576 todo = nil | 578 todo = nil |