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
bartekbp/graphics
glsdk/glload/codegen/data/getProcAddress.lua
5
2236
--[[This file returns a string that defines "gleIntGetProcAddress" for the various platforms.]] return [====[ #if defined(__APPLE__) #include <mach-o/dyld.h> static void* AppleGLGetProcAddress (const GLubyte *name) { static const struct mach_header* image = NULL; NSSymbol symbol; char* symbolName; if (NULL ==...
mit
SalvationDevelopment/Salvation-Scripts-TCG
c49010598.lua
6
1262
--天罰 function c49010598.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(c49010598.condition) e1:SetCost(c49010598.cost) e1:SetTarget(c49010598.target) e1:SetOperation(c49010...
gpl-2.0
dickeyf/darkstar
scripts/globals/spells/bluemagic/blood_drain.lua
3
1660
----------------------------------------- -- Spell: Blood Drain -- Steals an enemy's HP. Ineffective against undead -- Spell cost: 10 MP -- Monster Type: Giant Bats -- Spell Type: Magical (Dark) -- Blue Magic Points: 2 -- Stat Bonus: HP-5, MP+5 -- Level: 20 -- Casting Time: 4 seconds -- Recast Time: 90 seconds -- Magic...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c51960178.lua
7
1138
--フェアリー・チア・ガール function c51960178.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_FAIRY),4,2) c:EnableReviveLimit() --draw local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetDescription(aux.Stringid(51960178,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:S...
gpl-2.0
eugeneia/snabb
src/apps/ipv4/reassemble.lua
2
16120
-- Use of this source code is governed by the Apache 2.0 license; see COPYING. -- IPv4 reassembly (RFC 791) -- -- This reassembly implementation will abort ongoing reassemblies if -- it sees overlapping fragments. This follows the recommendation of -- RFC 5722, which although it is given specifically for IPv6, it -- ...
apache-2.0
dickeyf/darkstar
scripts/zones/Jugner_Forest/npcs/Bubchu-Bibinchu_WW.lua
13
3332
----------------------------------- -- Area: Jugner Forest -- NPC: Bubchu-Bibinchu, W.W. -- Type: Outpost Conquest Guards -- @pos 60.087 -0.602 -11.847 104 ----------------------------------- package.loaded["scripts/zones/Jugner_Forest/TextIDs"] = nil; ----------------------------------- require("scripts/globals/conq...
gpl-3.0
Turttle/darkstar
scripts/zones/Northern_San_dOria/npcs/Jeanvirgaud.lua
19
1841
----------------------------------- -- Area: Northern San d'Oria -- NPC: Jeanvirgaud -- Outpost Teleporter NPC -- @pos 45.559 -0.199 26.300 231 ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/conquest");...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/finalcommon.lua
6
1472
-- 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/Dynamis-Xarcabard/mobs/Animated_Tabar.lua
16
1477
----------------------------------- -- Area: Dynamis Xarcabard -- NPC: Animated Tabar ----------------------------------- require("scripts/globals/status"); require("scripts/zones/Dynamis-Xarcabard/TextIDs"); ----------------------------------- -- onMobEngaged ----------------------------------- functio...
gpl-3.0
Turttle/darkstar
scripts/zones/Misareaux_Coast/npcs/_0p0.lua
25
2664
----------------------------------- -- Area: Misareaux Coast -- NPC: Dilapidated Gate -- @pos 260 9 -435 25 ----------------------------------- package.loaded["scripts/zones/Misareaux_Coast/TextIDs"] = nil; ----------------------------------- require("scripts/globals/missions"); require("scripts/zones/Misare...
gpl-3.0
Turttle/darkstar
scripts/zones/Giddeus/Zone.lua
28
1653
----------------------------------- -- -- Zone: Giddeus (145) -- ----------------------------------- package.loaded["scripts/zones/Giddeus/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Giddeus/TextIDs"); ----------------------------------- ...
gpl-3.0
Turttle/darkstar
scripts/zones/Bastok_Markets/npcs/Cleades.lua
17
3519
----------------------------------- -- Area: Bastok Markets -- NPC: Cleades -- Type: Mission Giver -- @pos -358 -10 -168 235 ----------------------------------- package.loaded["scripts/zones/Bastok_Markets/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scr...
gpl-3.0
Metastruct/pac3
lua/pac3/extra/shared/modifiers/size.lua
1
1618
local def = { run = 500, walk = 250, step = 18, jump = 200, view = Vector(0,0,64), viewducked = Vector(0,0,28), mass = 85, min = Vector(-16, -16, 0), max = Vector(16, 16, 72), maxduck = Vector(16, 16, 36), MIN_PL_SIZE = 0.1, MAX_PL_SIZE = 10.0, } pacx.size_constants = def function pacx.GetPlayerSize(ply...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c87836938.lua
9
1137
--ヴァイロン・ヴァンガード function c87836938.initial_effect(c) --draw local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(87836938,0)) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_LEAVE_FIELD)...
gpl-2.0
shadyproject/wim-ng
WIM/Modules/Expose.lua
1
4569
--imports local WIM = WIM; local _G = _G; local select = select; local table = table; local unpack = unpack; local string = string; local pairs = pairs; --set namespace setfenv(1, WIM); db_defaults.expose = { combat = true, groupOnly = false, border = false, borderSize = 20, direction = 1, pro...
mit
Turttle/darkstar
scripts/globals/items/pot_of_royal_tea.lua
35
1204
----------------------------------------- -- ID: 4524 -- Item: pot_of_royal_tea -- Food Effect: 240Min, All Races ----------------------------------------- -- Vitality -1 -- Charisma 3 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- --...
gpl-3.0
Turttle/darkstar
scripts/zones/Castle_Oztroja/npcs/_47j.lua
17
1570
----------------------------------- -- Area: Castle Oztroja -- NPC: _47j (Torch Stand) -- Notes: Opens door _472 near password #1 -- @pos -62.533 -1.859 -30.634 151 ----------------------------------- package.loaded["scripts/zones/Castle_Oztroja/TextIDs"] = nil; ----------------------------------- require(...
gpl-3.0
dickeyf/darkstar
scripts/zones/Northern_San_dOria/npcs/Aurege.lua
1
1993
----------------------------------- -- Area: Northern San d'Oria -- NPC: Aurege -- Type: Quest Giver NPC -- Starts Quest: Exit the Gambler -- @zone: 231 -- @pos -156.253 11.999 253.691 ----------------------------------- require("scripts/globals/quests"); require("scripts/globals/keyitems"); require("scripts/glob...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c46502744.lua
2
2867
--応戦するG function c46502744.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_CHAINING) e1:SetRange(LOCATION_HAND) e1:SetCondition(c46502744.spcon) e1:SetCost(c46502744.spcost) e1:SetTarget(c46502744.sptg) e1:Se...
gpl-2.0
dickeyf/darkstar
scripts/globals/settings.lua
1
12206
----------------------------------------------- ------------- GLOBAL SETTINGS ------------- ----------------------------------------------- -- This is to allow server operators to further customize their servers. As more features are added to pXI, the list will surely expand. -- Anything scripted can be customize...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c82016179.lua
7
1516
--森羅の施し function c82016179.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW+CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,82016179+EFFECT_COUNT_CODE_OATH) e1:SetTarget(c82016179...
gpl-2.0
Turttle/darkstar
scripts/globals/items/chunk_of_smelling_salts.lua
18
1202
----------------------------------------- -- ID: 5320 -- Item: Chunk of Smelling Salts -- Item Effect: Recover Pets from Sleep -- Duration: 180 Secs Medicated ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck -------------------------...
gpl-3.0
Turttle/darkstar
scripts/globals/items/hellfire_sword.lua
41
1073
----------------------------------------- -- ID: 16928 -- Item: Hellfire Sword -- Additional Effect: Fire Damage ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------- -- onAdditionalEffect Action -----------------------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c91998121.lua
2
3842
--XYZ-ドラゴン·キャノン function c91998121.initial_effect(c) --fusion material c:EnableReviveLimit() aux.AddFusionProcCode3(c,62651957,65622692,64500000,true,true) --spsummon condition local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:Set...
gpl-2.0
crazyhamedboy/telegrambot
plugins/img_google.lua
660
3196
do local mime = require("mime") local google_config = load_from_file('data/google.lua') local cache = {} --[[ local function send_request(url) local t = {} local options = { url = url, sink = ltn12.sink.table(t), method = "GET" } local a, code, headers, status = http.request(options) return tabl...
gpl-2.0
omidtarh/fbot
plugins/img_google.lua
660
3196
do local mime = require("mime") local google_config = load_from_file('data/google.lua') local cache = {} --[[ local function send_request(url) local t = {} local options = { url = url, sink = ltn12.sink.table(t), method = "GET" } local a, code, headers, status = http.request(options) return tabl...
gpl-2.0
alishbully6528/htm
plugins/img_google.lua
660
3196
do local mime = require("mime") local google_config = load_from_file('data/google.lua') local cache = {} --[[ local function send_request(url) local t = {} local options = { url = url, sink = ltn12.sink.table(t), method = "GET" } local a, code, headers, status = http.request(options) return tabl...
gpl-2.0
mamaddeveloper/hhw
plugins/img_google.lua
660
3196
do local mime = require("mime") local google_config = load_from_file('data/google.lua') local cache = {} --[[ local function send_request(url) local t = {} local options = { url = url, sink = ltn12.sink.table(t), method = "GET" } local a, code, headers, status = http.request(options) return tabl...
gpl-2.0
Shayan123456/botttttt6
plugins/img_google.lua
660
3196
do local mime = require("mime") local google_config = load_from_file('data/google.lua') local cache = {} --[[ local function send_request(url) local t = {} local options = { url = url, sink = ltn12.sink.table(t), method = "GET" } local a, code, headers, status = http.request(options) return tabl...
gpl-2.0
iskygame/skynet
lualib/redis.lua
20
6194
local skynet = require "skynet" local socket = require "socket" local socketchannel = require "socketchannel" local table = table local string = string local assert = assert local redis = {} local command = {} local meta = { __index = command, -- DO NOT close channel in __gc } ---------- redis response local redcm...
mit
Turttle/darkstar
scripts/zones/La_Vaule_[S]/Zone.lua
12
1784
----------------------------------- -- -- Zone: La_Vaule_[S] (85) -- ----------------------------------- package.loaded["scripts/zones/La_Vaule_[S]/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/La_Vaule_[S]/TextIDs"); require("scripts/globals...
gpl-3.0
Turttle/darkstar
scripts/zones/Port_Bastok/npcs/Yazan.lua
17
2027
----------------------------------- -- Area: Port Bastok -- NPC: Yazan -- Starts Quests: Bite the Dust (100%) ----------------------------------- package.loaded["scripts/zones/Port_Bastok/TextIDs"] = nil; ------------------------------------ require("scripts/globals/settings"); require("scripts/globals/titles...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c89185742.lua
5
1837
--風征竜-ライトニング function c89185742.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(89185742,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,89185742) e1:SetCost(c89185742.spcost) e1:SetTarget(c89...
gpl-2.0
mohammadclash/STAR
plugins/domaintools.lua
359
1494
local ltn12 = require "ltn12" local https = require "ssl.https" -- Edit data/mashape.lua with your Mashape API key -- http://docs.mashape.com/api-keys local mashape = load_from_file('data/mashape.lua', { api_key = '' }) local function check(name) local api = "https://domainsearch.p.mashape.com/index.php?"...
gpl-2.0
Turttle/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Wazyih.lua
34
1031
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Wazyih -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whitegate/TextIDs"); -----------...
gpl-3.0
Turttle/darkstar
scripts/globals/spells/bluemagic/hydro_shot.lua
27
1796
----------------------------------------- -- Spell: Hydro Shot -- Additional effect: Enmity Down. Chance of effect varies with TP -- Spell cost: 55 MP -- Monster Type: Beastmen -- Spell Type: Physical (Blunt) -- Blue Magic Points: 3 -- Stat Bonus: MND+2 -- Level: 63 -- Casting Time: 0.5 seconds -- Recast Time...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c58330108.lua
2
3844
--破壊竜ガンドラ-ギガ・レイズ function c58330108.initial_effect(c) c:EnableReviveLimit() --special summon rule local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE) e1:SetCode(EFFECT_SPSUMMON_PROC) e1:SetRange(LOCATION_HAND) e1:SetCondition(c58330108....
gpl-2.0
eugeneia/snabb
lib/ljsyscall/syscall/libc.lua
24
2992
-- things that are libc only, not syscalls -- this file will not be included if not running with libc eg for rump local require, error, assert, tonumber, tostring, setmetatable, pairs, ipairs, unpack, rawget, rawset, pcall, type, table, string = require, error, assert, tonumber, tostring, setmetatable, pairs, ipairs,...
apache-2.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/icechunksmall.lua
6
1251
-- 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
mchaza/soka
src/libraries/LoveFrames/objects/internal/tooltip.lua
3
7244
--[[------------------------------------------------ -- Love Frames - A GUI library for LOVE -- -- Copyright (c) 2013 Kenny Shields -- --]]------------------------------------------------ -- tooltip clas local newobject = loveframes.NewObject("tooltip", "loveframes_object_tooltip", true) --[[-----------------------...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c25682811.lua
2
2533
--ドラグニティナイト-バルーチャ function c25682811.initial_effect(c) --synchro summon aux.AddSynchroProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_DRAGON),aux.NonTuner(Card.IsRace,RACE_WINDBEAST),1) c:EnableReviveLimit() --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(25682811,0)) e1:SetCategory(CA...
gpl-2.0
Turttle/darkstar
scripts/zones/Windurst_Waters_[S]/npcs/Kristen.lua
38
1041
----------------------------------- -- Area: Windurst Waters (S) -- NPC: Kristen -- Type: Standard NPC -- @zone: 94 -- @pos 2.195 -2 60.296 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil; --------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c40838625.lua
2
1308
--砂塵のバリア -ダスト・フォース- function c40838625.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(c40838625.condition) e1:SetTarget(c40838625.target) e1:SetOperation(c40838625.activate) c:Regi...
gpl-2.0
Turttle/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/HomePoint#4.lua
19
1216
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: HomePoint#4 -- @pos -99 -6 -68 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Aht_Urhgan_Whitegate/TextIDs"); require("scr...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c5609226.lua
5
1336
--チューナーズ・バリア function c5609226.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(c5609226.target) e1:SetOperation(c5609226.activate) c:RegisterEffect(e1) end function c5609226.filter(c) ...
gpl-2.0
dickeyf/darkstar
scripts/zones/Lower_Delkfutts_Tower/npcs/Grounds_Tome.lua
30
1107
----------------------------------- -- Area: Lower Delkfutt's Tower -- NPC: Grounds Tome ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/groundsofvalor"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(play...
gpl-3.0
Turttle/darkstar
scripts/zones/Misareaux_Coast/npcs/qm1.lua
16
1324
----------------------------------- -- Area: Misareaux_Coast -- NPC: ??? (Spawn Gration) -- @pos 113.563 -16.302 38.912 25 ----------------------------------- package.loaded["scripts/zones/Misareaux_Coast/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Misareaux_Coast/TextIDs"); ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c77505534.lua
2
1289
--堕ち影の蠢き function c77505534.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOGRAVE+CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,0x11e8) e1:SetTarget(c77505534.target) e1:SetOperation(c77505534.activate) c:RegisterEffec...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c75840616.lua
2
1629
--武神帝-スサノヲ function c75840616.initial_effect(c) c:SetUniqueOnField(1,0,75840616) --xyz summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsSetCard,0x88),4,2) c:EnableReviveLimit() --search local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DECKDES) e1:SetDescription(a...
gpl-2.0
gzoom13/embox
platform/ti816x_net_filter/templates/x86_test/rootfs/server/cgi.lua
12
2851
local Cgi = {} -- Return a urlencoded copy of Str. For example, -- -- "Here & there + 97% of other places" -- is encoded as -- -- "Here%20%26%20there%20%2B%2097%25%20of%20other%20places" function Cgi.Encode(Str) return string.gsub(Str, '%W', function(Str) return string.format('%%%02X', string.byte(Str)) end ) end -- Re...
bsd-2-clause
dickeyf/darkstar
scripts/globals/items/wild_pineapple.lua
18
1180
----------------------------------------- -- ID: 4598 -- Item: wild_pineapple -- Food Effect: 5Min, All Races ----------------------------------------- -- Agility -5 -- Intelligence 3 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck ...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/armapillar.lua
6
8403
-- 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
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/node_singinghint.lua
6
1224
-- 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/King_Ranperres_Tomb/npcs/Treasure_Chest.lua
13
2985
----------------------------------- -- Area: King Ranperres Tomb -- NPC: Treasure Chest -- @zone 190 ----------------------------------- package.loaded["scripts/zones/King_Ranperres_Tomb/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/treasure"); requ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c11743119.lua
5
1908
--ユニオン・ライダー function c11743119.initial_effect(c) --equip local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(11743119,0)) e1:SetCategory(CATEGORY_EQUIP) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCondition(c11743119....
gpl-2.0
Turttle/darkstar
scripts/zones/Windurst_Waters_[S]/npcs/Ranna-Brunna.lua
38
1053
----------------------------------- -- Area: Windurst Waters (S) -- NPC: Ranna-Brunna -- Type: Standard NPC -- @zone: 94 -- @pos 123.085 -8.874 223.734 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = n...
gpl-3.0
Turttle/darkstar
scripts/zones/QuBia_Arena/bcnms/heir_to_the_light.lua
18
1805
----------------------------------- -- Name: Mission 9-2 SANDO ----------------------------------- package.loaded["scripts/zones/Qubia_arena/TextIDs"] = nil; ------------------------------------- require("scripts/globals/keyitems"); require("scripts/globals/missions"); require("scripts/zones/QuBia_Arena/TextIDs"); --...
gpl-3.0
dickeyf/darkstar
scripts/zones/The_Eldieme_Necropolis/npcs/_5fk.lua
13
1076
----------------------------------- -- Area: The Eldieme Necropolis -- NPC: Titan's Gate -- @pos 100 -34 88 195 ----------------------------------- package.loaded["scripts/zones/The_Eldieme_Necropolis/TextIDs"] = nil; ----------------------------------- require("scripts/zones/The_Eldieme_Necropolis/TextIDs"); ------...
gpl-3.0
Mhdl80/Mentalseed
plugins/stats.lua
866
4001
do -- Returns a table with `name` and `msgs` 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_prin...
agpl-3.0
Turttle/darkstar
scripts/globals/abilities/dancers_roll.lua
8
2592
----------------------------------- -- Ability: Dancer's Roll -- Grants Regen status to party members within area of effect -- Optimal Job: Dancer -- Lucky Number: 3 -- Unlucky Number: 7 -- Level: 61 -- -- Die Roll |No DNC |With DNC -- -------- ---------- ---------- -- 1 ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c41517789.lua
5
1568
--星態龍 function c41517789.initial_effect(c) --synchro summon aux.AddSynchroProcedure(c,nil,aux.NonTuner(nil),1) c:EnableReviveLimit() --spsummon local e1=Effect.CreateEffect(c) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) ...
gpl-2.0
Turttle/darkstar
scripts/globals/spells/aurorastorm.lua
31
1161
-------------------------------------- -- Spell: Aurorastorm -- Changes the weather around target party member to "auroras." -------------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/magic"); ------------------------------------...
gpl-3.0
Turttle/darkstar
scripts/zones/Dynamis-Xarcabard/mobs/Duke_Scox.lua
16
1253
----------------------------------- -- Area: Dynamis Xarcabard -- NPC: Duke Scox ----------------------------------- require("scripts/globals/dynamis"); require("scripts/zones/Dynamis-Xarcabard/TextIDs"); ----------------------------------- -- onMobEngaged ----------------------------------- function on...
gpl-3.0
dickeyf/darkstar
scripts/zones/Mount_Zhayolm/Zone.lua
11
1794
----------------------------------- -- -- Zone: Mount_Zhayolm (61) -- ----------------------------------- package.loaded["scripts/zones/Mount_Zhayolm/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Mount_Zhayolm/TextIDs"); ------------------------------...
gpl-3.0
dickeyf/darkstar
scripts/globals/spells/paralyze_ii.lua
13
2306
----------------------------------------- -- Spell: Paralyze II -- Spell accuracy is most highly affected by Enfeebling Magic Skill, Magic Accuracy, and MND. -- caster:getMerit() returns a value which is equal to the number of merit points TIMES the value of each point -- Paralyze II value per point is '1' This is a co...
gpl-3.0
mimetic/DIG-corona-library
examples/slideviewer+textrender+accordion/scripts/dmc/dmc_widget/widget_popover/popover_view.lua
1
6877
--====================================================================-- -- dmc_widget/widget_popover/popover_view.lua -- -- Documentation: http://docs.davidmccuskey.com/ --====================================================================-- --[[ The MIT License (MIT) Copyright (c) 2015 David McCuskey Permission ...
mit
Turttle/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Mhasbaf.lua
37
1030
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Mhasbaf -- Type: Standard NPC -- @pos 54.701 -6.999 11.387 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whit...
gpl-3.0
Turttle/darkstar
scripts/zones/Cloister_of_Frost/bcnms/trial-size_trial_by_ice.lua
19
2017
----------------------------------- -- Area: Cloister of Frost -- BCNM: Trial-size Trial by Ice -- @pos 558 0.1 596 203 ----------------------------------- package.loaded["scripts/zones/Cloister_of_Frost/TextIDs"] = nil; ------------------------------------- require("scripts/globals/keyitems"); require("scripts/global...
gpl-3.0
adib1380/anit-spam-2
plugins/moderation.lua
336
9979
do local function check_member(cb_extra, success, result) local receiver = cb_extra.receiver local data = cb_extra.data local msg = cb_extra.msg for k,v in pairs(result.members) do local member_id = v.id if member_id ~= our_id then local username = v.username data[tostring(m...
gpl-2.0
dickeyf/darkstar
scripts/zones/Abyssea-Altepa/Zone.lua
33
1470
----------------------------------- -- -- Zone: Abyssea - Altepa -- ----------------------------------- package.loaded["scripts/zones/Abyssea-Altepa/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/quests"); require("scripts/zones/Abyssea-Altepa/TextIDs...
gpl-3.0
dickeyf/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Fayeewah.lua
13
1166
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Fayeewah -- Standard Merchant NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whitegate/TextIDs"); require("scripts...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c100912007.lua
2
4013
--SRアクマグネ --Speedroid Fiendmagnet --Scripted by Eerie Code function c100912007.initial_effect(c) --cannot be synchro local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCondition(c10091...
gpl-2.0
dickeyf/darkstar
scripts/globals/items/cone_of_seraphs_kiss.lua
18
1385
----------------------------------------- -- ID: 5556 -- Item: cone_of_seraphs_kiss -- Food Effect: 1Hr, All Races ----------------------------------------- -- HP 15 -- MP % 16 (cap 85) -- MP Recovered While Healing 2 ----------------------------------------- require("scripts/globals/status"); -----------------------...
gpl-3.0
mohammadclash/STAR
plugins/id.lua
355
2795
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..' ' end if user.lastname then text = text..user.last_name end return text end local function returnids(cb_extra, success, resu...
gpl-2.0
dickeyf/darkstar
scripts/zones/Nashmau/npcs/Awaheen.lua
13
1903
----------------------------------- -- Area: Nashmau -- NPC: Awaheen -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Nashmau/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Nashmau/TextIDs"); ----------------------------------- -- onTrade Action -----...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/nautilus.lua
12
4455
-- 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/globals/items/plate_of_urchin_sushi_+1.lua
35
1530
----------------------------------------- -- ID: 5160 -- Item: plate_of_urchin_sushi_+1 -- Food Effect: 60Min, All Races ----------------------------------------- -- Health 40 -- Strength 1 -- Vitality 5 -- Accuracy % 16 -- Ranged ACC % 16 -- Sleep Resist 5 ----------------------------------------- requir...
gpl-3.0
dickeyf/darkstar
scripts/globals/items/jar_of_ground_wasabi.lua
18
1581
----------------------------------------- -- ID: 5164 -- Item: jar_of_ground_wasabi -- Food Effect: 5Min, All Races ----------------------------------------- -- Strength -1 -- Dexterity -1 -- Agility -1 -- Vitality -1 -- Intelligence -1 -- Mind -1 -- Charisma -1 ----------------------------------------- require("scrip...
gpl-3.0
LuaDist/oil
lua/loop/component/base.lua
12
6632
-------------------------------------------------------------------------------- ---------------------- ## ##### ##### ###### ----------------------- ---------------------- ## ## ## ## ## ## ## ----------------------- ---------------------- ## ## ## ## ## ###### --------------------...
mit
SalvationDevelopment/Salvation-Scripts-TCG
c26563200.lua
5
1520
--弦魔人ムズムズリズム function c26563200.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,nil,3,2) c:EnableReviveLimit() --attack up local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(26563200,0)) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_QUICK_O) e1:SetCode(EVENT_FREE_CHAIN) e1:SetProp...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c73729209.lua
2
2178
--スキル・サクセサー function c73729209.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_ATKCHANGE) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(TIMING_DAMAGE_STEP) e1:SetCondition(c73729...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c25642998.lua
9
1264
--ポセイドン・ウェーブ function c25642998.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DAMAGE) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_ATTACK_ANNOUNCE) e1:SetCondition(c25642998.condition) e1:SetTarget(c25642998.target) e1:SetOpera...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c100000034.lua
2
2709
--トライアングル-O function c100000034.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(c100000034.dcon) e1:SetTarget(c100000034.target) e1:SetOperation(c100000034.activate) c:RegisterEffect(e1) ...
gpl-2.0
b38tn1k/TankThing
classes/events.lua
1
1104
function love.mousepressed(x, y, button, istouch) if game.pause == true then -- NEW GAME BUTTON if game.menu:newGameButton(x, y) == true then game.screen.width, game.screen.height = love.window.getDesktopDimensions(1) game.new() end game.menu:updateTeams(x, y) else if button == 1 the...
mit
dickeyf/darkstar
scripts/zones/Castle_Oztroja/npcs/_47w.lua
13
1276
----------------------------------- -- Area: Castle Oztroja -- NPC: _47w (Handle) -- Notes: Opens door _473 from behind -- @pos -41.377 -17.084 17.036 151 ----------------------------------- package.loaded["scripts/zones/Castle_Oztroja/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Cast...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c100912030.lua
2
6733
--智天の神星龍 --Zefratorah Grammaton --Scripted by Eerie Code function c100912030.initial_effect(c) c:EnableReviveLimit() aux.EnablePendulumAttribute(c) --change scale local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(100912030,0)) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_PZONE) e1:SetCount...
gpl-2.0
dickeyf/darkstar
scripts/zones/The_Boyahda_Tree/npcs/qm2.lua
13
2453
----------------------------------- -- Area: The Boyahda Tree -- NPC: qm2 (???) -- Involved in Quest: Searching for the Right Words -- @pos 34.651 -20.183 -61.647 153 ----------------------------------- package.loaded["scripts/zones/The_Boyahda_Tree/TextIDs"] = nil; ----------------------------------- require("scripts...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c39910367.lua
2
2486
--魔法都市エンディミオン function c39910367.initial_effect(c) c:EnableCounterPermit(0x1) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --Add counter local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD) e3:SetC...
gpl-2.0
dickeyf/darkstar
scripts/zones/Chamber_of_Oracles/Zone.lua
30
1741
----------------------------------- -- -- Zone: Chamber_of_Oracles (168) -- ----------------------------------- package.loaded["scripts/zones/Chamber_of_Oracles/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Chamber_of_Oracles/TextIDs"); --------------...
gpl-3.0
dickeyf/darkstar
scripts/zones/Tavnazian_Safehold/npcs/Nilerouche.lua
13
1300
----------------------------------- -- Area: Tavnazian Safehold -- NPC: Nilerouche -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Tavnazian_Safehold/TextIDs"] = nil; require("scripts/zones/Tavnazian_Safehold/TextIDs"); ----------------------...
gpl-3.0
sevenbot/teamseven
plugins/id.lua
226
4260
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..' ' end if user.lastname then text = text..user.last_name end return text end local function returnids(cb_extra, success, result) local re...
gpl-2.0
deepmind/meltingpot
meltingpot/lua/levels/the_matrix/init.lua
1
1396
--[[ 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
SalvationDevelopment/Salvation-Scripts-TCG
c60549248.lua
2
2382
--電池メン-角型 function c60549248.initial_effect(c) --tohand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(60549248,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e1:Set...
gpl-2.0
Turttle/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Saluhwa.lua
34
1475
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Saluhwa -- Standard Merchant NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/globals/shop"); require("scripts/zones/Aht_Urh...
gpl-3.0
dickeyf/darkstar
scripts/globals/items/serving_of_emperor_roe.lua
18
1339
----------------------------------------- -- ID: 4275 -- Item: serving_of_emperor_roe -- Food Effect: 30Min, All Races ----------------------------------------- -- Health 8 -- Magic 8 -- Dexterity 4 -- Mind -4 ----------------------------------------- require("scripts/globals/status"); -------------------------------...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/bloodcell-common.lua
6
2193
-- 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
prashantabmc/boundary-plugin-memcached
init.lua
2
2143
-- Copyright 2015 BMC Software, Inc. -- -- 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 -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed ...
apache-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c34620088.lua
7
1707
--ギミック・パペット-シャドー・フィーラー function c34620088.initial_effect(c) --battle indestructable local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) e1:SetValue(1) c:RegisterEffect(e1) --spsummon local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(34620088,0)) ...
gpl-2.0
ctallec/bigart
tests/gradientCheck.lua
1
1981
local optim = require 'optim' local Executer = require 'utils.executer' local RnnCore = require 'models.rnnCore' local Stack = require 'utils.stack' local StoragePolicy = require 'utils.storagePolicy' local memoryAllocation = 5 local temporality = 10 local vocabSize = 5 local hiddenSize = 3 local rnnBuilder = RnnCore...
mit
crazyhamedboy/telegrambot
plugins/minecraft.lua
624
2605
local usage = { "!mine [ip]: Searches Minecraft server on specified ip and sends info. Default port: 25565", "!mine [ip] [port]: Searches Minecraft server on specified ip and port and sends info.", } local ltn12 = require "ltn12" local function mineSearch(ip, port, receiver) --25565 local responseText = "" l...
gpl-2.0