repo_name
stringlengths
6
69
path
stringlengths
6
178
copies
stringclasses
278 values
size
stringlengths
4
7
content
stringlengths
671
917k
license
stringclasses
15 values
mrbangi/telegram
plugins/all.lua
1321
4661
do data = load_data(_config.moderation.data) local function get_msgs_user_chat(user_id, chat_id) local user_info = {} local uhash = 'user:'..user_id local user = redis:hgetall(uhash) local um_hash = 'msgs:'..user_id..':'..chat_id user_info.msgs = tonumber(redis:get(um_hash) or 0) user_info.name = user_print...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c28297833.lua
2
1953
--ネクロフェイス function c28297833.initial_effect(c) --atkup local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(28297833,0)) e1:SetCategory(CATEGORY_TODECK+CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(c28297833.tdtg) e1:SetOperation...
gpl-2.0
Turttle/darkstar
scripts/zones/Kazham/npcs/Toji_Mumosulah.lua
37
1558
----------------------------------- -- Area: Kazham -- NPC: Toji Mumosulah -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Kazham/TextIDs"] = nil; require("scripts/zones/Kazham/TextIDs"); ----------------------------------- -- onTr...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c14057297.lua
7
1593
--死なばもろとも function c14057297.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,14057297+EFFECT_COUNT_CODE_OATH) e1:SetCondition(c14057297.condition) e1:SetTarget(c14057297.ta...
gpl-2.0
dickeyf/darkstar
scripts/globals/spells/bluemagic/foot_kick.lua
35
1687
----------------------------------------- -- Spell: Foot Kick -- Deals critical damage. Chance of critical hit varies with TP -- Spell cost: 5 MP -- Monster Type: Beasts -- Spell Type: Physical (Slashing) -- Blue Magic Points: 2 -- Stat Bonus: AGI+1 -- Level: 1 -- Casting Time: 0.5 seconds -- Recast Time: 6.5 seconds -...
gpl-3.0
newbots/dark2
plugins/anti_ads.lua
61
1032
local function run(msg) local data = load_data(_config.moderation.data) if data[tostring(msg.to.id)]['settings']['antilink'] == 'yes' then if not is_momod(msg) then chat_del_user('chat#id'..msg.to.id, 'user#id'..msg.from.id, ok_cb, true) local msgads = 'ForbiddenAdText' ...
gpl-2.0
dickeyf/darkstar
scripts/zones/Qufim_Island/npcs/Jiwon.lua
13
1889
----------------------------------- -- Area: Qufim Island -- NPC: Jiwon -- Type: Outpost Vendor -- @pos -249 -19 300 126 ----------------------------------- package.loaded["scripts/zones/Qufim_Island/TextIDs"] = nil; ----------------------------------- require("scripts/globals/shop"); require("scripts/globals/conques...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c90239723.lua
5
2666
--D・リペアユニット function c90239723.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:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCost(c90239723.cost) e1:SetTarget(c90239723.target) e1:SetOperation(c90...
gpl-2.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/bigmouth.lua
1
5350
-- 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/Bastok_Mines/npcs/Leonie.lua
13
1060
----------------------------------- -- Area: Bastok Mines -- NPC: Leonie -- Type: Room Renters -- @zone: 234 -- @pos 118.871 -0.004 -83.916 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Bastok_Mines/TextIDs"] = nil; require("script...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c34968834.lua
2
2384
--暗黒界の鬼神 ケルト function c34968834.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(34968834,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_TO_GRAVE) e1:SetCondition(c34968834.spcon) e1:SetTarget(c34968834...
gpl-2.0
Turttle/darkstar
scripts/globals/weaponskills/tachi_ageha.lua
30
1716
----------------------------------- -- Tachi Ageha -- Great Katana weapon skill -- Skill Level: 300 -- Lowers target's defense. Chance of lowering target's defense varies with TP. -- 30% Defense Down -- Duration of effect is exactly 3 minutes. -- Aligned with the Shadow Gorget, Soil Gorget. -- Aligned with the ...
gpl-3.0
Turttle/darkstar
scripts/zones/Western_Adoulin/npcs/HomePoint#1.lua
17
1240
----------------------------------- -- Area: Western_Adoulin -- NPC: HomePoint#1 -- @pos ----------------------------------- package.loaded["scripts/zones/Western_Adoulin/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Western_Adoulin/TextIDs"); require("scripts/globals/homepo...
gpl-3.0
iskygame/skynet
lualib/sharedata/corelib.lua
5
3306
local core = require "sharedata.core" local type = type local rawset = rawset local conf = {} conf.host = { new = core.new, delete = core.delete, getref = core.getref, markdirty = core.markdirty, incref = core.incref, decref = core.decref, } local meta = {} local isdirty = core.isdirty local index = core.inde...
mit
Turttle/darkstar
scripts/zones/Garlaige_Citadel/npcs/qm1.lua
17
1630
----------------------------------- -- Area: Garlaige Citadel -- NPC: qm1 (???) -- Involved In Quest: Altana's Sorrow -- @pos -282.339 0.001 261.707 200 ----------------------------------- package.loaded["scripts/zones/Garlaige_Citadel/TextIDs"] = nil; ----------------------------------- require("scripts/glo...
gpl-3.0
dickeyf/darkstar
scripts/zones/Jugner_Forest_[S]/Zone.lua
12
1790
----------------------------------- -- -- Zone: Jugner_Forest_[S] (82) -- ----------------------------------- package.loaded["scripts/zones/Jugner_Forest_[S]/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Jugner_Forest_[S]/TextIDs"); ------------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c29876529.lua
2
1454
--闇の閃光 function c29876529.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DESTROY) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,0x1e0) e1:SetCost(c29876529.cost) e1:SetTarget(c29876529.target) e1:SetOperation(c29876529.activate) c:Regist...
gpl-2.0
chrisliebert/quick-3d
ffi/Lua/quick3d.lua
1
12204
-- Copyright (C) 2016 Chris Liebert local wrapper = nil local ffi = nil function require_shared_library() wrapper = require "quick3dwrapper" end -- Determine whether platform is Windows function isWindows() if package.config:sub(1,1) == "\\" then return true end end -- Generate the wrapper source and compile the...
mit
Turttle/darkstar
scripts/globals/items/smilodon_liver.lua
18
1282
----------------------------------------- -- ID: 5668 -- Item: Smilodon Liver -- Food Effect: 5Min, Galka only ----------------------------------------- -- Strength 5 -- Intelligence -7 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemChec...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c26842483.lua
5
1026
--ジャスティス・ブリンガー function c26842483.initial_effect(c) --negate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(26842483,0)) e1:SetCategory(CATEGORY_NEGATE) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DAMAGE_CAL) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) ...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c60990740.lua
2
2005
--絶対王 バック・ジャック function c60990740.initial_effect(c) --sset local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DECKDES) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_FREE_CHAIN) e1:SetRange(LOCATION_GRAVE) e1:SetCountLimit(1,60990740) e1:SetCondition(c60990740.condition) e1:SetCost(c60990740.cost) e1:S...
gpl-2.0
dickeyf/darkstar
scripts/globals/items/bowl_of_riverfin_soup.lua
18
1891
----------------------------------------- -- ID: 6069 -- Item: Bowl of Riverfin Soup -- Food Effect: 3 Hrs, All Races ----------------------------------------- -- Accuracy % 14 Cap 90 -- Ranged Accuracy % 14 Cap 90 -- Attack % 18 Cap 80 -- Ranged Attack % 18 Cap 80 -- Amorph Killer 5 -----------------------------------...
gpl-3.0
dickeyf/darkstar
scripts/globals/effects/addendum_white.lua
14
2063
----------------------------------- -- -- -- ----------------------------------- ----------------------------------- -- onEffectGain Action ----------------------------------- function onEffectGain(target,effect) target:recalculateAbilitiesTable(); local bonus = effect:getPower(); local regen = effect:get...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c60681103.lua
2
2934
--巨神竜フェルグラント function c60681103.initial_effect(c) --remove local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_REMOVE) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SPSUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DELAY) e1:SetCondition(c60681103.rmcon) e1:SetTarg...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c49721904.lua
2
1198
--真六武衆-キザン function c49721904.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(c49721904.spcon) c:RegisterEffect(e1) --atk,def local e2=Effect.Crea...
gpl-2.0
Turttle/darkstar
scripts/globals/gear_sets.lua
3
26501
----------------------------------- -- Gear sets -- Allows the use of gear sets with modifiers ----------------------------------- require("scripts/globals/status"); ----------------------------------- local matchtype = { any = 0, earring_weapon = 1, weapon_weapon = 2 } -- placehol...
gpl-3.0
Turttle/darkstar
scripts/zones/Windurst_Waters_[S]/npcs/Cattah_Pamjah.lua
38
1050
----------------------------------- -- Area: Windurst Waters (S) -- NPC: Cattah Pamjah -- Type: Title Changer -- @zone: 94 -- @pos -13.564 -2 10.673 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil;...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c9596126.lua
5
2678
--カオス・ソーサラー function c9596126.initial_effect(c) c:EnableReviveLimit() --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(9596126,0)) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE) e1:SetRange(LOCATION_HAND) e1:SetCondition(c959...
gpl-2.0
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/node_miasecretend.lua
1
3207
-- 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/globals/weaponskills/sturmwind.lua
11
1526
----------------------------------- -- Sturmwind -- Great Axe weapon skill -- Skill level: 70 -- Delivers a two-hit attack. Attack varies with TP. -- Will stack with Sneak Attack, but only the first hit. -- Aligned with the Soil Gorget & Aqua Gorget. -- Aligned with the Soil Belt & Aqua Belt. -- Element: None -- Modifi...
gpl-3.0
mimetic/DIG-corona-library
examples/slideviewer+textrender+accordion/scripts/accordian/examples/scripts/textrender/entities.lua
4
7515
-- convert numeric html entities to utf8 -- converts from stdin to stdout -- example: € -> € -- from http://www.hpelbers.org/lua/utf8 --- Functions for dealing with HTML/XML entities. local M = {} local char = string.char local function tail(n, k) local u, r='' for i=1,k do n,r = math.floor(n/0...
mit
SalvationDevelopment/Salvation-Scripts-TCG
c55410871.lua
2
1529
--ブルーアイズ・カオス・MAX・ドラゴン function c55410871.initial_effect(c) c:EnableReviveLimit() --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:SetValue(aux.ritlimit) c:RegisterEffect(...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c85893201.lua
2
1523
--連鎖誘爆 function c85893201.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --destroy local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(85893201,0)) e2:SetCategory(CATEGORY_DESTROY) e2:SetType(EFFECT_TYP...
gpl-2.0
dabo123148/WarlightMod
WiningConditions/Client_SaveConfigureUI.lua
1
2918
function Client_SaveConfigureUI(alert) Alert = alert; Mod.Settings.Conditionsrequiredforwin = inputConditionsrequiredforwin.GetValue(); InRange(Mod.Settings.Conditionsrequiredforwin); TakenSettings = 0; Mod.Settings.Capturedterritories = inputCapturedterritories.GetValue(); InRange(Mod.Settings.Captured...
mit
Metastruct/pac3
lua/pac3/editor/client/panels/mat_browser.lua
3
20118
pace.Materials = {} pace.Materials.materials = { "models/weapons/v_crowbar/crowbar_cyl", "models/weapons/v_crowbar/head_uvw", "models/weapons/v_bugbait/bugbait_sheet", "models/combine_advisor/arm", "models/combine_advisor/hose", "models/combine_advisor/face5", "models/combine_advisor/body9", "models/barnacle/b...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c95169481.lua
6
1601
--恐牙狼 ダイヤウルフ function c95169481.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,4,2) c:EnableReviveLimit() --destroy local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(95169481,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1...
gpl-2.0
Turttle/darkstar
scripts/globals/weaponskills/ukkos_fury.lua
30
1805
----------------------------------- -- Ukko's Fury -- Great Axe Weapon Skill -- Skill Level: N/A -- Description: Delivers a twofold attack that slows target. Chance of params.critical hit varies with TP. Ukonvasara: Aftermath. -- Available only when equipped with Ukonvasara (85), Ukonvasara (90), Ukonvasara (95), ...
gpl-3.0
dickeyf/darkstar
scripts/zones/Misareaux_Coast/npcs/HomePoint#1.lua
18
1271
----------------------------------- -- Area: Misareaux Coast -- NPC: HomePoint#1 -- @pos -65 -17.5 563 25 ----------------------------------- package.loaded["scripts/zones/Misareaux_Coast/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Misareaux_Coast/TextIDs"); require("scripts/globals/...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c37781520.lua
3
3580
--水精鱗-リードアビス function c37781520.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(37781520,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCost(c37781520.spcost) e1:SetTarget(c37781520.sptg) e1:SetOper...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c91754175.lua
2
1537
--犬タウルス function c91754175.initial_effect(c) --atk up local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(91754175,0)) e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCond...
gpl-2.0
huwpascoe/OpenRA
mods/ra/maps/allies-05a/allies05a-AI.lua
34
6702
IdlingUnits = { } AttackGroupSize = 6 Barracks = { Barracks2, Barracks3 } Rallypoints = { VehicleRallypoint1, VehicleRallypoint2, VehicleRallypoint3, VehicleRallypoint4, VehicleRallypoint5 } WaterLZs = { WaterLZ1, WaterLZ2 } Airfields = { Airfield1, Airfield2 } Yaks = { } SovietInfantryTypes = { "e1", "e1", "e2", ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c17032740.lua
2
5660
--E・HERO カオス・ネオス function c17032740.initial_effect(c) --fusion material c:EnableReviveLimit() aux.AddFusionProcCode3(c,89943723,43237273,17732278,false,false) --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c47457347.lua
2
2059
--魔法名-「大いなる獣」 function c47457347.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_END_PHASE) e1:SetTarget(c47457347.target) e1:SetO...
gpl-2.0
Turttle/darkstar
scripts/zones/Port_San_dOria/npcs/Leonora.lua
17
1498
----------------------------------- -- Area: Port San d'Oria -- NPC: Leonora -- Involved in Quest: -- @zone 232 -- @pos -24 -8 15 ----------------------------------- package.loaded["scripts/zones/Port_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); requi...
gpl-3.0
Turttle/darkstar
scripts/zones/Hazhalm_Testing_Grounds/Zone.lua
28
1351
----------------------------------- -- -- Zone: Hazhalm_Testing_Grounds (78) -- ----------------------------------- package.loaded["scripts/zones/Hazhalm_Testing_Grounds/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Hazhalm_Testing_Grounds/Tex...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c93379652.lua
6
2120
--ジェムナイト・プリズムオーラ function c93379652.initial_effect(c) --fusion material c:EnableReviveLimit() aux.AddFusionProcFun2(c,aux.FilterBoolFunction(Card.IsFusionSetCard,0x1047),aux.FilterBoolFunction(Card.IsRace,RACE_THUNDER),true) --spsummon condition local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_SINGLE) e2:S...
gpl-2.0
dickeyf/darkstar
scripts/zones/Port_Jeuno/npcs/Sugandhi.lua
13
1545
----------------------------------- -- Area: Port Bastok -- NPC: Sugandhi -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Port_Bastok/TextIDs"] = nil; require("scripts/zones/Port_Bastok/TextIDs"); ----------------------------------- -- onTrad...
gpl-3.0
Death15/Mega-Tauch
plugins/meme.lua
637
5791
local helpers = require "OAuth.helpers" local _file_memes = './data/memes.lua' local _cache = {} local function post_petition(url, arguments) local response_body = {} local request_constructor = { url = url, method = "POST", sink = ltn12.sink.table(response_body), headers = {}, red...
gpl-2.0
dabo123148/WarlightMod
SimpleDiploMod/Client_PresentSettingsUI.lua
1
6447
function Client_PresentSettingsUI(rootParent) root = rootParent; UI.CreateLabel(rootParent).SetText('AI Settings'); CreateLine('AIs are allowed to declare war on player : ', Mod.Settings.AllowAIDeclaration,true,true); CreateLine('AIs are allowed to declare war on AIs : ', Mod.Settings.AIsdeclearAIs,true,true); UI...
mit
dickeyf/darkstar
scripts/zones/Southern_San_dOria_[S]/npcs/Mainchelite.lua
29
5404
----------------------------------- -- Area: Southern SandOria [S] -- NPC: Mainchelite -- @zone 80 -- @pos -16 1 -30 -- CS IDs: -- 0x005 = Generic Greeting for Iron Ram members -- 0x006 = Mid Initiation of other nation -- 0x007 = Ask player to Join Iron Rams -- 0x008 = Ask if changed mind about joining Iron rams (after...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c87798440.lua
3
4093
--アーマー・ブレイカー function c87798440.initial_effect(c) --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(87798440,0)) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetTarget(c87798440.eqtg) e1:SetOperation(...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c95905259.lua
5
1434
--予言僧 チョウレン function c95905259.initial_effect(c) --confirm local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(95905259,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetTarget(c95905259.target) e1:SetOperation(c9590525...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c54266211.lua
5
1525
--エヴォルダー・ウルカノドン function c54266211.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(54266211,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT...
gpl-2.0
Turttle/darkstar
scripts/zones/PsoXja/TextIDs.lua
7
1673
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item> come back again after sorting your inventory ITEM_OBTAINED = 6383; -- Obtained: <item> GIL_OBTAINED = 6384; -- Obtained <number> gil KEYITEM_OBTAINED = 6386; -- Obtain...
gpl-3.0
Turttle/darkstar
scripts/globals/items/loaf_of_pumpernickel.lua
35
1202
----------------------------------------- -- ID: 4591 -- Item: loaf_of_pumpernickel -- Food Effect: 60Min, All Races ----------------------------------------- -- Health 10 -- Vitality 2 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -...
gpl-3.0
dickeyf/darkstar
scripts/zones/Al_Zahbi/npcs/Gajaad.lua
18
2556
----------------------------------- -- Area: Al Zahbi -- NPC: Gajaad -- Type: Donation Taker -- @pos 40.781 -1.398 116.261 48 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Al_Zahbi/TextIDs"] = nil; ---------------------------------...
gpl-3.0
dickeyf/darkstar
scripts/zones/Bastok_Mines/npcs/Neigepance.lua
16
1571
----------------------------------- -- Area: Bastok Mines -- NPC: Neigepance -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Bastok_Mines/TextIDs"] = nil; require("scripts/zones/Bastok_Mines/TextIDs"); ----------------------------------- -- o...
gpl-3.0
adib1380/anit-spam-2
plugins/search_youtube.lua
674
1270
do local google_config = load_from_file('data/google.lua') local function httpsRequest(url) print(url) local res,code = https.request(url) if code ~= 200 then return nil end return json:decode(res) end local function searchYoutubeVideos(text) local url = 'https://www.googleapis.com/youtube/v3/search?' u...
gpl-2.0
Shayan123456/botttttt6
plugins/search_youtube.lua
674
1270
do local google_config = load_from_file('data/google.lua') local function httpsRequest(url) print(url) local res,code = https.request(url) if code ~= 200 then return nil end return json:decode(res) end local function searchYoutubeVideos(text) local url = 'https://www.googleapis.com/youtube/v3/search?' u...
gpl-2.0
dickeyf/darkstar
scripts/zones/Mount_Zhayolm/npcs/qm3.lua
30
1334
----------------------------------- -- Area: Mount Zhayolm -- NPC: ??? (Spawn Anantaboga(ZNM T2)) -- @pos -368 -13 366 61 ----------------------------------- package.loaded["scripts/zones/Mount_Zhayolm/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Mount_Zhayolm/TextIDs"); require("scripts...
gpl-3.0
dickeyf/darkstar
scripts/zones/Windurst_Waters/npcs/Yung_Yaam.lua
1
1765
----------------------------------- -- Area: Windurst Waters -- NPC: Yung Yaam -- Involved In Quest: Wondering Minstrel -- Working 100% -- @zone = 238 -- @pos = -63 -4 27 ----------------------------------- package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil; -----------------------------------...
gpl-3.0
dickeyf/darkstar
scripts/zones/Southern_San_dOria/npcs/Aravoge_TK.lua
13
5604
----------------------------------- -- Area: Southern San d'Oria -- NPC: Aravoge, T.K. -- X Grant Signet -- X Recharge Emperor Band, Empress Band, or Chariot Band -- X Accepts traded Crystals to fill up the Rank bar to open new Missions. -- X Sells items in exchange for Conquest Points -- X Start Supply Run Mis...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/node_seelibody.lua
6
1474
-- 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
Turttle/darkstar
scripts/zones/Southern_San_dOria/npcs/Alaune.lua
32
1490
----------------------------------- -- Area: Southern San d`Oria -- NPC: Alaune -- Type: Tutorial NPC -- @zone: 230 -- @pos -90 1 -56 ----------------------------------- package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settin...
gpl-3.0
deepmind/meltingpot
meltingpot/lua/levels/gift_refinements/init.lua
1
1406
--[[ Copyright 2022 DeepMind Technologies Limited. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in...
apache-2.0
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/node_enter_theveil.lua
6
1105
-- 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
c33737664.lua
7
1285
--墓荒らしの報い function c33737664.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_STANDBY_PHASE,0) c:RegisterEffect(e1) --damage local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(33737664,0)) e2:SetCateg...
gpl-2.0
Turttle/darkstar
scripts/globals/items/serving_of_mille_feuille.lua
36
1426
----------------------------------------- -- ID: 5559 -- Item: Serving of Mille Feuille -- Food Effect: 3 Hrs, All Races ----------------------------------------- -- TODO: Group Effect -- HP +8 -- MP +15 -- Intelligence +1 -- HP Recoverd while healing 1 -- MP Recovered while healing 1 ----------------------------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c46461247.lua
9
1138
--トラップ・マスター function c46461247.initial_effect(c) --flip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(46461247,0)) e1:SetCategory(CATEGORY_DESTROY) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_FLIP) e1:SetTarget(c46461247.target) e1:SetOperation(c46461247.op...
gpl-2.0
Andrey2470T/Advanced-Trains-Optinal-Additional-
advtrains_itrainmap/init.lua
2
4544
local map_def={ example = { p1x=168, p1z=530, p2x=780, p2z=1016, background="itm_example.png", }, } local itm_cache={} local itm_pdata={} local itm_conf_mindia=0.1 minetest.register_privilege("itm", { description = "Allows to display train map", give_to_singleplayer = true, default = false }) local fun...
lgpl-2.1
Turttle/darkstar
scripts/zones/Bastok_Markets/npcs/Wulfnoth.lua
53
1818
----------------------------------- -- Area: Bastok Markets -- NPC: Wulfnoth -- Type: Goldsmithing Synthesis Image Support -- @pos -211.937 -7.814 -56.292 235 ----------------------------------- package.loaded["scripts/zones/Bastok_Markets/TextIDs"] = nil; ----------------------------------- require("scripts/globals/...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c84653834.lua
2
1759
--超能力増幅器 function c84653834.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_DAMAGE_STEP) e1:SetCondition(c84653834.condition) e1:SetTarge...
gpl-2.0
Turttle/darkstar
scripts/zones/Windurst_Woods/npcs/Spare_Five.lua
17
1507
----------------------------------- -- Area: Windurst Woods -- NPC: Spare Five -- Working 100% -- Involved in quest: A Greeting Cardian ----------------------------------- require("scripts/globals/settings"); package.loaded["scripts/globals/quests"] = nil; require("scripts/globals/quests"); package.loaded[...
gpl-3.0
ld-test/cqueues
src/cqueues.lua
1
3754
local loader = function(loader, ...) local core = require"_cqueues" local errno = require"_cqueues.errno" local monotime = core.monotime local running = core.running local strerror = errno.strerror local unpack = assert(table.unpack or unpack) -- 5.1 compat -- lazily load auxlib to prevent circular or unused de...
mit
dickeyf/darkstar
scripts/zones/Temenos/bcnms/Temenos_Northern_Tower.lua
35
1173
----------------------------------- -- Area: Temenos -- Name: ----------------------------------- require("scripts/globals/limbus"); require("scripts/globals/keyitems"); -- After registering the BCNM via bcnmRegister(bcnmid) function onBcnmRegister(player,instance) SetServerVariable("[Temenos_N_Tower]UniqueID",G...
gpl-3.0
dickeyf/darkstar
scripts/zones/Crawlers_Nest/npcs/Treasure_Coffer.lua
13
4680
----------------------------------- -- Area: Crawler Nest -- NPC: Treasure Coffer -- @zone 197 -- @pos -94 0 207 ----------------------------------- package.loaded["scripts/zones/Crawlers_Nest/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems")...
gpl-3.0
dickeyf/darkstar
scripts/zones/Southern_San_dOria_[S]/npcs/Kilhwch1.lua
19
1082
----------------------------------- -- Area: Southern SandOria [S] -- NPC: Kilhwch -- @zone 80 -- @pos -63 2 -50 ----------------------------------- package.loaded["scripts/zones/Southern_San_dOria_[S]/TextIDs"] = nil; require("scripts/zones/Southern_San_dOria_[S]/TextIDs"); ----------------------------------- -- onT...
gpl-3.0
robo-crc/scoreboard
extern/premake/base/os.lua
7
6207
-- -- os.lua -- Additions to the OS namespace. -- Copyright (c) 2002-2011 Jason Perkins and the Premake project -- -- -- Same as os.execute(), but accepts string formatting arguments. -- function os.executef(cmd, ...) cmd = string.format(cmd, unpack(arg)) return os.execute(cmd) end -- -- Scan the well-known ...
mit
SalvationDevelopment/Salvation-Scripts-TCG
c52430902.lua
5
1940
--サイコジャンパー function c52430902.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(52430902,0)) e1:SetCategory(CATEGORY_CONTROL) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCost(c5243...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c100912058.lua
2
3318
--幻煌龍の螺旋絞 --Spiral Hold of the Mythic Radiance Dragon --Script by dest function c100912058.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(c100912058.targ...
gpl-2.0
d-stephane/tpa
command.lua
1
2959
local S = tpa.intllib local P = "" -- Copied from Celeron-55's /teleport command. Thanks Celeron! local function find_free_position_near(pos) local tries = { {x=1,y=0,z=0}, {x=-1,y=0,z=0}, {x=0,y=0,z=1}, {x=0,y=0,z=-1}, } for _,d in pairs(tries) do local p = vector...
gpl-3.0
Turttle/darkstar
scripts/globals/items/holy_maul_+1.lua
41
1077
----------------------------------------- -- ID: 17114 -- Item: Holy Maul +1 -- Additional Effect: Light Damage ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------- -- onAdditionalEffect Action ------------------------------...
gpl-3.0
tdzl2003/luaqt
modules/path/path/impl_posix.lua
1
1189
-- NOTICE: -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTOR...
bsd-3-clause
kidanger/danimate
danimate/editor.lua
1
8071
local drystal = require 'drystal' local filename = arg[1] if not filename then error 'No filename specified in command line. Aborting.' end package.path = package.path .. ';danimate/?.lua' local Sprite = require 'danimate.Sprite' local Animation = require 'danimate.Animation' local sprite local mouse_drag local zo...
mit
SalvationDevelopment/Salvation-Scripts-TCG
c42737833.lua
5
1346
--XX-セイバー エマーズブレイド function c42737833.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(42737833,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(c42737833.condition)...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c97219708.lua
2
4306
--RR-ラスト・ストリクス function c97219708.initial_effect(c) --recover local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(97219708,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_RECOVER) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_PRE_DAMAGE_CALCULATE) e1:SetRange(LOCATION_HAND) e1:SetCondition(c97...
gpl-2.0
dickeyf/darkstar
scripts/zones/Bastok_Markets_[S]/npcs/Adelbrecht.lua
53
4980
----------------------------------- -- Area: Bastok Markets (S) -- NPC: Adelbrecht -- Starts Quests: The Fighting Fourth -- Involved in Missions: Back to the Beginning -- CS IDs: -- 139 = 0x008B = Greetings, civilian. The Seventh Cohors of the Republican Legion's Fourth Division is currently recruiting new troops. -- ...
gpl-3.0
dickeyf/darkstar
scripts/globals/items/serving_of_herb_quus.lua
18
1383
----------------------------------------- -- ID: 4559 -- Item: serving_of_herb_quus -- Food Effect: 180Min, All Races ----------------------------------------- -- Dexterity 1 -- Mind -1 -- Ranged ACC % 7 -- Ranged ACC Cap 10 ----------------------------------------- require("scripts/globals/status"); ----------------...
gpl-3.0
Lestrigon17/zombieplague
framework/sh_round.lua
1
10765
zm.round = zm.round or {} zm.round.EndTimeScale = 15 -- Don't touch ROUND_STATE = ROUND_STATE or 1 ROUND_NEW = 0 ROUND_PREPARE = 1 ROUND_ACTIVE = 2 ROUND_END = 3 ROUND_EXIT = 4 ROUND_FREE = 5 -- Only 1 active player ROUND_HOLD = 6 -- No active players ROUND_HOLD_TiME = {{"Initial", 20}} ROUND_VARS = RO...
gpl-3.0
dickeyf/darkstar
scripts/zones/Konschtat_Highlands/npcs/qm2.lua
13
1465
----------------------------------- -- Area: Konschtat Highlands -- NPC: qm2 (???) -- Involved in Quest: Forge Your Destiny -- @pos -709 2 102 108 ----------------------------------- package.loaded["scripts/zones/Konschtat_Highlands/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c42216237.lua
2
1801
--ゼラの天使 function c42216237.initial_effect(c) --synchro summon aux.AddSynchroProcedure(c,nil,aux.NonTuner(nil),1) c:EnableReviveLimit() -- local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_SINGLE_RANGE) e1:SetRange(LOCATION_MZONE) e1:SetCode(EFFECT_UPDATE_ATTACK) e1:SetV...
gpl-2.0
Turttle/darkstar
scripts/zones/Balgas_Dais/npcs/Armoury_Crate.lua
36
1024
----------------------------------- -- Area: Balgas Dais -- NPC: Armoury Crate -- Balgas Dais Burning Cicrcle Armoury Crate ----------------------------------- package.loaded["scripts/zones/Balgas_Dais/TextIDs"] = nil; ------------------------------------- require("scripts/globals/titles"); require("scripts/...
gpl-3.0
dickeyf/darkstar
scripts/globals/spells/paralyga.lua
21
1694
----------------------------------------- -- Spell: Paralyze -- Spell accuracy is most highly affected by Enfeebling Magic Skill, Magic Accuracy, and MND. ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------------- -- OnSpell...
gpl-3.0
Turttle/darkstar
scripts/globals/items/plate_of_salmon_sushi_+1.lua
35
1480
----------------------------------------- -- ID: 5664 -- Item: plate_of_salmon_sushi_+1 -- Food Effect: 60Min, All Races ----------------------------------------- -- Strength 2 -- Accuracy % 15 -- Ranged ACC % 15 ----------------------------------------- require("scripts/globals/status"); ----------------...
gpl-3.0
alobaidy98/ahmed..alobaidy
plugins/ar-robot.lua
1
2578
--[[ ▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ BY AHMED ALOBAIDY ▀▄ ▄▀ ▀▄ ▄▀ BY AHMED ALOBAIDY (@A7mEd_B98) ▀▄ ▄▀ ▀▄ ▄▀ JUST WRITED BY AHMED ALOBAIDY ▀▄ ▄▀ ▀▄ ▄▀disable chat: تعطيل تفعيل دردشه محدد ▀▄ ▄▀...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c76067258.lua
2
2678
--No.66 覇鍵甲虫マスター・キー・ビートル function c76067258.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsAttribute,ATTRIBUTE_DARK),4,2) c:EnableReviveLimit() --target local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(76067258,0)) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetT...
gpl-2.0
Turttle/darkstar
scripts/commands/addallmaps.lua
24
1550
--------------------------------------------------------------------------------------------------- -- func: addallmaps -- desc: Adds all maps to the given player. --------------------------------------------------------------------------------------------------- cmdprops = { permission = 1, parameters...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c30643162.lua
5
1111
--ストライク・ショット function c30643162.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetTarget(c30643162.target) e1:SetOperation(c30643162.activate) c:RegisterEffect(e1) end function c30643162.t...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c15305240.lua
6
1347
--鹵獲装置 function c15305240.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_CONTROL) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(c15305240.target) e1:SetOperation(c15305240.activate) c:RegisterEffect(e1) end function c15305240.filter(c) return c...
gpl-2.0
dickeyf/darkstar
scripts/zones/Southern_San_dOria/npcs/Ullasa.lua
13
1686
----------------------------------- -- Area: Southern San d'Oria -- NPC: Ullasa -- General Info NPC ------------------------------------- package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/quests"); ...
gpl-3.0