repo_name
stringlengths
6
78
path
stringlengths
4
206
copies
stringclasses
281 values
size
stringlengths
4
7
content
stringlengths
625
1.05M
license
stringclasses
15 values
qyh214/wow_addons_private_use
AddOns/AddOnSkins/Libs/LibCustomGlow-1.0/LibCustomGlow-1.0.lua
1
21599
local MAJOR_VERSION = "LibCustomGlow-1.0" local MINOR_VERSION = 8 if not LibStub then error(MAJOR_VERSION .. " requires LibStub.") end local lib, oldversion = LibStub:NewLibrary(MAJOR_VERSION, MINOR_VERSION) if not lib then return end local Masque = LibStub("Masque", true) local textureList = { ["empty"] = [[Interfac...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c1013041.lua
2
2044
--Fire Reaper function c1013041.initial_effect(c) --Pendulum Set aux.EnablePendulumAttribute(c) --[[ aux.AddPendulumProcedure(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1)]]-- --Damage local e2=Effect.CreateEffect(c) e2:SetTyp...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c80106556.lua
1
4732
--Negative Filament function c80106556.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --draw local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(80106556,0)) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIG...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/HandyNotes_Shadowlands/core/class.lua
1
3657
------------------------------------------------------------------------------- ---------------------------------- NAMESPACE ---------------------------------- ------------------------------------------------------------------------------- local _, ns = ... -------------------------------------------------------------...
gpl-3.0
linnemannr/MCServer
MCServer/Plugins/APIDump/Hooks/OnEntityAddEffect.lua
6
1593
return { HOOK_ENTITY_ADD_EFFECT = { CalledWhen = "An entity effect is about to get added to an entity.", DefaultFnName = "OnEntityAddEffect", -- also used as pagename Desc = [[ This hook is called whenever an entity effect is about to be added to an entity. The plugin may disallow the addition by returni...
apache-2.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99199042.lua
1
9853
--The Future Gear Fairy Messager function c99199042.initial_effect(c) c:SetSPSummonOnce(99199042) c:EnableReviveLimit() --pendulum summon aux.EnablePendulumAttribute(c) --splimit local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_PZONE) e1:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) ...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99970301.lua
2
3688
--DAL - Nightmare function c99970301.initial_effect(c) --Cannot Special Summon local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:SetValue(c99970301.splimit) c:RegisterEffect(e1) --Spec...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-DragonSoul/localization.br.lua
1
7263
if GetLocale() ~= "ptBR" then return end local L ------------- -- Morchok -- ------------- L= DBM:GetModLocalization(311) L:SetWarningLocalization({ KohcromWarning = "%s: %s"--Bossname, spellname. At least with this we can get boss name from casts in this one, unlike a timer started off the previous bosses casts. }...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/RSA/Libs/AceGUI-3.0/widgets/AceGUIWidget-Label.lua
11
4774
--[[----------------------------------------------------------------------------- Label Widget Displays text and optionally an icon. -------------------------------------------------------------------------------]] local Type, Version = "Label", 27 local AceGUI = LibStub and LibStub("AceGUI-3.0", true) if not AceGUI or...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/GarrisonCommander/libs/LibInit/Ace3/AceGUI-3.0/widgets/AceGUIWidget-Label.lua
11
4774
--[[----------------------------------------------------------------------------- Label Widget Displays text and optionally an icon. -------------------------------------------------------------------------------]] local Type, Version = "Label", 27 local AceGUI = LibStub and LibStub("AceGUI-3.0", true) if not AceGUI or...
gpl-3.0
bradparks/hammerspoon
extensions/hotkey/init.lua
1
22787
--- === hs.hotkey === --- --- Create and manage global keyboard shortcuts local hotkey = require "hs.hotkey.internal" local keycodes = require "hs.keycodes" local alert = require'hs.alert' local log = require'hs.logger'.new('hotkey','info') hotkey.setLogLevel=log.setLogLevel hotkey.getLogLevel=log.getLogLevel local t...
mit
qyh214/wow_addons_private_use
AddOns/DBM-Outlands/localization.ru.lua
1
1456
if GetLocale() ~= "ruRU" then return end local L --Maulgar L = DBM:GetModLocalization("Maulgar") L:SetGeneralLocalization{ name = "Король Молгар" } --Gruul the Dragonkiller L = DBM:GetModLocalization("Gruul") L:SetGeneralLocalization{ name = "Груул Драконобой" } L:SetWarningLocalization{ WarnGrowth = "%s (%d)...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Narcissus_Barbershop/Code/API.lua
1
1348
local _, addon = ... local API = {}; addon.API = API; local ACTIVE_APPEARANCE_NAME; local UnitRace = UnitRace; local function GetPlayerRaceID() local _, _, raceID = UnitRace("player"); if raceID == 25 or raceID == 26 then raceID = 24; --Neutral Pandaren end return raceID end API.Get...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c29381115.lua
2
1702
--Vocaloid Haku Yowane's Helping Hand function c29381115.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e1:SetHintTiming(TIMING_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c66666668.lua
2
1490
--Climax of Combustion function c66666668.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_CHAINING) e1:SetCondition(c66666668.condition) e1:SetCost(c66666668.cost) e1:SetTarget(c66666668...
gpl-3.0
linnemannr/MCServer
lib/tolua++/src/bin/lua/module.lua
44
1479
-- tolua: module class -- Written by Waldemar Celes -- TeCGraf/PUC-Rio -- Jul 1998 -- $Id: $ -- This code is free software; you can redistribute it and/or modify it. -- The software provided hereunder is on an "as is" basis, and -- the author has no obligation to provide maintenance, support, updates, -- enhancements,...
apache-2.0
qyh214/wow_addons_private_use
AddOns/WIM/Sources/OpCodes.lua
1
3331
-- This file contains a table of W2W & Communication OpCodes. -- W2W Protocol v2 -- Goals: Reduce bandwidth & traffic volume of W2W data. --Command OpCodes WIM.O = { ["NEGOTIATE"] = 1, ["SERVICES"] = 2, ["TYPING_START"] = 3, ["TYPING_STOP"] = 4, ["LOC_REQUEST"] = 5, ["LO...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/AddOnSkins/Skins/Mainline/Blizzard/ExtraButtons.lua
1
1084
local AS = unpack(AddOnSkins) function AS:Blizzard_AbilityButton() ZoneAbilityFrame.SpellButton:SetNormalTexture('') AS:SetTemplate(ZoneAbilityFrame.SpellButton) AS:StyleButton(ZoneAbilityFrame.SpellButton) AS:SkinTexture(ZoneAbilityFrame.SpellButton.Icon) AS:SetInside(ZoneAbilityFrame.SpellButton.Icon) AS:SetIn...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-ThroneFourWinds/localization.de.lua
1
1619
if GetLocale() ~= "deDE" then return end local L ------------------------ -- Conclave of Wind -- ------------------------ L = DBM:GetModLocalization(154) L:SetWarningLocalization({ warnSpecial = "Hurrikan/Zephyr/Graupelsturm aktiv", specWarnSpecial = "Spezialfähigkeiten aktiv!", warnSpecialSoon = "Spezialfäh...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI_WindTools/Core/Changelog/Previous/2.10.lua
1
7742
local W = unpack(select(2, ...)) W.Changelog[210] = { RELEASE_DATE = "2020/11/17", IMPORTANT = { ["zhCN"] = { "[美化皮肤] 重写部分美化核心函数, 如果遇到问题请报告." }, ["zhTW"] = { "[美化皮膚] 重寫部分美化核心參數, 如果遇到問題請報告." }, ["enUS"] = { "[Skins] Rewrite some core fu...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99970221.lua
2
2984
--DAL - CR-unit - Origami function c99970221.initial_effect(c) --Xyz Summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,9997),3,2) c:EnableReviveLimit() --To Hand local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetDescription(aux.Stringid(99970221,0)) e...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Myslot/keys.lua
1
13658
local _, MySlot = ... local MYSLOT_BINDS = { ["MOVEANDSTEER"] = 1, ["MOVEFORWARD"] = 2, ["MOVEBACKWARD"] = 3, ["TURNLEFT"] = 4, ["TURNRIGHT"] = 5, ["STRAFELEFT"] = 6, ["STRAFERIGHT"] = 7, ["JUMP"] = 8, ["SITORSTAND"] = 9, ["TOGGLESHEATH"] = 10, ["TOGGLEAUTORUN"] = 11, ["...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-VoA/Toravon.lua
1
1980
local mod = DBM:NewMod("Toravon", "DBM-VoA") local L = mod:GetLocalizedStrings() mod:SetRevision("20220704203621") mod:SetCreatureID(38433) mod:SetEncounterID(1129) mod:SetModelID(31089) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 72034 72091", "SPELL_CAST_SUCCESS 72090", "SPELL_AU...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c960123542.lua
2
3021
--Verdant Mutant function c960123542.initial_effect(c) --Rune Summon c:EnableReviveLimit() local r1=Effect.CreateEffect(c) r1:SetType(EFFECT_TYPE_FIELD) r1:SetCode(EFFECT_SPSUMMON_PROC) r1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_IGNORE_IMMUNE) r1:SetRange(LOCATION_HAND) r1:SetCondition(c960123542.runcon)...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/RareScanner/Core/Plugins/MapPlugin/RSOverlayMixin.lua
1
2156
----------------------------------------------------------------------- -- AddOn namespace. ----------------------------------------------------------------------- local ADDON_NAME, private = ... -- RareScanner libraries local RSConstants = private.ImportLib("RareScannerConstants") -- RareScanner database libraries l...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Details/Libs/DF/schedules.lua
1
1876
local DF = _G["DetailsFramework"] if (not DF or not DetailsFrameworkCanLoad) then return end local C_Timer = _G.C_Timer local unpack = table.unpack or _G.unpack --make a namespace for schedules DF.Schedules = DF.Schedules or {} --run a scheduled function with its payload local triggerScheduledTick = function(ticke...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/RareScanner/Core/Service/POI/RSGroupPOI.lua
1
14671
----------------------------------------------------------------------- -- AddOn namespace. ----------------------------------------------------------------------- local ADDON_NAME, private = ... local RSGroupPOI = private.NewLib("RareScannerGroupPOI") -- RareScanner general libraries local RSConstants = private.Impo...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-Party-Cataclysm/ShadowFangKeep/Silverlaine.lua
1
1109
local mod = DBM:NewMod(97, "DBM-Party-Cataclysm", 6, 64) local L = mod:GetLocalizedStrings() mod:SetRevision("20220116042005") mod:SetCreatureID(3887) mod:SetEncounterID(1070) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_AURA_APPLIED 93956", "SPELL_AURA_REMOVED 93956", "SPELL_CAST_START 93857"...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI/Core/Locales/zhTW.lua
1
28195
-- Traditional Chinese localization file for zhTW. local E = unpack(ElvUI) local L = E.Libs.ACL:NewLocale("ElvUI", "zhTW") L["Loadouts"] = true L["|cffFFFFFFControl + Left Click:|r Change Loadout"] = true L[" |cff00ff00bound to |r"] = " |cff00ff00綁定到 |r" L["(Ctrl & Shift Click) Toggle CPU Profiling"] = "(按住 Ctrl 和 Shi...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Narcissus/Bridge/AzeriteUI.lua
1
1837
local ADDON = "AzeriteUI" if not CogWheel then return end; local Core = CogWheel("LibModule"):GetModule(ADDON) if (not Core) then return end local ActionBarsParent; local Test_ToggleAzeriteUI = function(forced) local CogWheel = _G.CogWheel if CogWheel then local LibFader = CogWheel("LibFader", tr...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99199038.lua
2
3909
--The Future Gear Demon's Bane function c99199038.initial_effect(c) c:SetSPSummonOnce(99199038) --pendulum summon aux.EnablePendulumAttribute(c) --splimit local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetRange(LOCATION_PZONE) e2:SetCode(EFFECT_CANNOT_SPECIAL_SUMMON) e2:SetProperty(EFFECT_FLA...
gpl-3.0
slachiewicz/ntopng
scripts/lua/get_host_data.lua
6
3612
-- -- (C) 2013-15 - ntop.org -- dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path require "lua_utils" sendHTTPHeader('text/html; charset=iso-8859-1') function getNetworkStats(network) local hosts_stats = interface.getHostsInfo() my_network = nil for key...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Details/frames/window_statistics.lua
1
47090
--todo: need to fix this file after pre-patch local Details = _G.Details local DF = _G.DetailsFramework local Loc = _G.LibStub("AceLocale-3.0"):GetLocale("Details") --prefix used on sync statistics local CONST_GUILD_SYNC = "GS" function Details:InitializeRaidHistoryWindow() local DetailsRaidHistoryWindow = Cre...
gpl-3.0
xlq/charon
tests.lua
1
13766
-- I actually wrote some tests! local repr = require "charon.repr" local ntests = 0 local nfail = 0 local function test(msg, fun) io.stdout:write("Testing ", msg, ": ") io.stdout:flush() local err if not xpcall(fun, function(e) err = debug.traceback(e, 2) end) then ...
mit
qyh214/wow_addons_private_use
AddOns/GarrisonCommander/libs/LibItemUpgradeInfo-1.0/LibStub/tests/test.lua
86
2013
debugstack = debug.traceback strmatch = string.match loadfile("../LibStub.lua")() local lib, oldMinor = LibStub:NewLibrary("Pants", 1) -- make a new thingy assert(lib) -- should return the library table assert(not oldMinor) -- should not return the old minor, since it didn't exist -- the following is to create data ...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/WorldQuestTracker/libs/LibStub/tests/test.lua
86
2013
debugstack = debug.traceback strmatch = string.match loadfile("../LibStub.lua")() local lib, oldMinor = LibStub:NewLibrary("Pants", 1) -- make a new thingy assert(lib) -- should return the library table assert(not oldMinor) -- should not return the old minor, since it didn't exist -- the following is to create data ...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Narcissus_BagFilter/Code/ItemFilter.lua
1
15610
local _, addon = ... local ItemDataProvider = addon.BagItemSearchDataProvider; local ItemFilter = {}; addon.ItemFilter = ItemFilter; local _G = _G; local find = string.find; local ItemLocation = ItemLocation; local IsBound = C_Item.IsBound; local IsCosmeticItem = IsCosmeticItem; local IsSellItemValid = C_AuctionHou...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c11262.lua
2
1423
--Stymphal Turbulance function c11262.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCondition(c11262.condition) e1:SetOperation(c11262.operation) e1:SetCou...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c34858504.lua
1
3442
--Shana function c34858504.initial_effect(c) --pendulum summon aux.EnablePendulumAttribute(c) --activate limit local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetRange(LOCATION_PZONE) e2:SetCode(EFFECT_CANNOT_ACTIVATE) e2:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e2:SetTargetRange(0,1) e2:SetCon...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/WeakAurasOptions/OptionsFrames/Update.lua
1
70346
if not WeakAuras.IsLibsOK() then return end local AddonName, OptionsPrivate = ... local AceGUI = LibStub("AceGUI-3.0") local WeakAuras = WeakAuras local L = WeakAuras.L -- Scam Check local function notEmptyString(str) return str and str ~= "" and string.find(str, "%S") end local function addCode(codes, text, code...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c8914291.lua
2
1928
--Garbage Herculean Titan function c8914291.initial_effect(c) c:SetUniqueOnField(1,0,8914291) aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,0x71a) or (c:IsCode(18698739) or c:IsCode(44682448)),7,3) c:EnableReviveLimit() --material local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(891429...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c121200003.lua
2
3867
--Ynershia Accelsword -- By Shad3 local function getID() local str=string.match(debug.getinfo(2,'S')['source'],"c%d+%.lua") str=string.sub(str,1,string.len(str)-4) local scard=_G[str] local s_id=tonumber(string.sub(str,2)) return scard,s_id end local scard,s_id=getID() local sc_id=0x73d local ge_id=121200000 f...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI/Core/Modules/Misc/RaidUtility.lua
1
15497
local E, L, V, P, G = unpack(ElvUI) local RU = E:GetModule('RaidUtility') local _G = _G local strsub, format, gsub, type = strsub, format, gsub, type local unpack, ipairs, pairs, next = unpack, ipairs, pairs, next local strfind, tinsert, wipe, sort = strfind, tinsert, wipe, sort local IsInRaid = IsInRaid local Create...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI_WindTools/Core/Changelog/Previous/2.07.lua
1
6986
local W = unpack(select(2, ...)) W.Changelog[207] = { RELEASE_DATE = "2020/11/05", IMPORTANT = { ["zhCN"] = { "[交接] 跳过过场动画 => [其他] 一般设定-跳过过场动画" }, ["zhTW"] = { "[交接] 跳過過場動畫 => [其他] 一般設置-跳過過場動畫." }, ["enUS"] = { "[Turn In] Skip Cut Scen...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c70649902.lua
2
3092
--ADE Draggo function c70649902.initial_effect(c) --destroy and draw local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(70649902,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_CARD_TAR...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c77777725.lua
2
2591
--RUM Twin Torrent Force function c77777725.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(77777725,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,77777725) e1:SetProperty(E...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/PremadeGroupsFilter/Plugins/RaiderIO.lua
2
8245
------------------------------------------------------------------------------- -- Premade Groups Filter ------------------------------------------------------------------------------- -- Copyright (C) 2022 Elotheon-Arthas-EU -- -- This program is free software; you can redistribute it and/or modify -- it under the ter...
gpl-3.0
swiseman/nn_coref
nn/vanilla_mr.lua
1
13252
require 'nn' require 'coref_utils' require 'sparse_doc_data' local mu = require 'model_utils' do local VanillaMR = torch.class('VanillaMR') function VanillaMR:__init(pwD, Hp, anaD, Ha, fl, fn, wl, cuda, anteSerFi, anaSerFi, dop) torch.manualSeed(2) if cuda then cutorch.manualSeed(2) end ...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-Party-BfA/ShrineoftheStorm/Agusirr.lua
1
3610
local mod = DBM:NewMod(2153, "DBM-Party-BfA", 4, 1001) local L = mod:GetLocalizedStrings() mod:SetRevision("20220116042005") mod:SetCreatureID(134056)--134828 split forms mod:SetEncounterID(2130) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_AURA_APPLIED 264144 264166 264560 264773", "SPELL_AURA...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c25667893.lua
2
2266
--Photon Regeneration function c25667893.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --spsummon local e2=Effect.CreateEffect(c) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) e2:SetDescription(aux.Stringid(25667893,0))...
gpl-3.0
slachiewicz/ntopng
scripts/lua/examples/debug.lua
13
3427
-- -- (C) 2013 - ntop.org -- -- debug lua example -- Set package.path information to be able to require lua module dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path require "lua_utils" -- Here you can choose the type of your HTTP message {'text/html','application/j...
gpl-3.0
slachiewicz/ntopng
scripts/lua/inc/password_dialog.lua
8
6836
print [[ <style type='text/css'> .largegroup { width:500px } </style> <div id="password_dialog" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="password_dialog_label" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-Uldir/localization.es.lua
1
4142
if GetLocale() ~= "esES" and GetLocale() ~= "esMX" then return end local L ------------ -- Taloc -- ------------ L= DBM:GetModLocalization(2168) L:SetMiscLocalization({ Aggro = "tiene amenaza" }) ----------- -- MADRE -- ----------- --L= DBM:GetModLocalization(2167) ---------------------- -- Devorador fétido -- -...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-BfA/Ivus.lua
1
5086
local dungeonID, creatureID local breathId, strikeId, gtfoId if UnitFactionGroup("player") == "Alliance" then dungeonID, creatureID = 2345, 148295--Ivus the Decayed breathId, strikeId, gtfoId = 287537, 287549, 287538 else--Horde dungeonID, creatureID = 2329, 144946--Ivus the Forest Lord breathId, strikeId, gtfoId =...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-WorldEvents/localization.kr.lua
1
7398
if GetLocale() ~= "koKR" then return end local L ------------ -- Omen -- ------------ L = DBM:GetModLocalization("Omen") L:SetGeneralLocalization({ name = "오멘" }) ------------------------------ -- The Crown Chemical Co. -- ------------------------------ L = DBM:GetModLocalization("d288") L:SetTimerLocalization...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c121200012.lua
2
2781
--The State of Ynershia -- By Shad3 local function getID() local str=string.match(debug.getinfo(2,'S')['source'],"c%d+%.lua") str=string.sub(str,1,string.len(str)-4) local scard=_G[str] local s_id=tonumber(string.sub(str,2)) return scard,s_id end local scard,s_id=getID() local sc_id=0x73d function scard.initia...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-CrucibleofStorms/localization.kr.lua
1
2890
if GetLocale() ~= "koKR" then return end local L --------------------------- -- The Restless Cabal -- --------------------------- L= DBM:GetModLocalization(2328) L:SetMiscLocalization({ Zaxasj = "작사아즈", Fathuul = "파두울" }) --------------------------- -- Uu'nat, Harbinger of the Void -- --------------------------- ...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI/Classic/Modules/Skins/Battlenet.lua
3
1200
local E, L, V, P, G = unpack(ElvUI) local S = E:GetModule('Skins') local _G = _G local next = next function S:BattleNetFrames() if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.misc) then return end local skins = { _G.BNToastFrame, _G.TimeAlertFrame, _G.TicketStatusFrameButton, } for i...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Narcissus_Achievements/Code/StatisticsCard.lua
1
16241
local _, addon = ... local FloatingCard = addon.FloatingCard; local IsBossCard = addon.IsBossCard; local GetBossData = addon.GetBossData; local IsRaid = addon.IsRaid; local PinUtil = addon.PinUtil; local GetCustomStatInfo = addon.GetCustomStatInfo; local numCards = 0; local cards = {}; local Controller = {}; local Bo...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c100000819.lua
2
5185
--Created and coded by Rising Phoenix function c100000819.initial_effect(c) --lp local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_RECOVER) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_PLAYER_TARGET+EFFECT_FLAG_DELA...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99930040.lua
2
6614
--OTNN - Tail Yellow function c99930040.initial_effect(c) c:EnableReviveLimit() --Xyz Summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_EXTRA) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCondition(c99930040.xyzcon) e1:SetOperati...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-VaultoftheIncarnates/VaultoftheIncarnatesTrash.lua
1
1869
local mod = DBM:NewMod("VaultoftheIncarnatesTrash", "DBM-VaultoftheIncarnates", 1) local L = mod:GetLocalizedStrings() mod:SetRevision("20220714232645") --mod:SetModelID(47785) mod.isTrashMod = true --mod:RegisterEvents( -- "SPELL_CAST_START", -- "SPELL_AURA_APPLIED", -- "SPELL_AURA_APPLIED_DOSE 339528", -- "SPELL_A...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/WindDungeonHelper/Libraries/Ace3/AceGUI-3.0/widgets/AceGUIContainer-TabGroup.lua
4
10346
--[[----------------------------------------------------------------------------- TabGroup Container Container that uses tabs on top to switch between groups. -------------------------------------------------------------------------------]] local Type, Version = "TabGroup", 37 local AceGUI = LibStub and LibStub("AceGUI...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Immersion/Locale/ptBR.lua
1
2352
local _, L = ... if L.locale ~= 'ptBR' then return end L["Behavior"] = "Comportamento" L["Change the placement and scale of your dialogue options."] = "Altera a posição e o tamanho das suas opções de diálogo." L["Change the speed of text delivery."] = "Altera a velocidade em que o texto é apresentado." L["Dialog"] = "...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Details/Libs/DF/panel.lua
2
336735
local detailsFramework = _G ["DetailsFramework"] if (not detailsFramework or not DetailsFrameworkCanLoad) then return end local _ --lua locals local rawset = rawset --lua local local rawget = rawget --lua local local setmetatable = setmetatable --lua local local unpack = table.unpack or unpack --lua local local type...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-Firelands/Alysrazor.lua
1
9644
local mod = DBM:NewMod(194, "DBM-Firelands", nil, 78) local L = mod:GetLocalizedStrings() mod:SetRevision("20220127093526") mod:SetCreatureID(52530) mod:SetEncounterID(1206) --mod:SetModelSound("Sound\\Creature\\ALYSRAZOR\\VO_FL_ALYSRAZOR_AGGRO.ogg", "Sound\\Creature\\ALYSRAZOR\\VO_FL_ALYSRAZOR_TRANSITION_02.ogg") --...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c92834757.lua
2
4567
--Black Rose Dragon/Assault Mode function c92834757.initial_effect(c) c:EnableReviveLimit() --Cannot special summon local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:SetValue(aux.FALSE) c:Regi...
gpl-3.0
Markismus/koreader
plugins/calibre.koplugin/main.lua
1
12911
--[[ This plugin implements KOReader integration with *some* calibre features: - metadata search - wireless transfers This module handles the UI part of the plugin. --]] local BD = require("ui/bidi") local CalibreSearch = require("search") local CalibreWireless = require("wireless") local Dis...
agpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c59821036.lua
1
7327
--The Idol Master of Passion Shion Kamiya function c59821036.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,4,2) c:EnableReviveLimit() --pendulum summon aux.EnablePendulumAttribute(c) --atk down local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_PZONE) e1:SetCode(EFFE...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c66165082.lua
2
2403
--The Legendary Thunder Golem function c66165082.initial_effect(c) --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(66165082,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetCondition(c66165082.condition) e1:S...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Narcissus_GamePad/Code/ActionGroups/Soulbind.lua
1
2127
local _, addon = ... local ag = addon.CreateActionGroup("Soulbind"); ag.repeatInterval = 0.25; function ag:Init() self.characters = Narci_SoulbindsFrame.buttons; self.activateButton = Narci_SoulbindsFrame.ActivateButton; self.maxIndex = 3; self.index = 0; end function ag:OnActiveCallback() self.i...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI_WindTools/Modules/Quest/ObjectiveTracker.lua
1
11370
local W, F, E, L = unpack(select(2, ...)) local OT = W:NewModule("ObjectiveTracker", "AceHook-3.0", "AceEvent-3.0") local C = W.Utilities.Color local S = W.Modules.Skins local LSM = E.Libs.LSM local _G = _G local format = format local max = max local pairs = pairs local strmatch = strmatch local tonumber = tonumber l...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI/Wrath/Modules/Skins/Debug.lua
1
3731
local E, L, V, P, G = unpack(ElvUI) local S = E:GetModule('Skins') local TT = E:GetModule('Tooltip') local _G = _G local hooksecurefunc = hooksecurefunc local FrameTexs = { 'TopLeft', 'TopRight', 'Top', 'BottomLeft', 'BottomRight', 'Bottom', 'Left', 'Right', 'TitleBG', 'DialogBG', } local function SkinOnSh...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c97422994.lua
2
2708
--Vocaloid Kid Kiyone Suzu function c97422994.initial_effect(c) --pendulum summon aux.EnablePendulumAttribute(c) --atk local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(97422994,0)) e2:SetType(EFFECT_TYPE_IGNITION) e2:SetRange(LOCATION_PZONE) e2:SetProperty(EFFECT_FLAG_CARD_TARGET) e2:SetCountLimi...
gpl-3.0
swiseman/nn_coref
nn/coref_utils.lua
1
9571
local stringx = require('pl.stringx') local file = require('pl.file') --[[ Oracle Predicted Clusters... --]] do local OPClust = torch.class('OPClust') function OPClust:__init(s,numMents) self.m2c = torch.zeros(numMents) self.clusts = {} -- clusters in order self.mci = torch.zeros(numMents) -- menti...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99200154.lua
2
2371
--Dark Android Gearman function c99200154.initial_effect(c) --cannot be target local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_BE_EFFECT_TARGET) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetValue(c99200154.efilter) c:RegisterEffect(e1) --sps...
gpl-3.0
fegimanam/satn
plugins/inrealm.lua
71
25005
-- data saved to moderation.json -- check moderation plugin do local function create_group(msg) -- superuser and admins only (because sudo are always has privilege) if is_sudo(msg) or is_realm(msg) and is_admin(msg) then local group_creator = msg.from.print_name create_g...
gpl-2.0
qyh214/wow_addons_private_use
AddOns/ElvUI/Libraries/Core/oUF/elements/power.lua
1
16179
--[[ # Element: Power Bar Handles the updating of a status bar that displays the unit's power. ## Widget Power - A `StatusBar` used to represent the unit's power. ## Sub-Widgets .bg - A `Texture` used as a background. It will inherit the color of the main StatusBar. ## Notes A default texture will be applied if ...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c12310705.lua
2
3609
--Dark Sun Gwyndolin --lua script by SGJin function c12310705.initial_effect(c) --XYZ summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_WARRIOR+RACE_SPELLCASTER),6,2) c:EnableReviveLimit() --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(12310705,0)) e1:SetCategory(CATEG...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/HandyNotes/Libs/AceDB-3.0/AceDB-3.0.lua
5
24948
--- **AceDB-3.0** manages the SavedVariables of your addon. -- It offers profile management, smart defaults and namespaces for modules.\\ -- Data can be saved in different data-types, depending on its intended usage. -- The most common data-type is the `profile` type, which allows the user to choose -- the active profi...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c99970103.lua
2
2236
--DAL - Yoshino function c99970103.initial_effect(c) --Negate Attack local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_BE_BATTLE_TARGET) e1:SetTarget(c99970103.natg) e1:SetOperation(c99970103.naop) c:RegisterEffe...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/AddOnSkins/Libs/LibSharedMedia-3.0/LibSharedMedia-3.0.lua
34
11935
--[[ Name: LibSharedMedia-3.0 Revision: $Revision: 91 $ Author: Elkano (elkano@gmx.de) Inspired By: SurfaceLib by Haste/Otravi (troeks@gmail.com) Website: http://www.wowace.com/projects/libsharedmedia-3-0/ Description: Shared handling of media data (fonts, sounds, textures, ...) between addons. Dependencies: LibStub, C...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-BlackwingDescent/localization.en.lua
1
6359
local L ------------------------------- -- Dark Iron Golem Council -- ------------------------------- L = DBM:GetModLocalization(169) L:SetWarningLocalization({ SpecWarnActivated = "Change Target to %s!", specWarnGenerator = "Power Generator - Move %s!" }) L:SetTimerLocalization({ timerShadowConductorCast =...
gpl-3.0
bradparks/hammerspoon
extensions/vox/init.lua
5
5438
--- === hs.vox === --- --- Controls for VOX music player local vox = {} local alert = require "hs.alert" local as = require "hs.applescript" local app = require "hs.application" -- Internal function to pass a command to Applescript. local function tell(cmd) local _cmd = 'tell application "vox" to ' .. cmd local ...
mit
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c59821011.lua
1
7064
--The Idol Master of Hope Hoshimiya Ichigo function c59821011.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,4,2) c:EnableReviveLimit() --pendulum summon aux.EnablePendulumAttribute(c) --atk down local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetRange(LOCATION_PZONE) e1:SetCode(EFF...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c19007840.lua
2
2304
--Mechquipped Draco function c19007840.initial_effect(c) --special summon rule local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetCountLimit(1,19007840) e1:SetCondition(c19007840.spcon) c:Registe...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c40737110.lua
2
2773
--Dark Magician of Prophecy --lua script by SGJin function c40737110.initial_effect(c) --Special Summon Effect local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(40737110,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFF...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c80106533.lua
2
4221
--The Third Panticle of Solomon function c80106533.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(c80106533.descon) e1:SetTarget(c80106533.destg) e1:SetOperation(c80106533.desop) c:Regis...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-HellfireCitadel/Kormrok.lua
1
16274
local mod = DBM:NewMod(1392, "DBM-HellfireCitadel", nil, 669) local L = mod:GetLocalizedStrings() mod:SetRevision("20220116041913") mod:SetCreatureID(90435) mod:SetEncounterID(1787) --mod:SetUsedIcons(8, 7, 6, 4, 2, 1) mod.respawnTime = 18--18 is an odd one, but definitely was 18 mod:RegisterCombat("combat") mod:Re...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-Nyalotha/Vexiona.lua
1
16850
local mod = DBM:NewMod(2370, "DBM-Nyalotha", nil, 1180) local L = mod:GetLocalizedStrings() mod:SetRevision("20220217003806") mod:SetCreatureID(157354) mod:SetEncounterID(2336) mod:SetHotfixNoticeRev(20200128000000)--2020, 1, 28 mod:SetMinSyncRevision(20200128000000) mod.respawnTime = 29 mod:RegisterCombat("combat")...
gpl-3.0
slachiewicz/ntopng
scripts/lua/set_active_interface.lua
10
1713
-- -- (C) 2013-15 - ntop.org -- dirs = ntop.getDirs() package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path if ( (dirs.scriptdir ~= nil) and (dirs.scriptdir ~= "")) then package.path = dirs.scriptdir .. "/lua/modules/?.lua;" .. package.path end require "lua_utils" active_page = "if_stats" ...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c101010230.lua
2
2220
--created & coded by Lyris --Blademaster Training function c101010230.initial_effect(c) --activate local e0=Effect.CreateEffect(c) e0:SetCategory(CATEGORY_TOHAND) e0:SetType(EFFECT_TYPE_ACTIVATE) e0:SetCode(EVENT_FREE_CHAIN) e0:SetOperation(c101010230.activate) c:RegisterEffect(e0) --cannot change position loca...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/Details_Covenants/Core.lua
1
3261
local _, dc = ... dc.addonPrefix = "DCOribos" dc.askMessage = "ASK" DCovenant = { ["iconSize"] = 16, } DCovenantLog = true local playerName = UnitName("player") local realmName = "" local frame = CreateFrame("FRAME", "DetailsCovenantFrame"); frame:RegisterEvent("PLAYER_ENTERING_WORLD"); local function init() ...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/WeakAurasOptions/Locales/deDE.lua
1
64726
if not WeakAuras.IsLibsOK() then return end if GetLocale() ~= "deDE" then return end local L = WeakAuras.L -- WeakAuras/Options L[" and |cFFFF0000mirrored|r"] = "und |cFFFF0000gespiegelt|r" --[[Translation missing --]] L["-- Do not remove this comment, it is part of this aura: "] = "-- Do not remove this commen...
gpl-3.0
RisingPhoenixYGOPRO/YGOPro-Custom-Cards
script/c90000027.lua
2
1121
--Toxic Burst Flower function c90000027.initial_effect(c) --Destroy local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_BE_MATERIAL) e1:SetCondition(c90000027.condition) e...
gpl-3.0
linnemannr/MCServer
MCServer/Plugins/APIDump/Classes/Geometry.lua
8
21843
-- Geometry.lua -- Defines the documentation for geometry-related classes: -- cBoundingBox, cCuboid, cLineBlockTracer, cTracer, Vector3X return { cBoundingBox = { Desc = [[ Represents two sets of coordinates, minimum and maximum for each direction; thus defining an axis-aligned cuboid with floating-point ...
apache-2.0
qyh214/wow_addons_private_use
AddOns/RSA/Libs/AceGUI-3.0/widgets/AceGUIWidget-ColorPicker.lua
16
5490
--[[----------------------------------------------------------------------------- ColorPicker Widget -------------------------------------------------------------------------------]] local Type, Version = "ColorPicker", 25 local AceGUI = LibStub and LibStub("AceGUI-3.0", true) if not AceGUI or (AceGUI:GetWidgetVersion(...
gpl-3.0
qyh214/wow_addons_private_use
AddOns/DBM-Party-WoD/EverBloom/Yalnu.lua
1
1831
local mod = DBM:NewMod(1210, "DBM-Party-WoD", 5, 556) local L = mod:GetLocalizedStrings() mod.statTypes = "normal,heroic,mythic,challenge,timewalker" mod:SetRevision("20220127091750") mod:SetCreatureID(83846) mod:SetEncounterID(1756) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 16917...
gpl-3.0
Markismus/koreader
spec/unit/network_manager_spec.lua
10
2643
describe("network_manager module", function() local Device local turn_on_wifi_called local turn_off_wifi_called local obtain_ip_called local release_ip_called local function clearState() G_reader_settings:saveSetting("auto_restore_wifi", true) turn_on_wifi_called = 0 tur...
agpl-3.0
qyh214/wow_addons_private_use
AddOns/ElvUI/Wrath/Modules/Skins/Loot.lua
1
6441
local E, L, V, P, G = unpack(ElvUI) local S = E:GetModule('Skins') local LCG = E.Libs.CustomGlow local _G = _G local next = next local unpack = unpack local GetItemInfo = GetItemInfo local GetLootSlotInfo = GetLootSlotInfo local hooksecurefunc = hooksecurefunc local IsFishingLoot = IsFishingLoot local UnitIsDead = Un...
gpl-3.0