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 |
|---|---|---|---|---|---|
eugeneia/snabb | src/lib/ptree/inotify.lua | 2 | 12340 | -- Use of this source code is governed by the Apache 2.0 license; see COPYING.
module(...,package.seeall)
local ffi = require("ffi")
local S = require("syscall")
local lib = require("core.lib")
local file = require("lib.stream.file")
local fiber = require("lib.fibers.fiber")
local file_op = require... | apache-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c78474168.lua | 2 | 2885 | --ブレイクスルー・スキル
function c78474168.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetHintTiming(0,0x1c0)
e1:SetTarget(c78474168.target)
e1:SetOperation(c78474168... | gpl-2.0 |
dickeyf/darkstar | scripts/zones/Caedarva_Mire/npcs/_273.lua | 18 | 3552 | -----------------------------------
-- Area: Caedarva Mire
-- Door: Runic Seal
-- @pos -353 -3 -20 79
-----------------------------------
package.loaded["scripts/zones/Caedarva_Mire/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/keyitems");
require("scripts/globals/missions");
require("... | gpl-3.0 |
dickeyf/darkstar | scripts/zones/Port_Bastok/npcs/Hilda.lua | 20 | 5066 | -----------------------------------
-- Area: Port Bastok
-- NPC: Hilda
-- Involved in Quest: Cid's Secret, Riding on the Clouds
-- Starts & Finishes: The Usual
-- @pos -163 -8 13 236
-----------------------------------
package.loaded["scripts/zones/Port_Bastok/TextIDs"] = nil;
package.loaded["scripts/globals/settings"... | gpl-3.0 |
crazyboy11/premium | plugins/stats.lua | 458 | 4098 | -- Saves the number of messages from a user
-- Can check the number of messages with !stats
do
local NUM_MSG_MAX = 5
local TIME_CHECK = 4 -- seconds
local function user_print_name(user)
if user.print_name then
return user.print_name
end
local text = ''
if user.first_name then
text = user.last_name.... | gpl-2.0 |
fgenesis/Aquaria_experimental | game_scripts/scripts/entities/_unused/lumitebreeder.lua | 6 | 3488 | -- Copyright (C) 2007, 2010 - Bit-Blot
--
-- This file is part of Aquaria.
--
-- Aquaria is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- as published by the Free Software Foundation; either version 2
-- of the License, or (at your option) any later vers... | gpl-2.0 |
Ablu/ValyriaTear | img/sprites/map/characters/thanis_walk.lua | 2 | 1985 | -- Sprite animation file descriptor
-- This file will describe the frames used to load the sprite animations
-- This files is following a special format compared to other animation scripts.
local ANIM_SOUTH = hoa_map.MapMode.ANIM_SOUTH;
local ANIM_NORTH = hoa_map.MapMode.ANIM_NORTH;
local ANIM_WEST = hoa_map.MapMode.... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c63193536.lua | 7 | 1129 | --重量オーバー
function c63193536.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_REMOVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(c63193536.condition)
e1:SetTarget(c63193536.target)
e1:SetOperation(c63193536.activate)
c:RegisterEffect(e1)
end
funct... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c38450736.lua | 2 | 2925 | --甲虫装機 ウィーグ
function c38450736.initial_effect(c)
--equip
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetDescription(aux.Stringid(38450736,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetTarget(c38450736.eqtg)
e1:SetOperation(c38450736.eqop)
c:Re... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c96073342.lua | 2 | 1681 | --セフィラの星戦
function c96073342.initial_effect(c)
--activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,96073342+EFFECT_COUNT_CODE_OATH)
e1:SetHintTiming(0,0x1e0)
e1:SetTa... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c21770260.lua | 7 | 1913 | --スライム増殖炉
function c21770260.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--token
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(21770260,0))
e2:SetCategory(CATEGORY_SPECIAL_SUMMON)
e2:SetType(EF... | gpl-2.0 |
Nak2/StormFox | lua/stormfox/functions/cl_raineffect.lua | 1 | 24434 |
local clamp,min,max,ran,sin,cos,rad,ran,abs = math.Clamp,math.min,math.max,math.random,math.sin,math.cos,math.rad,math.random,math.abs
local rainmat_smoke = {}
for i = 1,5 do
table.insert(rainmat_smoke,(Material("particle/smokesprites_000" .. i)))
end
-- ParticleEmiters
_STORMFOX_PEM = _STORMFOX_PEM or ParticleEmitt... | apache-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c53112492.lua | 6 | 1159 | --対抗魔術
function c53112492.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(c53112492.condition)
e1:SetCost(c53112492.cost)
e1:SetTarget(c53112492.target)
e1:SetOperation(c531... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Western_Altepa_Desert/TextIDs.lua | 7 | 1562 | -- Variable TextID Description text
-- General Texts
ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item>. Come back after sorting your inventory.
FULL_INVENTORY_AFTER_TRADE = 6382; -- You cannot obtain the <item>. Try trading again after sorting your inventory.
ITEM_OBTAINED = 6383; ... | gpl-3.0 |
erictheredsu/eric_git | MGCN/wow/WTF/Account/ERIC/SavedVariables/AdvancedTradeSkillWindow.lua | 1 | 24588 |
atsw_orderby = {
["Erica"] = {
["烹饪"] = "nothing",
["采矿"] = "nothing",
["珠宝加工"] = "nothing",
},
["Sarah"] = {
["烹饪"] = "nothing",
["制皮"] = "nothing",
["炼金术"] = "nothing",
["UNKNOWN"] = "nothing",
["采矿"] = "nothing",
["附魔"] = "name",
[""] = "nothing",
["急救"] = "nothing",
["锻造"] = "nothing",
... | gpl-3.0 |
dickeyf/darkstar | scripts/zones/Tavnazian_Safehold/npcs/qm2.lua | 13 | 1660 | -----------------------------------
-- Area: Tavnazian Safehold
-- NPC: ???
-- Involved in Quest: Unforgiven
-- @zone 26
-- @pos 110.714 -40.856 -53.154
-----------------------------------
package.loaded["scripts/zones/Tavnazian_Safehold/TextIDs"] = nil;
require("scripts/zones/Tavnazian_Safehold/TextIDs")
require("scri... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c50893987.lua | 5 | 1741 | --剣闘獣ティゲル
function c50893987.initial_effect(c)
--search
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(50893987,0))
e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_SPSUMMON_SUCCESS)
e1:SetCondition(c50893987.sccon)
e1:SetCost(... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c33198837.lua | 4 | 1630 | --ナチュル・ビースト
function c33198837.initial_effect(c)
--synchro summon
aux.AddSynchroProcedure(c,c33198837.synfilter,aux.NonTuner(c33198837.synfilter),1)
c:EnableReviveLimit()
--negate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(33198837,0))
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetT... | gpl-2.0 |
fgenesis/Aquaria_experimental | game_scripts/scripts/maps/_unused/node_foundsecret02.lua | 6 | 1100 | -- Copyright (C) 2007, 2010 - Bit-Blot
--
-- This file is part of Aquaria.
--
-- Aquaria is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- as published by the Free Software Foundation; either version 2
-- of the License, or (at your option) any later vers... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c25614410.lua | 4 | 1238 | --HEROの遺産
function c25614410.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCountLimit(1,25614410+EFFECT_COUNT_CODE_OATH)
e1:SetCost(c25614410.cost)
e1:SetTa... | gpl-2.0 |
dickeyf/darkstar | scripts/zones/RuLude_Gardens/npcs/Radeivepart.lua | 1 | 2986 | -----------------------------------
-- Area: Ru'Lude Gardens
-- NPC: Radeivepart
-- Starts and Finishes Quest: Northward
-- Involved in Quests: Save the Clock Tower
-- @zone 243
-- @pos 5 9 -39
-----------------------------------
package.loaded["scripts/zones/RuLude_Gardens/TextIDs"] = nil;
package.loaded["scripts/glo... | gpl-3.0 |
fgenesis/Aquaria_experimental | game_scripts/scripts/entities/_unused/rotfish-blob.lua | 6 | 2385 | -- Copyright (C) 2007, 2010 - Bit-Blot
--
-- This file is part of Aquaria.
--
-- Aquaria is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- as published by the Free Software Foundation; either version 2
-- of the License, or (at your option) any later vers... | gpl-2.0 |
dickeyf/darkstar | scripts/zones/Sacrarium/npcs/qm4.lua | 13 | 1802 | -----------------------------------
-- Area: Sacrarium
-- NPC: qm4 (???)
-- Notes: Used to spawn Old Prof. Mariselle
-- @pos 22.669 -3.111 127.279 28
-----------------------------------
package.loaded["scripts/zones/Sacrarium/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Sacrarium/Text... | gpl-3.0 |
dickeyf/darkstar | scripts/zones/East_Ronfaure/npcs/Croteillard.lua | 13 | 1044 | -----------------------------------
-- Area: East Ronfaure
-- NPC: Croteillard
-- Type: Gate Guard
-- @pos 87.426 -62.999 266.709 101
-----------------------------------
package.loaded["scripts/zones/East_Ronfaure/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/East_Ronfaure/TextIDs");... | gpl-3.0 |
Turttle/darkstar | scripts/globals/items/party_egg.lua | 35 | 1260 | -----------------------------------------
-- ID: 4595
-- Item: party_egg
-- Food Effect: 60Min, All Races
-----------------------------------------
-- Health 25
-- Magic 25
-- Attack 5
-----------------------------------------
require("scripts/globals/status");
-----------------------------------------
-... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c511000129.lua | 2 | 2491 | --Sacred Defense Barrier
function c511000129.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
--remove
local e2=Effect.CreateEffect(c)
e2:SetCategory(CATEGORY_COUNTER)
e2:SetDescription(aux.Stringid(511000129,0))
e2... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Aht_Urhgan_Whitegate/npcs/Ghatsad.lua | 17 | 26628 | -----------------------------------
-- Area: Aht Urhgan Whitegate
-- NPC: Ghatsad
-- Standard Info NPC
-- Involved in quest: No String Attached
-----------------------------------
package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/c... | gpl-3.0 |
dickeyf/darkstar | scripts/globals/items/serving_of_icecap_rolanberry.lua | 18 | 1388 | -----------------------------------------
-- ID: 4556
-- Item: serving_of_icecap_rolanberry
-- Food Effect: 180Min, All Races
-----------------------------------------
-- Magic % 19
-- Magic Cap 55
-- Intelligence 2
-- Wind Res 5
-----------------------------------------
require("scripts/globals/status");
-----------... | gpl-3.0 |
darcy0511/Dato-Core | src/unity/python/graphlab/lua/pl/strict.lua | 28 | 3839 | --- Checks uses of undeclared global variables.
-- All global variables must be 'declared' through a regular assignment
-- (even assigning `nil` will do) in a main chunk before being used
-- anywhere or assigned to inside a function. Existing metatables `__newindex` and `__index`
-- metamethods are respected.
--
-- Yo... | agpl-3.0 |
eugeneia/snabb | src/apps/rss/rss.lua | 2 | 18826 | -- Use of this source code is governed by the Apache 2.0 license; see COPYING.
module(..., package.seeall)
local packet = require("core.packet")
local lib = require("core.lib")
local counter = require("core.counter")
local siphash = require("lib.hash.siphash")
local metadata = require("apps.rss.metadata")
lo... | apache-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c67723438.lua | 2 | 1878 | --緊急テレポート
function c67723438.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(c67723438.target)
e1:SetOperation(c67723438.activate)
c:RegisterEffect(e1)
end
function c67723438.filter(c,... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Crawlers_Nest/npcs/qm7.lua | 14 | 1031 | -----------------------------------
-- Area: Crawlers' Nest
-- NPC: ??? - Awd Goggie spawn
-- @pos -253.026 -1.867 253.055 197
-----------------------------------
package.loaded["scripts/zones/Crawlers_Nest/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Crawlers_Nest/TextIDs");
... | gpl-3.0 |
drslow/love | plugins/weather.lua | 3 | 5045 | local function temps(K)
local F = (K*1.8)-459.67
local C = K-273.15
return F,C
end
local function run(msg, matches)
local res = http.request("http://api.openweathermap.org/data/2.5/weather?q="..URL.escape(matches[2]).."&appid=269ed82391822cc692c9afd59f4aabba")
local jtab = JSON.decode(res)
if jtab.name then
if... | agpl-3.0 |
Turttle/darkstar | scripts/globals/items/bowl_of_ambrosia.lua | 35 | 2277 | -----------------------------------------
-- ID: 4511
-- Item: Bowl of Ambrosia
-- Food Effect: 240Min, All Races
-----------------------------------------
-- Health 7
-- Magic 7
-- Strength 7
-- Dexterity 7
-- Agility 7
-- Vitality 7
-- Intelligence 7
-- Mind 7
-- Charisma 7
-- Health Regen While Healing... | gpl-3.0 |
dickeyf/darkstar | scripts/globals/items/bowl_of_sophic_stew.lua | 18 | 1470 | -----------------------------------------
-- ID: 5180
-- Item: bowl_of_sophic_stew
-- Food Effect: 4Hrs, All Races
-----------------------------------------
-- Dexterity 6
-- Intelligence 6
-- Mind 6
-- HP Recovered While Healing 3
-- MP Recovered While Healing 3
-----------------------------------------
require("scri... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Windurst_Waters_[S]/npcs/Mhoti_Pyiahrs.lua | 38 | 1045 | -----------------------------------
-- Area: Windurst Waters (S)
-- NPC: Mhoti Pyiahrs
-- Type: Allegiance
-- @zone: 94
-- @pos 6.356 -2 26.677
--
-- Auto-Script: Requires Verification (Verified by Brawndo)
-----------------------------------
package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil;
----... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c7391448.lua | 2 | 1044 | --ゴヨウ・ガーディアン
function c7391448.initial_effect(c)
--synchro summon
aux.AddSynchroProcedure(c,aux.FilterBoolFunction(Card.IsAttribute,ATTRIBUTE_EARTH),aux.NonTuner(nil),1)
c:EnableReviveLimit()
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(7391448,0))
e1:SetCategory(CATEGORY_SPECI... | gpl-2.0 |
Ablu/ValyriaTear | dat/tilesets/mountain_house_exterior2.lua | 2 | 9913 | local ns = {};
setmetatable(ns, {__index = _G});
mountain_house_exterior2 = ns;
setfenv(1, ns);
file_name = "dat/tilesets/mountain_house_exterior2.lua"
image = "img/tilesets/mountain_house_exterior2.png"
num_tile_cols = 16
num_tile_rows = 16
-- The general walkability of the tiles in the tileset. Zero indicates walka... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Southern_San_dOria/npcs/Katharina.lua | 37 | 1095 | -----------------------------------
-- Area: Southern San d'Oria
-- NPC: Katharina
-- General Info NPC
-------------------------------------
package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/zones/Southe... | gpl-3.0 |
dickeyf/darkstar | scripts/globals/crafting.lua | 1 | 9319 | -------------------------------------------------
-- Crafting functions
-- Info from:
-- http://wiki.ffxiclopedia.org/wiki/Crafts_%26_Hobbies
-------------------------------------------------
-- 1 2 : Alchemy
-- 2 4 : Bonecraft
-- 3 8 : Clothcraft
-- 4 16 : Cooking
-- 5 32 : Fishing
-- 6 64 : Goldsmi... | gpl-3.0 |
alfred-bot/zacbot | plugins/GP_Manager.lua | 6 | 10684 | --moderation.json
do
local function create_group(msg)
if not is_admin(msg) then
return "You Are Not Global Admin"
end
local group_creator = msg.from.print_name
create_group_chat (group_creator, group_name, ok_cb, false)
return 'Group '..string.gsub(group_name, '_', ' ')..' Created, Check Your ... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c93298460.lua | 6 | 1483 | --魔装戦士 ヴァンドラ
function c93298460.initial_effect(c)
--direct attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DIRECT_ATTACK)
c:RegisterEffect(e1)
--tohand
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(93298460,0))
e2:SetCategory(CATEGORY_TOHAND)
e2:SetType... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c21223277.lua | 2 | 3814 | --聖騎士王アルトリウス
function c21223277.initial_effect(c)
--xyz summon
aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,0x107a),4,2)
c:EnableReviveLimit()
--equip
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(21223277,0))
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TY... | gpl-2.0 |
Maxsteam/xy-teast | plugins/plugins.lua | 72 | 6113 | do
-- Returns the key (index) in the config.enabled_plugins table
local function plugin_enabled( name )
for k,v in pairs(_config.enabled_plugins) do
if name == v then
return k
end
end
-- If not found
return false
end
-- Returns true if file exists in plugins folder
local function plugin_exists( ... | gpl-2.0 |
Turttle/darkstar | scripts/globals/weaponskills/atonement.lua | 18 | 4766 | -----------------------------------
-- Atonement
-- TODO: This needs to be reworked, as this weapon skill does damage based on current enmity, not based on stat modifiers. http://wiki.ffxiclopedia.org/wiki/Atonement http://www.bg-wiki.com/bg/Atonement
-- Sword weapon skill
-- Skill Level: N/A
-- Delivers a Twof... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c17536995.lua | 5 | 1294 | --紋章変換
function c17536995.initial_effect(c)
--end battle phase
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_ATTACK_ANNOUNCE)
e1:SetCondition(c17536995.condition)
e1:SetTarget(c17536995.target)
e1:SetOperation(c17536995.operation)
c:Re... | gpl-2.0 |
dickeyf/darkstar | scripts/globals/items/blackened_newt.lua | 18 | 1560 | -----------------------------------------
-- ID: 4581
-- Item: Blackened Newt
-- Food Effect: 180Min, All Races
-----------------------------------------
-- Dexterity 4
-- Mind -3
-- Attack % 18
-- Attack Cap 60
-- Virus Resist 5
-- Charm Resist 5
-----------------------------------------
require("scripts/globals/stat... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c5861892.lua | 2 | 4970 | --アルカナフォースEX-THE LIGHT RULER
function c5861892.initial_effect(c)
c:EnableReviveLimit()
--spsummon proc
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(c5861892.spcon)
e1:SetOperation... | gpl-2.0 |
Metastruct/pac3 | lua/pac3/libraries/sv_boneanimlib.lua | 2 | 2133 | if CLIENT then return end
include("pac3/core/shared/boneanimlib.lua")
util.AddNetworkString("bal_reset")
util.AddNetworkString("bal_set")
util.AddNetworkString("bal_stop")
util.AddNetworkString("bal_stopgroup")
util.AddNetworkString("bal_stopall")
-- These are unreliable. All Lua animations should be set on both the... | gpl-3.0 |
dickeyf/darkstar | scripts/globals/spells/drain_ii.lua | 3 | 1941 | -----------------------------------------
-- Spell: Drain II
-- Drain functions only on skill level!!
-----------------------------------------
require("scripts/globals/magic");
require("scripts/globals/status");
require("scripts/globals/settings");
-----------------------------------------
-- OnSpellCast
-----------... | gpl-3.0 |
dickeyf/darkstar | scripts/globals/spells/foe_requiem.lua | 26 | 1632 | -----------------------------------------
-- Spell: Foe Requiem
-----------------------------------------
require("scripts/globals/status");
require("scripts/globals/magic");
-----------------------------------------
-- OnSpellCast
-----------------------------------------
function onMagicCastingCheck(caster,target,sp... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c34325937.lua | 2 | 4619 | --方界合神
function c34325937.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(34325937,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetTarget(c34325937.target)
e1:SetOperation(c34325937... | gpl-2.0 |
neonum/Jin | src/lua/embed/boot.lua | 1 | 2975 | --[[
program entry
]]
local function _onEvent(e)
-- update keyboard status
if e.type == "keydown" then
jin.keyboard.set(e.key, true)
elseif e.type == "keyup" then
jin.keyboard.set(e.key, false)
end
-- call user onEvent function
if jin.core.onEvent then
ji... | mit |
dickeyf/darkstar | scripts/zones/Upper_Jeuno/npcs/Appollonia.lua | 59 | 1039 | -----------------------------------
-- Area: Upper Jeuno
-- NPC: Appollonia
-- Type: Weather Reporter
-----------------------------------
package.loaded["scripts/zones/Upper_Jeuno/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/zones/Upper_Jeuno/TextIDs");
--... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Cloister_of_Tides/mobs/Leviathan_Prime.lua | 16 | 1908 | -----------------------------------
-- Area: Cloister of Tides
-- NPC: Leviathan Prime
-- Involved in Quest: Trial by Water, Trial Size Trial by Water
-- Involved in Mission: ASA-4 Sugar Coated Directive
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/keyitems... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Lower_Jeuno/npcs/_l02.lua | 36 | 1562 | -----------------------------------
-- Area: Lower Jeuno
-- NPC: Streetlamp
-- Involved in Quests: Community Service
-- @zone 245
-- @pos -89.022 -0 -123.317
-----------------------------------
package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil;
-----------------------------------
require("scripts/gl... | gpl-3.0 |
dickeyf/darkstar | scripts/zones/The_Garden_of_RuHmet/npcs/Ebon_Panel.lua | 12 | 3771 | -----------------------------------
-- Area: The Garden of RuHmet
-- NPC: Ebon_Panel
-- @pos 100.000 -5.180 -337.661 35 | Mithra Tower
-- @pos 740.000 -5.180 -342.352 35 | Elvaan Tower
-- @pos 257.650 -5.180 -699.999 35 | Tarutaru Tower
-- @pos 577.648 -5.180 -700.000 35 | Galka Tower
---------------------------... | gpl-3.0 |
iskygame/skynet | test/testmongodb.lua | 4 | 2949 | local skynet = require "skynet"
local mongo = require "mongo"
local bson = require "bson"
local host, db_name = ...
function test_insert_without_index()
local db = mongo.client({host = host})
db[db_name].testdb:dropIndex("*")
db[db_name].testdb:drop()
local ret = db[db_name].testdb:safe_insert({test_key = 1});
... | mit |
eggBOY91/opencore | src/scripts/lua/LuaBridge/Stable Scripts/Azeroth/Karazhan/BOSS_Karazhan_Moroes.lua | 30 | 1211 | function Moroes_Enrage(Unit, event, miscunit, misc)
if Unit:GetHealthPct() < 30 and Didthat == 0 then
Unit:FullCastSpell(44779)
Didthat = 1
else
end
end
function Moroes_Gouge(Unit, event, miscunit, misc)
print "Moroes Gouge"
Unit:FullCastSpellOnTarget(28456,Unit:GetClosestPlayer())
Unit:SendChatMessage(11, 0... | agpl-3.0 |
gvvaughan/specl | lib/specl/compat.lua | 1 | 1862 | --[[
Behaviour Driven Development for Lua 5.1, 5.2 & 5.3.
Copyright (C) 2013-2018 Gary V. Vaughan
]]
local _ENV = {
load = load,
loadstring = loadstring,
pcall = pcall,
setfenv = function() end,
select = select,
type = type,
unpack = table.unpack or unpack,
xpcall = xpcall,
open = io.open... | mit |
wljcom/vlc | share/lua/meta/art/02_frenchtv.lua | 15 | 2724 | --[[
Gets an artwork from amazon
$Id$
Copyright © 2007 the VideoLAN team
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version... | gpl-2.0 |
dickeyf/darkstar | scripts/zones/Valkurm_Dunes/npcs/qm2.lua | 13 | 1312 | -----------------------------------
-- Area: Valkurm Dunes
-- NPC: qm2 (???)
-- Involved In Quest: Messenger from Beyond
-- @pos -716 -10 66 103
-----------------------------------
package.loaded["scripts/zones/Valkurm_Dunes/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
req... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c6958551.lua | 7 | 1390 | --シャドー・トゥーン
function c6958551.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DAMAGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1,6958551+EFFECT_COUNT_CODE_OATH)
e1:SetCondition(c6958551.condition)
... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c45033006.lua | 6 | 1183 | --A・O・J エネミー・キャッチャー
function c45033006.initial_effect(c)
--control
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(45033006,0))
e1:SetCategory(CATEGORY_CONTROL)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:SetTarg... | gpl-2.0 |
UB12/selfbot | plugins/id.lua | 26 | 3037 |
local function usernameinfo (user)
if user.username then
return '@'..user.username
end
if user.print_name then
return user.print_name
end
local text = ''
if user.first_name then
text = user.last_name..' '
end
if user.lastname then
text = text..user.last_n... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c25531465.lua | 7 | 1310 | --マジキャット
function c25531465.initial_effect(c)
--todeck
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(25531465,0))
e1:SetCategory(CATEGORY_TODECK)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetCode(EVENT_BE_MATERIAL)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY)
e1:SetCo... | gpl-2.0 |
Maxsteam/xy-teast | plugins/welcome.lua | 51 | 3580 | local add_user_cfg = load_from_file('data/add_user_cfg.lua')
local function template_add_user(base, to_username, from_username, chat_name, chat_id)
base = base or ''
to_username = '@' .. (to_username or '')
from_username = '@' .. (from_username or '')
chat_name = string.gsub(chat_name, '_', ' ') or ''
c... | gpl-2.0 |
raminea/TeleMandy0113 | plugins/lock_fwd.lua | 1 | 1239 | do
local function pre_process(msg)
local hash = 'mate:'..msg.to.id
if redis:get(hash) and msg.fwd_from and not is_momod(msg) then
chat_del_user('chat#id'..msg.to.id,'user#id'..msg.from.id, ok_cb, false)
return "fwd was locked"
end
return msg
end
local functio... | gpl-2.0 |
dickeyf/darkstar | scripts/zones/Windurst_Waters_[S]/npcs/Pebul-Tabul.lua | 13 | 1063 | -----------------------------------
-- Area: Windurst Waters (S)
-- NPC: Pebul-Tabul
-- Type: Standard NPC
-- @zone: 94
-- @pos -68.500 -4.5 3.694
--
-- Auto-Script: Requires Verification (Verified by Brawndo)
-----------------------------------
package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil;
-... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c51773900.lua | 9 | 1112 | --カーム・マジック
function c51773900.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(c51773900.condition)
e1:SetOperation(c51773900.operation)
c:RegisterEffect(e1)
end
function c51773900.condition(e,tp,eg,ep,ev,re,r,rp)
return D... | gpl-2.0 |
Andrew-Collins/nodemcu-firmware | lua_examples/yet-another-ds18b20.lua | 79 | 1924 | ------------------------------------------------------------------------------
-- DS18B20 query module
--
-- LICENCE: http://opensource.org/licenses/MIT
-- Vladimir Dronnikov <dronnikov@gmail.com>
--
-- Example:
-- dofile("ds18b20.lua").read(4, function(r) for k, v in pairs(r) do print(k, v) end end)
------------------... | mit |
SalvationDevelopment/Salvation-Scripts-TCG | c75702749.lua | 3 | 3234 | --幻煌龍の螺旋絞
function c75702749.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_EQUIP)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetTarget(c75702749.target)
e1:SetOperation(c75702749.operation)
c:RegisterEffect(e1)... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c72192100.lua | 4 | 2856 | --デスルークデーモン
function c72192100.initial_effect(c)
--maintain
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(EVENT_PHASE+PHASE_STANDBY)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCondition... | gpl-2.0 |
Turttle/darkstar | scripts/zones/West_Ronfaure/npcs/Ballie_RK.lua | 30 | 3051 | -----------------------------------
-- Area: West Ronfaure
-- NPC: Ballie, R.K.
-- Type: Border Conquest Guards
-- @pos -560.292 -0.961 -576.655 100
-----------------------------------
package.loaded["scripts/zones/West_Ronfaure/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/conquest");... | gpl-3.0 |
wljcom/vlc | share/lua/playlist/anevia_streams.lua | 112 | 3664 | --[[
$Id$
Parse list of available streams on Anevia Toucan servers.
The URI http://ipaddress:554/list_streams.idp describes a list of
available streams on the server.
Copyright © 2009 M2X BV
Authors: Jean-Paul Saman <jpsaman@videolan.org>
This program is free software; you can redistribute it and/or modify
... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c5562461.lua | 6 | 1267 | --闇の幻影
function c5562461.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_NEGATE+CATEGORY_DESTROY)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_CHAINING)
e1:SetCondition(c5562461.condition)
e1:SetTarget(c5562461.target)
e1:SetOperation(c5562461.activate)
c:RegisterEffec... | gpl-2.0 |
Turttle/darkstar | scripts/globals/weaponskills/expiacion.lua | 18 | 4582 | -----------------------------------
-- Expiacion
-- Sword weapon skill
-- Skill Level: N/A
-- Delivers a Twofold attack. Damage varies with TP. Tizona: Aftermath effect varies with TP.
-- Available only after completing the Unlocking a Myth (Blue Mage) quest.
-- Aligned with the Aqua Gorget, Snow Gorget & Soil Go... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c68280530.lua | 6 | 1108 | --ロイヤルナイツ
function c68280530.initial_effect(c)
--recover
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(68280530,0))
e1:SetCategory(CATEGORY_RECOVER)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EVENT_BATTLE_DESTROYING)
e1:SetCondition... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Leujaoam_Sanctum/instances/leujaoam_cleansing.lua | 32 | 4247 | -----------------------------------
--
-- Assault: Leujaoam Cleansing
--
-----------------------------------
require("scripts/zones/Leujaoam_Sanctum/IDs");
-----------------------------------
-- afterInstanceRegister
-----------------------------------
function afterInstanceRegister(player)
local instance = pl... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Bhaflau_Thickets/npcs/qm1.lua | 16 | 1188 | -----------------------------------
-- Area: Bhaflau Thickets
-- NPC: ??? (Spawn Lividroot Amooshah(ZNM T2))
-- @pos 334 -10 184 52
-----------------------------------
package.loaded["scripts/zones/Bhaflau_Thickets/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Bhaflau_Thickets/TextIDs");... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c48996569.lua | 2 | 4794 | --E・HERO グラン・ネオス
function c48996569.initial_effect(c)
--fusion material
c:EnableReviveLimit()
aux.AddFusionProcCode2(c,89943723,80344569,false,false)
--spsummon condition
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetCode(E... | gpl-2.0 |
JackS9/iot | Web_toggle_RGB_LED.lua | 1 | 1872 | neopixel=4
red=string.char(0,255,0)
green=string.char(255,0,0)
blue=string.char(0,0,255)
white=string.char(50,50,50)
srv=nil
srv=net.createServer(net.TCP)
srv:listen(80,function(conn)
conn:on("receive", function(client,request)
local buf = "";
local _, _, method, path, vars = string.find... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Misareaux_Coast/npcs/_0p3.lua | 34 | 1082 | -----------------------------------
-- Area: Misareaux Coast
-- NPC: Dilapidated Gate
-- Notes: Entrance to Misareaux Coast
-----------------------------------
package.loaded["scripts/zones/Misareaux_Coast/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/missions");
require(... | gpl-3.0 |
erictheredsu/eric_git | MGCN/wow/WTF/Account/ERIC/Mangoscn/Mika/SavedVariables/dct_spellAlert.lua | 8 | 5270 |
DCTSA_PERCONFIG = {
["DCTSA_SHOW_BUFFGET_FOCUS"] = {
["color"] = {
0.35, -- [1]
0.35, -- [2]
1, -- [3]
},
["frame"] = 6,
["colorEx"] = {
{
1, -- [1]
1, -- [2]
1, -- [3]
}, -- [1]
{
1, -- [1]
1, -- [2]
0, -- [3]
}, -- [2]
},
["show"] = {
"#c1◇#ce获得了#c2#sn#ce"... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c100213007.lua | 2 | 2720 | --暗黒の召喚神
--Dark Summoning Beast
--Scripted by Eerie Code
function c100213007.initial_effect(c)
--Special Summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(100213007,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,1002... | gpl-2.0 |
eugeneia/snabb | lib/ljsyscall/syscall/bsd/ffi.lua | 6 | 10511 | -- define general BSD system calls for ffi
-- note that some functions may not be available in all, but so long as prototype is standard they can go here
local require, error, assert, tonumber, tostring,
setmetatable, pairs, ipairs, unpack, rawget, rawset,
pcall, type, table, string =
require, error, assert, tonumbe... | apache-2.0 |
erictheredsu/eric_git | MGCN/wow/WTF/Account/ERIC/SavedVariables/BankItems.lua | 1 | 49742 |
BankItems_Save = {
["SearchAllRealms"] = false,
["ExportPrefix"] = true,
["ButtonShown"] = true,
["GBposoffsety"] = -104,
["Mika|Mangoscn"] = {
["Bag0"] = {
{
["link"] = "|cffffffff|Hitem:159:0:0:0:0:0:0:0|h[清凉的泉水]|h|r",
}, -- [1]
{
["count"] = 4,
["link"] = "|cffffffff|Hitem:4536:0:0:0:0:0... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c81269231.lua | 2 | 2859 | --古代の機械合成竜
function c81269231.initial_effect(c)
--mat check
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MATERIAL_CHECK)
e1:SetValue(c81269231.valcheck)
c:RegisterEffect(e1)
--summon success
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS... | gpl-2.0 |
dickeyf/darkstar | scripts/zones/Port_Windurst/npcs/Kucha_Malkobhi.lua | 17 | 1473 | -----------------------------------
-- Area: Port Windurst
-- NPC: Kucha Malkobhi
-- Standard Merchant NPC
-- Confirmed shop stock, August 2013
-----------------------------------
require("scripts/globals/shop");
package.loaded["scripts/zones/Port_Windurst/TextIDs"] = nil;
require("scripts/zones/Port_Windurst/TextIDs"... | gpl-3.0 |
dickeyf/darkstar | scripts/zones/Northern_San_dOria/npcs/Aivedoir.lua | 13 | 1041 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Aivedoir
-- Type: Standard Dialogue NPC
-- @zone: 231
-- @pos -123.119 7.999 134.490
--
-----------------------------------
package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil;
require("scripts/zones/Northern_San_dOria/TextIDs")... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Bastok_Mines/npcs/Eulaphe.lua | 28 | 2055 | -----------------------------------
-- Area: Bastok Mines
-- NPC: Eulaphe
-- Type: Chocobo Renter
-----------------------------------
require("scripts/globals/chocobo");
require("scripts/globals/keyitems");
require("scripts/globals/settings");
require("scripts/globals/status");
---------------------------... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Western_Adoulin/npcs/Porter_Moogle.lua | 41 | 1534 | -----------------------------------
-- Area: Western Adoulin
-- NPC: Porter Moogle
-- Type: Storage Moogle
-- @zone 256
-- @pos TODO
-----------------------------------
package.loaded["scripts/zones/Western_Adoulin/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Western_Adoulin/... | gpl-3.0 |
alexcrichton/mal | lua/types.lua | 14 | 3900 | local utils = require('utils')
local M = {}
-- type functions
function M._sequential_Q(obj)
return M._list_Q(obj) or M._vector_Q(obj)
end
function M._equal_Q(a,b)
if M._symbol_Q(a) and M._symbol_Q(b) then
return a.val == b.val
elseif M._sequential_Q(a) and M._sequential_Q(b) then
if #a ~... | mpl-2.0 |
dickeyf/darkstar | scripts/globals/abilities/pets/judgment_bolt.lua | 34 | 1127 | ---------------------------------------------------
-- Judgment Bolt
---------------------------------------------------
require("/scripts/globals/settings");
require("/scripts/globals/status");
require("/scripts/globals/monstertpmoves");
require("/scripts/globals/magic");
--------------------------------------------... | gpl-3.0 |
LuaDist/oil | lua/oil/corba/giop/Referrer.lua | 6 | 6098 | --------------------------------------------------------------------------------
------------------------------ ##### ## ------------------------------
------------------------------ ## ## # ## ------------------------------
------------------------------ ## ## ## ## ---------------------------... | mit |
Turttle/darkstar | scripts/zones/Meriphataud_Mountains/npcs/Donmo-Boronmo_WW.lua | 30 | 3082 | -----------------------------------
-- Area: Meriphataud Mountains
-- NPC: Donmo-Boronmo, W.W.
-- Type: Outpost Conquest Guards
-- @pos -294.470 15.806 420.117 119
-----------------------------------
package.loaded["scripts/zones/Meriphataud_Mountains/TextIDs"] = nil;
-----------------------------------
require("scri... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Qufim_Island/npcs/Trodden_Snow.lua | 19 | 4780 | -----------------------------------
-- Area: Qufim Island
-- NPC: Trodden Snow
-- Mission: ASA - THAT_WHICH_CURDLES_BLOOD
-- Mission: ASA - SUGAR_COATED_DIRECTIVE
-- @zone 126
-- @pos -19 -17 104
-----------------------------------
package.loaded["scripts/zones/Qufim_Island/TextIDs"] = nil;
----------------------------... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-TCG | c8873112.lua | 6 | 2489 | --アーティファクト-チャクラム
function c8873112.initial_effect(c)
--set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--spsummon
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(8873112,0))
e2:SetCategory(CATEGORY_S... | gpl-2.0 |
Turttle/darkstar | scripts/zones/Northern_San_dOria/npcs/Olbergieut.lua | 17 | 2258 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Olbergieut
-- Type: Quest NPC
-- @zone 231
-- @pos 91 0 121
--
-- Starts and Finishes Quest: Gates of Paradise
-----------------------------------
package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil;
---------------------... | gpl-3.0 |
Turttle/darkstar | scripts/zones/Meriphataud_Mountains/npcs/Mushosho.lua | 17 | 1888 | -----------------------------------
-- Area: Meriphataud Mountains
-- NPC: Mushosho
-- Type: Outpost Vendor
-- @pos -290 16 415 119
-----------------------------------
package.loaded["scripts/zones/Meriphataud_Mountains/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/shop");
re... | gpl-3.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.