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
sevenbot/teamseven
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
eugeneia/snabb
lib/luajit/testsuite/test/lib/ffi/ffi_parse_struct.lua
6
9691
local ffi = require("ffi") dofile("../common/ffi_util.inc") checkfail{ "struct", "struct {", "struct xx xx {}", "struct { int x }", "struct { int x, }", "struct { int x,y }", "struct { void x; }", "struct { int x(void); }", "struct recursive1 { struct recursive1 { } x; }", "union", "union {",...
apache-2.0
wljcom/vlc
share/lua/playlist/canalplus.lua
113
3501
--[[ $Id: $ Copyright (c) 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. This program is distr...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c80921533.lua
4
2559
--死皇帝の陵墓 function c80921533.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetValue(SUMMON_TYPE_NORMAL) c:RegisterEffect(e1) --summon local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(80921533,0)) e2:SetProperty(EFFECT...
gpl-2.0
hhrhhr/Lua-utils-for-How-to-Survive
step_1_2_text_extract.lua
1
2763
package.path = "./?.luac;./?.lua" require("util_binary_reader") local dir = arg[1] or "." local no_convert = (arg[2] or nil) print() local source = {} if no_convert ~= nil then for i = 1, 256 do table.insert(source, i) end else source = { 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 97,...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c69243953.lua
7
2353
--蝶の短剣-エルマ function c69243953.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(c69243953.target) e1:SetOperation(c69243953.operation) c:RegisterEffect(e1...
gpl-2.0
wljcom/vlc
share/lua/playlist/youtube.lua
4
14991
--[[ $Id$ Copyright © 2007-2013 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. This program is dist...
gpl-2.0
Turttle/darkstar
scripts/zones/Abyssea-Grauberg/npcs/Dominion_Tactician.lua
61
4431
----------------------------------- -- Area: Abyssea - Grauberg -- NPC: Dominion Tactician -- ----------------------------------- package.loaded["scripts/zones/Abyssea-Grauberg/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/abyssea"); require("script...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c75252099.lua
2
1568
--ローズ・バード function c75252099.initial_effect(c) --special summon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(75252099,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_BATTLE_DESTROYED) e1:SetCondition(c75252099.spcon) e1:SetTarge...
gpl-2.0
dickeyf/darkstar
scripts/globals/items/serving_of_karni_yarik.lua
18
1376
----------------------------------------- -- ID: 5588 -- Item: serving_of_karni_yarik -- Food Effect: 30Min, All Races ----------------------------------------- -- Agility 3 -- Vitality -1 -- Attack % 20 -- Attack Cap 65 ----------------------------------------- require("scripts/globals/status"); --------------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c84565800.lua
2
2719
--伝説の騎士 ヘルモス function c84565800.initial_effect(c) c:EnableReviveLimit() --cannot special summon local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetCode(EFFECT_SPSUMMON_CONDITION) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) c:RegisterEffect(e1) --remove local e2=Effect.Cr...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c81167171.lua
6
1836
--ヒーロースピリッツ function c81167171.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_END_PHASE) e1:SetCondition(c81167171.condition) e1:SetOperation(c81167171.activate) c:RegisterEffect(e1) if not c81167171.global_ch...
gpl-2.0
Turttle/darkstar
scripts/globals/items/cherry_muffin.lua
37
1344
----------------------------------------- -- ID: 5653 -- Item: Cherry Muffin -- Food Effect: 30Min, All Races ----------------------------------------- -- Intelligence 1 -- Magic % 10 -- Magic Cap 80 -- Agility -1 ----------------------------------------- require("scripts/globals/status"); --------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c100213058.lua
2
3156
--ドン・サウザンドの契約 --Contract with Don Thousand --Scripted by Eerie Code function c100213058.initial_effect(c) --activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,100213058+EFFECT_COUNT_CODE_OATH) e1:SetTarget(c10021...
gpl-2.0
Turttle/darkstar
scripts/globals/spells/dia_ii.lua
18
2295
----------------------------------------- -- Spell: Dia II -- Lowers an enemy's defense and gradually deals light elemental damage. ----------------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/magic"); -----------------------------...
gpl-3.0
Turttle/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Saliyahf.lua
34
1033
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Saliyahf -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whitegate/TextIDs"); ---------...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/momeyes.lua
6
2323
-- 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
c63977008.lua
2
1614
--ジャンク・シンクロン function c63977008.initial_effect(c) --summon success local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(63977008,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:...
gpl-2.0
Turttle/darkstar
scripts/globals/spells/bluemagic/refueling.lua
18
1269
----------------------------------------- -- Spell: Refueling -- Increases attack speed -- Spell cost: 29 MP -- Monster Type: Arcana -- Spell Type: Magical (Wind) -- Blue Magic Points: 4 -- Stat Bonus: AGI+2 -- Level: 48 -- Casting Time: 1.5 seconds -- Recast Time: 30 seconds -- Duration: 5 minutes -- -- ...
gpl-3.0
Turttle/darkstar
scripts/zones/East_Ronfaure/npcs/Rayochindot.lua
38
1028
----------------------------------- -- Area: East Ronfaure -- NPC: Rayochindot -- Type: Gate Guard -- @pos 93.159 -62.999 272.601 101 ----------------------------------- package.loaded["scripts/zones/East_Ronfaure/TextIDs"] = nil; ----------------------------------- require("scripts/zones/East_Ronfaure/TextIDs"); ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c21377582.lua
2
4947
--真竜剣皇マスターP function c21377582.initial_effect(c) --summon with s/t local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(21377582,0)) e1:SetType(EFFECT_TYPE_SINGLE) e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE) e1:SetCode(EFFECT_SUMMON_PROC) e1:SetCondition(c21377582.otcon) e1:SetOp...
gpl-2.0
dickeyf/darkstar
scripts/globals/mobskills/Dragon_Breath.lua
34
1375
--------------------------------------------- -- Dragon Breath -- -- Description: Deals Fire damage to enemies within a fan-shaped area. -- Type: Breath -- Utsusemi/Blink absorb: Ignores shadows -- Range: Unknown cone -- Notes: Used only by Fafnir, Nidhogg, Cynoprosopi, and Wyrm. Because of the high damage output...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c71415349.lua
2
1427
--ハンプティ・ダンディ function c71415349.initial_effect(c) --turn set local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(71415349,0)) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetTarget(c71415349.target) e1:SetOperation(c71415349.operation) c:RegisterE...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c45725480.lua
5
1274
--七星の宝刀 function c45725480.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_DRAW) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCountLimit(1,45725480+EFFECT_COUNT_CODE_OATH) e1:SetCost(c45725480.cost) e1:SetTarg...
gpl-2.0
Turttle/darkstar
scripts/zones/Windurst_Waters/npcs/HomePoint#1.lua
17
1266
----------------------------------- -- Area: Windurst Waters -- NPC: HomePoint#1 -- @pos -32.022 -5.000 131.741 238 ----------------------------------- package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Windurst_Waters/TextIDs"); requi...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/node_beacon_homecave_off.lua
6
1071
-- 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
c15595052.lua
2
1615
--封魔の伝承者 function c15595052.initial_effect(c) --to defense local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(15595052,0)) e1:SetType(EFFECT_TYPE_TRIGGER_F+EFFECT_TYPE_SINGLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetOperation(c15595052.ancop) c:RegisterEffect(e1) local e2=e1:Clone() e2:SetCode(EVENT...
gpl-2.0
eugeneia/snabb
lib/luajit/testsuite/test/lang/meta/arith.lua
6
2596
local function create(arith, v1, v2) local meta = { __add=function(a,b) return arith("add", a, b) end, __sub=function(a,b) return arith("sub", a, b) end, __mul=function(a,b) return arith("mul", a, b) end, __div=function(a,b) return arith("div", a, b) end, __mod=function(a,b) return arith("mod", a,...
apache-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c2924048.lua
6
1134
--借カラクリ整備蔵 function c2924048.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(c2924048.condition) e1:SetTarget(c2924048.target) e1:SetOperation(c2924048.activate) c:RegisterE...
gpl-2.0
Turttle/darkstar
scripts/zones/Apollyon/mobs/Water_Elemental.lua
112
2441
----------------------------------- -- Area: Apollyon SW -- NPC: elemental ----------------------------------- package.loaded["scripts/zones/Apollyon/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Apollyon/TextIDs"); --------------------------...
gpl-3.0
dickeyf/darkstar
scripts/zones/Kazham/npcs/Mitti_Haplihza.lua
15
1054
----------------------------------- -- Area: Kazham -- NPC: Mitti Haplihza -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Kazham/TextIDs"] = nil; require("scripts/zones/Kazham/TextIDs"); ----------------------------------- -- onTrade Action ----------------------------------- ...
gpl-3.0
Turttle/darkstar
scripts/globals/spells/bewitching_etude.lua
18
1619
----------------------------------------- -- Spell: Bewitching Etude -- Static CHR Boost, BRD 62 ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------------- -- OnSpellCast ----------------------------------------- ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c28348939.lua
6
1408
--白虎の召喚士 function c28348939.initial_effect(c) --spsummon local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(28348939,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetTarget(c28348939.sptg) e1:SetOperation(c2834893...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c56339050.lua
2
2657
--地縛神の咆哮 function c56339050.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(c56339050.target) e1:SetOperation(c56339050.operation) c:RegisterEffect(e1) -- local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(5633...
gpl-2.0
Turttle/darkstar
scripts/zones/Port_San_dOria/npcs/Albinie.lua
37
1468
----------------------------------- -- Area: Port San d'Oria -- NPC: Albinie -- Standard Merchant NPC -- Working 100% ----------------------------------- package.loaded["scripts/zones/Port_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/shop"); require("scripts/zones/P...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c30562585.lua
6
2169
--ZERO-MAX function c30562585.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetCondition(c30562585.condition) e1:SetCost(c30562585.cost...
gpl-2.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/_unused/minicrab.lua
6
3466
-- 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_title_replayintro.lua
6
1795
-- 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/effects/int_boost.lua
34
1027
----------------------------------- -- -- EFFECT_INT_BOOST -- ----------------------------------- require("scripts/globals/status"); ----------------------------------- -- onEffectGain Action ----------------------------------- function onEffectGain(target,effect) target:addMod(MOD_INT,effect:getPower()); end; ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c86238081.lua
2
4790
--覇王烈竜オッドアイズ・レイジング・ドラゴン function c86238081.initial_effect(c) --xyz summon aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_DRAGON),7,2) c:EnableReviveLimit() --pendulum summon aux.EnablePendulumAttribute(c,false) --pendulum set local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(8623808...
gpl-2.0
Turttle/darkstar
scripts/globals/spells/bluemagic/regeneration.lua
46
1483
----------------------------------------- -- Spell: Regeneration -- Gradually restores HP -- Spell cost: 36 MP -- Monster Type: Aquans -- Spell Type: Magical (Light) -- Blue Magic Points: 2 -- Stat Bonus: MND+2 -- Level: 78 -- Casting Time: 2 Seconds -- Recast Time: 60 Seconds -- Spell Duration: 30 ticks, 90 Seconds --...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c31038159.lua
7
2450
--創世竜 function c31038159.initial_effect(c) --salvage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(31038159,0)) e1:SetCategory(CATEGORY_TOHAND) e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetCost(c31038159.thcost) ...
gpl-2.0
dickeyf/darkstar
scripts/zones/Windurst_Woods/npcs/Kuzah_Hpirohpon.lua
27
1199
----------------------------------- -- Area: Windurst Woods -- NPC: Kuzah Hpirohpon -- Guild Merchant NPC: Clothcrafting Guild -- @pos -80.068 -3.25 -127.686 241 ----------------------------------- package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil; ----------------------------------- require("scripts/globa...
gpl-3.0
eggBOY91/opencore
src/scripts/lua/Lua/Stable Scripts/Azeroth/Karazhan/BOSS_Karazhan_Malchezaar.lua
30
4212
function Malchezaar_Hellfire(Unit, event, miscunit, misc) print "Malchezaar Hellfire" Unit:FullCastSpellOnTarget(43465,Unit:GetClosestPlayer()) Unit:SendChatMessage(11, 0, "BURN...") end function Malchezaar_Thrash(Unit, event, miscunit, misc) print "Malchezaar Thrash" Unit:FullCastSpell(21919) Unit:SendChatMessa...
agpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c41930553.lua
5
2810
--暗黒の瘴気 function c41930553.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetHintTiming(0,TIMING_END_PHASE) e1:SetTarget(c41930553.target1) e1:SetOperation(c41930553.operation) c:RegisterEffect(e1) --remove local e2=Effect.CreateEf...
gpl-2.0
dickeyf/darkstar
scripts/zones/The_Boyahda_Tree/npcs/HomePoint#1.lua
27
1273
----------------------------------- -- Area: The Boyahda Tree -- NPC: HomePoint#1 -- @pos 88 -15 -217 153 ----------------------------------- package.loaded["scripts/zones/The_Boyahda_Tree/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/The_Boyahda_Tree/TextIDs"); require("scripts/global...
gpl-3.0
Ablu/ValyriaTear
src/luabind/examples/glut/glut_bindings.lua
38
1543
quit = false function resize_func(w, h) local ratio = w / h print('====== resize') glMatrixMode(gl.PROJECTION) glLoadIdentity() glViewport(0,0,w,h) gluPerspective(45,ratio,1,1000) glMatrixMode(gl.MODELVIEW) glLoadIdentity() end angle = 0 angle2 = 0 previous_time = 0 function display_func() if quit the...
gpl-2.0
dickeyf/darkstar
scripts/zones/Beaucedine_Glacier_[S]/npcs/Watchful_Pixie.lua
13
1073
----------------------------------- -- Area: Beaucedine Glacier (S) -- NPC: Watchful Pixie -- Type: Quest NPC -- @zone: 136 -- @pos -56.000 -1.3 -392.000 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Beaucedine_Glacier_[S]/TextIDs"...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c5052212.lua
5
1803
--イージーチューニング function c5052212.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(c50522...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c72345736.lua
3
1740
--六武衆の結束 function c72345736.initial_effect(c) c:EnableCounterPermit(0x3) c:SetCounterLimit(0x3,2) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --add counter local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE...
gpl-2.0
Turttle/darkstar
scripts/zones/Temple_of_Uggalepih/mobs/Manipulator.lua
16
2110
---------------------------------- -- Area: Temple of Uggalipeh -- NM: Manipulator -- Notes: Paths around the 2 staircases ----------------------------------- local path = { -17.930, -8.500, -93.215, -18.553, -7.713, -91.224, -20.226, -6.250, -89.091, -21.651, -5.005, -87.401, -23.137, -3.917, ...
gpl-3.0
dickeyf/darkstar
scripts/zones/Port_Windurst/npcs/Pyo_Nzon.lua
13
2857
----------------------------------- -- Area: Port Windurst -- NPC: Pyo Nzon ----------------------------------- package.loaded["scripts/zones/Port_Windurst/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); require("scripts/globals/settings"); require("scripts/zones/Port_Windurst/T...
gpl-3.0
eggBOY91/opencore
src/scripts/lua/Lua/0Misc/0LCF_Includes/LCF_Extra.lua
18
5425
--[[ * ArcEmu MMORPG Server * Copyright (C) 2005-2007 Ascent Team <http://www.ascentemu.com/> * Copyright (C) 2008-2010 <http://www.ArcEmu.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Softwa...
agpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c72302403.lua
2
1998
--光の護封剣 function c72302403.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_POSITION) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(c72302403.target) e1:SetOperation(c72302403.activate) c:RegisterEffect(e1) --cannot attack local e2=Effect.Create...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c80637190.lua
6
1432
--スパイダー・スパイダー function c80637190.initial_effect(c) --spsummon local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(80637190,0)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e2:SetProperty(EFFECT_FLAG_CARD_TARGET) e2:SetCode(EVENT_BATTLE_DESTROYING) e2:Se...
gpl-2.0
dickeyf/darkstar
scripts/zones/Phanauet_Channel/Zone.lua
13
1433
----------------------------------- -- -- Zone: Phanauet_Channel -- ----------------------------------- package.loaded["scripts/zones/Phanauet_Channel/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Phanauet_Channel/TextIDs"); ------------------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c75286621.lua
3
1721
--召喚獣メルカバー function c75286621.initial_effect(c) --fusion material c:EnableReviveLimit() aux.AddFusionProcCodeFun(c,86120751,aux.FilterBoolFunction(Card.IsFusionAttribute,ATTRIBUTE_LIGHT),1,true,true) --negate local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(75286621,0)) e1:SetCategory(CATEGORY_NEGA...
gpl-2.0
mrbangi/trgm
bot/utils.lua
646
23489
URL = require "socket.url" http = require "socket.http" https = require "ssl.https" ltn12 = require "ltn12" serpent = require "serpent" feedparser = require "feedparser" json = (loadfile "./libs/JSON.lua")() mimetype = (loadfile "./libs/mimetype.lua")() redis = (loadfile "./libs/redis.lua")() JSON = (loadfile "./libs/...
gpl-2.0
Shayan123456/botttttt6
bot/utils.lua
646
23489
URL = require "socket.url" http = require "socket.http" https = require "ssl.https" ltn12 = require "ltn12" serpent = require "serpent" feedparser = require "feedparser" json = (loadfile "./libs/JSON.lua")() mimetype = (loadfile "./libs/mimetype.lua")() redis = (loadfile "./libs/redis.lua")() JSON = (loadfile "./libs/...
gpl-2.0
Turttle/darkstar
scripts/zones/LaLoff_Amphitheater/bcnms/ark_angels_4.lua
17
3456
----------------------------------- -- Area: LaLoff Amphitheater -- Name: Ark Angels 4 (Elvaan) ----------------------------------- package.loaded["scripts/zones/LaLoff_Amphitheater/TextIDs"] = nil; ----------------------------------- require("scripts/zones/LaLoff_Amphitheater/TextIDs"); require("scripts/globals/missi...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c20747792.lua
2
2819
--ベリー・マジシャン・ガール function c20747792.initial_effect(c) --search local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(20747792,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_TRIGGER_O+EFFECT_TYPE_SINGLE) e1:SetCode(EVENT_SUMMON_SUCCESS) e1:SetProperty(EFFECT_FLAG_DELAY) e1:Set...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c511000229.lua
2
1245
--ダーク·ダイブ·ボンバー (5D's) function c511000229.initial_effect(c) --synchro summon aux.AddSynchroProcedure(c,nil,aux.NonTuner(nil),1) --damage local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(511000229,0)) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) e1:SetCategory(CATEGORY_DAMAGE) e1:SetType(EFFECT_TYPE_I...
gpl-2.0
fgenesis/Aquaria_experimental
game_scripts/scripts/entities/collectiblenautilusprime.lua
6
2749
-- 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/Lower_Jeuno/npcs/Teigero-Bangero.lua
17
2935
----------------------------------- -- Area: Lower Jeuno -- NPC: Teigero Bangero -- Involved in Quests: Save the Clock Tower, The Lost Cardian -- @zone 245 -- @pos -58 0 -143 ----------------------------------- package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil; ----------------------------------- re...
gpl-3.0
dickeyf/darkstar
scripts/zones/Windurst_Waters_[S]/npcs/Yassi-Possi.lua
13
1165
----------------------------------- -- Area: Windurst Waters (S) -- NPC: Yassi-Possi -- Type: Item Deliverer -- @zone: 94 -- @pos 153.992 -0.001 -18.687 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = ...
gpl-3.0
longsion/OpenBird
cocos2d/external/lua/luajit/src/src/host/genminilua.lua
73
11943
---------------------------------------------------------------------------- -- Lua script to generate a customized, minified version of Lua. -- The resulting 'minilua' is used for the build process of LuaJIT. ---------------------------------------------------------------------------- -- Copyright (C) 2005-2013 Mike P...
mit
SalvationDevelopment/Salvation-Scripts-TCG
c41160595.lua
5
1309
--コーリング・マジック function c41160595.initial_effect(c) --set local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(41160595,0)) e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP) e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_F) e1:SetCode(EVENT_TO_GRAVE) e1:SetCondition(c41160595.setcon) e1:SetTarget(c41160595.set...
gpl-2.0
dickeyf/darkstar
scripts/globals/weaponskills/slug_shot.lua
11
1542
----------------------------------- -- Slug Shot -- Marksmanship weapon skill -- Skill Level: 175 -- Delivers an inparams.accurate attack that deals quintuple damage. params.accuracy varies with TP. -- Despite the lack of a STR weaponskill mod, STR is still the most potent stat for increasing this weaponskill's damage ...
gpl-3.0
dickeyf/darkstar
scripts/globals/spells/sneak.lua
27
1269
----------------------------------------- -- Spell: Sneak -- Lessens chance of being detected by sound -- Duration is random number between 30 seconds and 5 minutes ----------------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); ---------------------------------------...
gpl-3.0
fgenesis/Aquaria_experimental
game_scripts/scripts/maps/node_energypass.lua
6
1692
-- 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
gwx/tome-grayswandir-thievery
data/libs/auto-temps-0.lua
5
1697
-- 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 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful...
gpl-3.0
Turttle/darkstar
scripts/zones/Jade_Sepulcher/Zone.lua
28
1324
----------------------------------- -- -- Zone: Jade_Sepulcher (67) -- ----------------------------------- package.loaded["scripts/zones/Jade_Sepulcher/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Jade_Sepulcher/TextIDs"); ----------------...
gpl-3.0
dickeyf/darkstar
scripts/zones/Beadeaux/npcs/The_Mute.lua
13
1276
----------------------------------- -- Area: Beadeaux -- NPC: ??? -- @pos -166.230 -1 -73.685 147 ----------------------------------- package.loaded["scripts/zones/Beadeaux/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Beadeaux/TextIDs"); require("scripts/globals/quests"); require("scrip...
gpl-3.0
Turttle/darkstar
scripts/zones/Dynamis-Xarcabard/mobs/Statue_Prototype.lua
16
1244
----------------------------------- -- Area: Dynamis Xarcabard -- NPC: Statue Prototype ----------------------------------- package.loaded["scripts/zones/Dynamis-Xarcabard/TextIDs"] = nil; ----------------------------------- require("scripts/globals/status"); require("scripts/globals/dynamis"); require("scri...
gpl-3.0
dickeyf/darkstar
scripts/globals/items/cheese_sandwich_+1.lua
18
1186
----------------------------------------- -- ID: 5687 -- Item: cheese_sandwich_+1 -- Food Effect: 30Min, All Races ----------------------------------------- -- HP 10 -- Agility 1 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck -----...
gpl-3.0
Turttle/darkstar
scripts/zones/Lufaise_Meadows/mobs/Leshy.lua
29
1618
----------------------------------- -- Area: Lufaise Meadows -- MOB: Leshy ----------------------------------- function onMobRoam(mob) local Colorful_Leshy = 16875762; local Colorful_Leshy_PH = 0; local Colorful_Leshy_PH_Table = { 16875754, 16875755, 16875756, 16875757, 16875758, ...
gpl-3.0
Turttle/darkstar
scripts/zones/Mhaura/npcs/Felisa.lua
17
1188
----------------------------------- -- Area: Mhaura -- NPC: Felisa -- Admits players to the dock in Mhaura. ----------------------------------- package.loaded["scripts/zones/Mhaura/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Mhaura/TextIDs"); --------------------------------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c33550694.lua
2
2903
--フュージョン・ゲート function c33550694.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --fusion local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(33550694,0)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FU...
gpl-2.0
dickeyf/darkstar
scripts/globals/weaponskills/realmrazer.lua
11
1448
----------------------------------- -- Realmrazer -- Club weapon skill -- Skill Level: 357 -- Delivers a seven-hit attack. params.accuracy varies with TP. -- Will stack with Sneak Attack. -- Aligned with the Shadow Gorget & Soil Gorget. -- Aligned with the Shadow Belt & Soil Belt. -- Element: None -- Modifiers: MND:73~...
gpl-3.0
Turttle/darkstar
scripts/globals/items/caedarva_frog.lua
18
1400
----------------------------------------- -- ID: 5465 -- Item: Caedarva Frog -- Food Effect: 5Min, Mithra only ----------------------------------------- -- Dexterity 2 -- Agility 2 -- Mind -4 -- Evasion 5 ----------------------------------------- require("scripts/globals/status"); ------------------------------------...
gpl-3.0
nagyistoce/OpenBird
Resources/CocoStudio.lua
19
8831
require "json" require "extern" ccs = ccs or {} function ccs.sendTriggerEvent(event) local triggerObjArr = ccs.TriggerMng.getInstance():get(event) if nil == triggerObjArr then return end for i = 1, table.getn(triggerObjArr) do local triObj = triggerObjArr[i] if nil ~= tri...
mit
longsion/OpenBird
Resources/CocoStudio.lua
19
8831
require "json" require "extern" ccs = ccs or {} function ccs.sendTriggerEvent(event) local triggerObjArr = ccs.TriggerMng.getInstance():get(event) if nil == triggerObjArr then return end for i = 1, table.getn(triggerObjArr) do local triObj = triggerObjArr[i] if nil ~= tri...
mit
dickeyf/darkstar
scripts/zones/Ifrits_Cauldron/Zone.lua
13
2695
----------------------------------- -- -- Zone: Ifrits_Cauldron (205) -- ----------------------------------- package.loaded["scripts/zones/Ifrits_Cauldron/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/zone"); require("scripts/zones/Ifrits_Cauldron/Te...
gpl-3.0
dickeyf/darkstar
scripts/zones/Arrapago_Reef/npcs/qm1.lua
30
1331
----------------------------------- -- Area: Arrapago Reef -- NPC: ??? (Spawn Lil'Apkallu(ZNM T1)) -- @pos 488 -1 166 54 ----------------------------------- package.loaded["scripts/zones/Arrapago_Reef/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Arrapago_Reef/TextIDs"); require("scripts/...
gpl-3.0
Turttle/darkstar
scripts/zones/Al_Zahbi/npcs/Zazarg.lua
38
1028
----------------------------------- -- Area: Al Zahbi -- NPC: Zazarg -- Type: Stoneserpent General -- @zone: 48 -- @pos -41.675 -8 104.452 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Al_Zahbi/TextIDs"] = nil; ---------------------...
gpl-3.0
ElunaLuaEngine/ElunaMangosWotlk
dep/recastnavigation/RecastDemo/premake4.lua
82
3551
-- -- premake4 file to build RecastDemo -- http://industriousone.com/premake -- local action = _ACTION or "" local todir = "Build/" .. action solution "recastnavigation" configurations { "Debug", "Release" } location (todir) -- extra warnings, no exceptions or rtti flags { "ExtraWarnings", "FloatFast"...
gpl-2.0
Turttle/darkstar
scripts/zones/Temenos/mobs/Beli.lua
16
1188
----------------------------------- -- Area: Temenos N T -- NPC: Beli ----------------------------------- package.loaded["scripts/zones/Temenos/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Temenos/TextIDs"); --------------------------------...
gpl-3.0
dickeyf/darkstar
scripts/zones/Northern_San_dOria/npcs/Jeanvirgaud.lua
12
1937
----------------------------------- -- 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
dickeyf/darkstar
scripts/zones/Inner_Horutoto_Ruins/npcs/Treasure_Chest.lua
13
2986
----------------------------------- -- Area: Horutoto Ruins -- NPC: Treasure Chest -- @zone 192 ----------------------------------- package.loaded["scripts/zones/Inner_Horutoto_Ruins/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/treasure"); require(...
gpl-3.0
Turttle/darkstar
scripts/globals/mobskills/Prishe_Item_2.lua
53
1486
--------------------------------------------- -- Prishe Item 2 --------------------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/monstertpmoves"); require("scripts/zones/Empyreal_Paradox/TextIDs"); --------------------------------------------...
gpl-3.0
Turttle/darkstar
scripts/zones/AlTaieu/mobs/Jailer_of_Love.lua
23
5580
----------------------------------- -- Area: Al'Taieu -- NM: Jailer of Love ----------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------- -- onMobSpawn Action ----------------------------------- function onMobSpawn(mob) end; ----------...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c65446452.lua
6
2406
--水舞台装置 function c65446452.initial_effect(c) --Activate local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e1) --atk & def local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetRange(LOCATION_SZONE) e2:...
gpl-2.0
SalvationDevelopment/Salvation-Scripts-TCG
c63571750.lua
2
1774
--王家の財宝 function c63571750.initial_effect(c) Duel.EnableGlobalFlag(GLOBALFLAG_DECK_REVERSE_CHECK) --Activate local e1=Effect.CreateEffect(c) e1:SetCategory(CATEGORY_TODECK) e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetCode(EVENT_FREE_CHAIN) e1:SetTarget(c63571750.target) e1:SetOperation(c63571750.activate) c:Registe...
gpl-2.0
Turttle/darkstar
scripts/zones/Metalworks/npcs/Alois.lua
17
2128
----------------------------------- -- Area: Metalworks -- NPC: Alois -- Involved in Missions: Wading Beasts -- @pos 96 -20 14 237 ----------------------------------- package.loaded["scripts/zones/Metalworks/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("s...
gpl-3.0
Turttle/darkstar
scripts/globals/items/icefish.lua
18
1317
----------------------------------------- -- ID: 4470 -- Item: icefish -- Food Effect: 5Min, Mithra only ----------------------------------------- -- Dexterity 3 -- Mind -5 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck...
gpl-3.0
dickeyf/darkstar
scripts/zones/Port_Windurst/TextIDs.lua
8
6323
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 10962; -- Come back after sorting your inventory. FULL_INVENTORY_AFTER_TRADE = 10966; -- Try trading again after sorting your inventory. ITEM_OBTAINED = 10967; -- Obtained: ...
gpl-3.0
SalvationDevelopment/Salvation-Scripts-TCG
c511000016.lua
2
2104
--Gate Defender (Script by RaiZZZ19) function c511000016.initial_effect(c) --negate 1 attack local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(511000016,0)) e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e1:SetCode(EVENT_BE_BATTLE_TARGET) e1:SetRange(LOCATION_MZONE) e1:SetCountLimit(1) e1:SetC...
gpl-2.0
Turttle/darkstar
scripts/zones/Qufim_Island/npcs/qm3.lua
17
4407
----------------------------------- -- Area: Qufim Island -- NPC: ??? (qm3) -- Mission: ACP - The Echo Awakens -- @zone 126 -- @pos -120.342 -19.471 306.661 ----------------------------------- package.loaded["scripts/zones/Qufim_Island/TextIDs"] = nil; ------------------------------------- require("scripts/z...
gpl-3.0
Turttle/darkstar
scripts/globals/items/dish_of_spaghetti_peperoncino_+1.lua
35
1403
----------------------------------------- -- ID: 5197 -- Item: dish_of_spaghetti_peperoncino_+1 -- Food Effect: 60Min, All Races ----------------------------------------- -- Health % 30 -- Health Cap 75 -- Vitality 2 -- Store TP 6 ----------------------------------------- require("scripts/globals/status"); ...
gpl-3.0
dickeyf/darkstar
scripts/globals/items/loaf_of_homemade_bread.lua
18
1107
----------------------------------------- -- ID: 5228 -- Item: loaf_of_homemade_bread -- Food Effect: 30Min, All Races ----------------------------------------- -- Agility 1 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck ----------...
gpl-3.0