This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local healer_mode_raid_top = 85 | |
function oUF_Quaiche:RAID_ROSTER_UPDATE() | |
self:CheckPartyVisibility() | |
if self.healerMode then | |
local max = 0 | |
for i = 1,MAX_RAID_MEMBERS do | |
local subgroup = select(3, GetRaidRosterInfo(i)) | |
if subgroup > max then max = subgroup end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- From http://wowprogramming.com/misc/snippets/Minitimer | |
local total = 0 | |
local function onUpdate(self,elapsed) | |
total = total + elapsed | |
if total >= 2 then | |
print("ping!") | |
total = 0 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Use this script to "take control of" files that you can't access. Particularly | |
:: useful for external NTFS volumes that were created on another computer or by | |
:: another user | |
takeown /f %1 /r /d y | |
icacls %1 /grant administrators:F /t |
NewerOlder