vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 DynamicData
3  
4 By sarf
5  
6 This mod allows you to access dynamic data in WoW without being forced to rely on strange Blizzard functions
7  
8 Thanks goes to the UltimateUI team, the nice (but strange) people at #ultimateuitesters and Blizzard.
9  
10 UltimateUIUI URL:
11 http://www.ultimateuiui.org/forums/viewtopic.php?t=NOT_YET_ANNOUNCED
12  
13 ]]
14  
15 DYNAMICDATA_DEFAULT_NUMBER_OF_TOOLTIP_SCANS_PER_UPDATE = 5;
16  
17 DynamicData = {
18  
19 -- Quest information - current quests and their objectives.
20 quest = {};
21  
22 -- Party information - who is your current comrades and what are they wearing?
23 party = {};
24  
25 -- Utility functions and data
26 util = {};
27  
28 };
29