This file contains hidden or 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
{ | |
"mods": | |
[ | |
{ | |
"name": "base", | |
"enabled": true | |
}, | |
{ |
This file contains hidden or 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
function LevelUpDraenorTalent_SpinnerUpdate(self, elapsed) | |
self = self:GetParent():GetParent(); | |
-- Shifts 512 pixels every .57 seconds, 898.246 pixels every second | |
self.shift = 898.246 * elapsed; | |
self.move = self.shift / 512; | |
if (not self.reset) then | |
self.left = self.left + self.move; | |
self.right = self.right + self.move; |
This file contains hidden or 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
#!/usr/bin/env ruby | |
# VEM Conversion of DBM modules | |
dir_names = ARGV | |
dir_names.each do |dir_name| | |
Dir.glob("DBM-#{dir_name}/**/*").each do |file_name| | |
if File.file?(file_name) then | |
text = File.read(file_name) |
This file contains hidden or 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 profile=ElvDB.profiles["Celenii - Lightbringer"] | |
local E=ElvUI[1] | |
function deepcopy(t) | |
if type(t) ~= 'table' then return t end | |
local mt = getmetatable(t) | |
local res = {} | |
for k,v in pairs(t) do | |
if type(v) == 'table' then | |
v = deepcopy(v) |
This file contains hidden or 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
Pet (for Mage, Hunter, and Warlock): | |
dmKTcaGivLgfr5uivZcj0TqL2fsPHjshtPSmG6zc10GY1a02aY3ayCkvNdLSoKGdIuSqKOhQkIjQkQUisQnkO(OQqgjrvojrvTsuXlvLuZuvuUPQa7ef(PQQgksYsvv4PunvqDvvfTvvr6RQs5TQsYDvLO9k9xbzWqoSqwSQeEmrMmuDzfBgv9zrmAu0PvYRvfQzlWTbz3i(nLgUQklNWZf10jDDk2orLVRkvJxvqNhLA)QC3kCDO641XlCDdrfRKKru46sMSAHQZBis6YsKr)qIrncYHuHzo0qWRwxmjllbM9VPoKfFcQ)W)885rB4DWXXBy7yXaWybCpDV8CXWQZ(ppFE0gMlaaaacalDheywGbdai4YZfdy9fEDQgToKfFccXUH5celflEBheR4DGBBXGkpxGy1FFHRmldqX71fwnsxwszaooToXablwjjJixgB1zoReMAddcilaPG2bXcmRnSnaGkpxS46QyLKmIcxxz)BQlzYQfQUKjRwONBer6YsQZBis6YsKr)4COdDOd92e9yAmIOmTIjzzj5x9LQr)(sAftYYsOfYIpbuWh9tYsL993OFPFOJZHo0HoKyuJGCOukMECgcEDjtwTqHyUWN6sMSAHQlzYQfQoVHiPllrg9JZHo0Ho0I)qYoevbrShbCuWq0WIiOHcYp7mTVtKr)q0pKYCihsmQrqoKkmZX5qh6qhAi4hNHGxFKBiAUo1pLrO)1Lmz1cfsz)BQpYneTA9aBeEHRBYtiPGOCUVOUWgmfUoKjqxfUA16sbr5CHRdzc0vHR)aAEe1LY6VrZhp7)tEDPSU8(Kbm1FukRwTA1656I4uW1LRm2WstR2c | |
Player: | |
dSdOcaGEPQ0UauBtQ4NOcZMqpJu9yk6UsLQBd0HjPDsk2RYUrz)QmkuLHjPFt0PLYqrfnyKgoGCqPk6ue4yQQZHk9Cq(lP0xjr1YrSivrpv0YuLwNQqtuQsMkLmziMU |
This file contains hidden or 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
id sv_vm_box(SVStructBoxData* boxData, void* objc_value) { | |
id object = class_createInstance(NSClassFromString(boxData.name), 0); | |
for(SVStructOffsetData* offset in boxData.offsetData) { | |
void* data = objc_value+offset.offset; | |
id f_value = get_sv_value_from_objc_value(data, [offset.typeEncoding UTF8String]); | |
object_setInstanceVariable(object, [offset.fieldName UTF8String], f_value); | |
} | |
return object; | |
} |