92 - Clarify which list players are bidding on.
The raid warning messages don't indicate which list is currently accepting bids, it just says you are accepting bids. Our implementation is utilizing 4 lists total (Mainspec, Epic, Offspec, Toys) so it would be very nice for people to know what list they are bidding against.
I've implemented this in my local copy but would really like to avoid updating each time you update!
- 2 comments
- 2 comments
- #2
Zanthor Thu, 13 Aug 2009 00:01:19Just updated to the new beta and came here because SKG isn't adding items to the loot window (testing with greens in wailing caverns.) (and it works fine once I make a raid).
My hack wouldn't be good for localization... so since I updated and lost it anyhow I did it right this time.
line 152 of skg_gui_bid.lua local msg = SKGL["SKG_MSG_OPENBID"] .. itemLink changed to local msg = string.format( SKGL["SKG_MSG_OPENBID"], itemLink, itemLink )
Then just need to change the verbage of the global (Line 418 of the US localization file) to be something like...
SKGL["SKG_MSG_OPENBID"] = "Bidding is now open for '%s' on the list: '%s'."
- #1
Zhinjio Tue, 28 Jul 2009 20:51:40Please attach your code snippet, or make a clone and modify the clone, and I'll modify the code in my next update to include it. Its a great idea (and I'm quite sure it was easy to add in).