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 |
|---|---|---|---|---|---|
waterlgndx/darkstar | scripts/zones/Balgas_Dais/bcnms/charming_trio.lua | 2 | 1785 | -----------------------------------
-- Area: Balgas_Dais
-- Name: Charming Trio
-----------------------------------
package.loaded["scripts/zones/Balgas_Dais/TextIDs"] = nil;
-------------------------------------
require("scripts/globals/titles");
require("scripts/globals/quests");
require("scripts/zones/Balgas_Dais/T... | gpl-3.0 |
waterlgndx/darkstar | scripts/zones/Western_Adoulin/npcs/Vaulois.lua | 7 | 1575 | -----------------------------------
-- Area: Western Adoulin
-- NPC: Vaulois
-- Type: Standard NPC and Quest Giver
-- Starts, Involved with, and Finishes Quest: 'Transporting'
-- @zone 256
-- !pos 20 0 85 256
-----------------------------------
package.loaded["scripts/zones/Western_Adoulin/TextIDs"] = nil;
--------... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c10971006.lua | 1 | 3448 | --玄灵龙 炽炎
function c10971006.initial_effect(c)
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(10971006,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,10971006)
e1:SetCost(c10971006.cost)
e1:SetTarget(c10971006.sptg)
e1:... | gpl-3.0 |
NezzKryptic/AdvDupe2 | lua/advdupe2/cl_file.lua | 1 | 3376 | local function AdvDupe2_ReceiveFile(len, ply)
local Autosave = net.ReadUInt(8) == 1
net.ReadStream(nil, function(data)
AdvDupe2.RemoveProgressBar()
if(!data)then
AdvDupe2.Notify("File was not saved!",NOTIFY_ERROR,5)
return
end
local path = ""
if(AutoSave)then
if(LocalPlayer():GetInfo("advdupe2_aut... | apache-2.0 |
davidedmonds/darkstar | scripts/globals/weaponskills/weapon_break.lua | 18 | 1792 | -----------------------------------
-- Weapon Break
-- Great Axe weapon skill
-- Skill level: 175
-- Lowers enemy's attack. Duration of effect varies with TP.
-- Lowers attack by as much as 25% if unresisted.
-- Strong against: Manticores, Orcs, Rabbits, Raptors, Sheep.
-- Immune: Crabs, Crawlers, Funguars, Quad... | gpl-3.0 |
kidaa/darkstar | scripts/zones/RuLude_Gardens/npcs/Nomad_Moogle.lua | 17 | 1436 | -----------------------------------
-- Area: Ru'Lude Gardens
-- NPC: Nomad Moogle
-- Type: Adventurer's Assistant
-- @pos 10.012 1.453 121.883 243
-----------------------------------
package.loaded["scripts/zones/RuLude_Gardens/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/setti... | gpl-3.0 |
will4wachter/Project1 | scripts/zones/Lufaise_Meadows/mobs/Colorful_Leshy.lua | 4 | 1646 | -----------------------------------
-- Area: Lufaise Meadows
-- MOB: Colorful Leshy
-----------------------------------
-----------------------------------
function onMobSpawn(mob)
local Defoliate_Leshy = 16875763;
GetMobByID(Defoliate_Leshy):setExtraVar(os.time() + math.random((43200), (86400)));
en... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Spire_of_Dem/npcs/_0j1.lua | 36 | 1313 | -----------------------------------
-- Area: Spire_of_Dem
-- NPC: web of regret
-----------------------------------
package.loaded["scripts/zones/Spire_of_Dem/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/bcnm");
require("scripts/zones/Spire_of_Dem/TextIDs");
---------------... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Spire_of_Dem/npcs/_0j2.lua | 36 | 1313 | -----------------------------------
-- Area: Spire_of_Dem
-- NPC: web of regret
-----------------------------------
package.loaded["scripts/zones/Spire_of_Dem/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/bcnm");
require("scripts/zones/Spire_of_Dem/TextIDs");
---------------... | gpl-3.0 |
kidaa/darkstar | scripts/globals/spells/regen.lua | 13 | 1583 | -----------------------------------------
-- Spell: Regen
-- Gradually restores target's HP.
-----------------------------------------
-- Cleric's Briault enhances the effect
-- Scale down duration based on level
-- Composure increases duration 3x
-----------------------------------------
require("scripts/glo... | gpl-3.0 |
tbastos/lift | lift/os.lua | 1 | 7804 | ------------------------------------------------------------------------------
-- Child process management and operating system utility functions
------------------------------------------------------------------------------
local assert, getmetatable, setmetatable = assert, getmetatable, setmetatable
local co_yield =... | mit |
kidaa/darkstar | scripts/zones/Throne_Room/npcs/_4l4.lua | 36 | 1164 | -----------------------------------
-- Area: Throne Room
-- NPC: Ore Door
-------------------------------------
require("scripts/globals/bcnm");
-----------------------------------
-- onTrade Action
-----------------------------------
function onTrade(player,npc,trade)
if(TradeBCNM(player,player:get... | gpl-3.0 |
kidaa/darkstar | scripts/globals/items/bunch_of_pamamas.lua | 36 | 2212 | -----------------------------------------
-- ID: 4468
-- Item: Bunch of Pamamas
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Strength -3
-- Intelligence 1
-- Additional Effect with Opo-Opo Crown
-- HP 50
-- MP 50
-- CHR 14
-- Additional Effect with Kinkobo or
-- Primate Staff
-- DELAY ... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c10173012.lua | 1 | 4092 | --雷龙剑
function c10173012.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(c10173012.target)
e1:SetOperation(c10173012.operation)
c:RegisterEffect(e1)
-... | gpl-3.0 |
ozkriff/misery-lua | miscTest.lua | 1 | 2220 | -- See LICENSE file for copyright and license details
local Misc = require('misc')
local Assert = require('assert')
local math = require('math')
local suite = Misc.newModule()
suite.testDiff = function() end -- TODO: implement
-- TODO: add MORE tests
suite.testSplit = function()
local input =
's1\n' ..
... | mit |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c18740410.lua | 1 | 1176 | --狂猎之夜
function c18740410.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOGRAVE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCountLimit(1,18740410+EFFECT_COUNT_CODE_OATH)
e1:SetTarget(c18740410.target)
e1:SetOperation(c18740410.activate)
c:Register... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c18700350.lua | 1 | 1857 | --少女的祈祷
function c18700350.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:SetLabel(0)
e1:SetCost(c18700350.cost)
e1:SetTarget(c18700350.target)
e1:SetOperation(c18700350.activate)
c:RegisterE... | gpl-3.0 |
kiarash14/TSbumper | plugins/banhammer.lua | 1 | 11408 |
local function pre_process(msg)
-- SERVICE MESSAGE
if msg.action and msg.action.type then
local action = msg.action.type
-- Check if banned user joins chat by link
if action == 'chat_add_user_link' then
local user_id = msg.from.id
print('Checking invited user '..user_id)
local banned ... | gpl-2.0 |
davidedmonds/darkstar | scripts/zones/Abyssea-Attohwa/Zone.lua | 32 | 1548 | -----------------------------------
--
-- Zone: Abyssea - Attohwa
--
-----------------------------------
package.loaded["scripts/zones/Abyssea-Attohwa/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/quests");
require("scripts/zones/Abyssea-... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Abyssea-Attohwa/Zone.lua | 32 | 1548 | -----------------------------------
--
-- Zone: Abyssea - Attohwa
--
-----------------------------------
package.loaded["scripts/zones/Abyssea-Attohwa/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/quests");
require("scripts/zones/Abyssea-... | gpl-3.0 |
Lh4cKg/sl4a | lua/json4lua/json/rpc.lua | 21 | 4386 | -----------------------------------------------------------------------------
-- JSONRPC4Lua: JSON RPC client calls over http for the Lua language.
-- json.rpc Module.
-- Author: Craig Mason-Jones
-- Homepage: http://json.luaforge.net/
-- Version: 0.9.10
-- This module is released under the The GNU General Publi... | apache-2.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c23300006.lua | 1 | 2510 | --历·吸血鬼
function c23300006.initial_effect(c)
--Set
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_MONSTER_SSET)
e1:SetValue(TYPE_SPELL)
c:RegisterEffect(e1)
--tohand
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_TOHAND)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Yuhtunga_Jungle/Zone.lua | 25 | 4227 | -----------------------------------
--
-- Zone: Yuhtunga_Jungle (123)
--
-----------------------------------
package.loaded["scripts/zones/Yuhtunga_Jungle/TextIDs"] = nil;
package.loaded["scripts/globals/chocobo_digging"] = nil;
-----------------------------------
require("scripts/zones/Yuhtunga_Jungle/TextID... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Yuhtunga_Jungle/Zone.lua | 25 | 4227 | -----------------------------------
--
-- Zone: Yuhtunga_Jungle (123)
--
-----------------------------------
package.loaded["scripts/zones/Yuhtunga_Jungle/TextIDs"] = nil;
package.loaded["scripts/globals/chocobo_digging"] = nil;
-----------------------------------
require("scripts/zones/Yuhtunga_Jungle/TextID... | gpl-3.0 |
will4wachter/Project1 | scripts/zones/The_Garden_of_RuHmet/npcs/_0z0.lua | 4 | 1880 | -----------------------------------
-- Area: The_Garden_of_RuHmet
-- NPC: _0z0
-----------------------------------
package.loaded["scripts/zones/The_Garden_of_RuHmet/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/zones/The_Garden_of_RuHmet/TextIDs");... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c18706067.lua | 1 | 1933 | --无垢识 空之境界
function c18706067.initial_effect(c)
local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(97997309,2))
e3:SetCategory(CATEGORY_REMOVE)
e3:SetType(EFFECT_TYPE_ACTIVATE)
e3:SetCode(EVENT_FREE_CHAIN)
e3:SetHintTiming(0,0x1e0)
e3:SetCountLimit(1,18706067)
e3:SetCondition(c18706067.condition)
e... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/abilities/pets/diamond_dust.lua | 2 | 1130 | ---------------------------------------------------
-- Diamond Dust
---------------------------------------------------
require("scripts/globals/settings");
require("scripts/globals/status");
require("scripts/globals/monstertpmoves");
require("scripts/globals/magic");
--------------------------------------------------... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Windurst_Waters/npcs/Honoi-Gomoi.lua | 19 | 4225 | -----------------------------------
-- Area: Windurst Waters
-- NPC: Honoi-Gumoi
-- Involved In Quest: Crying Over Onions, Hat in Hand
-- @zone = 238
-- @pos = -195 -11 -120
-----------------------------------
package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil;
-----------------------------------
... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/PsoXja/npcs/_09f.lua | 17 | 1614 | -----------------------------------
-- Area: Pso'Xja
-- NPC: _09f (Stone Gate)
-- Notes: Spawns Gargoyle when triggered
-- @pos -330.000 14.074 -261.600 9
-----------------------------------
package.loaded["scripts/zones/PsoXja/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Pso... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Selbina/npcs/Graegham.lua | 7 | 1182 | -----------------------------------
-- Area: Selbina
-- NPC: Graegham
-- Guild Merchant NPC: Fishing Guild
-- @pos -12.423 -7.287 8.665 248
-----------------------------------
package.loaded["scripts/zones/Selbina/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
req... | gpl-3.0 |
davidedmonds/darkstar | scripts/globals/abilities/pets/aero_iv.lua | 20 | 1157 | ---------------------------------------------------
-- Aero 4
---------------------------------------------------
require("scripts/globals/settings");
require("scripts/globals/status");
require("scripts/globals/monstertpmoves");
require("scripts/globals/magic");
----------------------------------------------... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c21520072.lua | 1 | 2541 | --玲珑阵图-共振
function c21520072.initial_effect(c)
--active
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_ACTIVATE)
e0:SetCode(EVENT_FREE_CHAIN)
e0:SetCondition(c21520072.actcon)
c:RegisterEffect(e0)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(21520072,0))
e1:SetCatego... | gpl-3.0 |
soscpd/bee | root/tests/zguide/examples/Lua/mdcliapi2.lua | 2 | 2870 | --
-- mdcliapi2.lua - Majordomo Protocol Client API (async version)
--
-- Author: Robert G. Jakabosky <bobby@sharedrealm.com>
--
local setmetatable = setmetatable
local mdp = require"mdp"
local zmq = require"zmq"
local zpoller = require"zmq.poller"
local zmsg = require"zmsg"
require"zhelpers"
local s_version_assert... | mit |
fms6/Dark-Flappy-Bird | lib/anim8/spec/anim8/animation_spec.lua | 2 | 8915 | require 'spec.love-mocks'
local anim8 = require 'anim8'
local newAnimation = anim8.newAnimation
describe("anim8", function()
describe("newAnimation", function()
it("Throws an error if durations is not a positive number or a table", function()
assert.error(function() newAnimation({}, 'foo') end)
... | mit |
davidedmonds/darkstar | scripts/zones/Gusgen_Mines/npcs/Degga.lua | 34 | 1186 | -----------------------------------
-- Area: Gusgen Mines
-- NPC: Degga
-- Type: Standard Info NPC
-- @pos 40 -68 -259
-----------------------------------
package.loaded["scripts/zones/Gusgen_Mines/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/titles");
require("scripts/globa... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/abilities/curing_waltz_iv.lua | 2 | 2489 | -----------------------------------
-- Ability: Curing Waltz IV
-- Heals HP to target player.
-- Obtained: Dancer Level 70
-- TP Required: 65%
-- Recast Time: 00:17
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/status");
require("scripts/globals/msg");
---------------... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c66666629.lua | 1 | 3686 | --黑之月的后继者-音色
function c66666629.initial_effect(c)
c:SetUniqueOnField(1,0,66666629)
aux.AddXyzProcedure(c,aux.FilterBoolFunction(Card.IsRace,RACE_SPELLCASTER),6,2,c66666629.ovfilter,aux.Stringid(66666629,0),2,c66666629.xyzop)
--
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_F... | gpl-3.0 |
davidedmonds/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 |
will4wachter/Project1 | scripts/zones/Port_Jeuno/npcs/Gatita.lua | 38 | 1027 | -----------------------------------
-- Area: Port Jeuno
-- NPC: Gatita
-- Type: Standard NPC
-- @zone: 246
-- @pos -60.207 7.002 -59.143
--
-- Auto-Script: Requires Verification (Verfied by Brawndo)
-----------------------------------
package.loaded["scripts/zones/Port_Jeuno/TextIDs"] = nil;
----------------------... | gpl-3.0 |
waterlgndx/darkstar | scripts/zones/Port_Jeuno/npcs/Horst.lua | 2 | 2964 | -----------------------------------
-- Area: Port Jeuno
-- NPC: Horst
-- Type: Abyssea Warp NPC
-- !pos -54.379 0.001 -10.061 246
-----------------------------------
package.loaded["scripts/zones/Port_Jeuno/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Port_Jeuno/TextIDs");
--------------... | gpl-3.0 |
waterlgndx/darkstar | scripts/zones/Upper_Jeuno/npcs/Brutus.lua | 2 | 8056 | -----------------------------------
-- Area: Upper Jeuno
-- NPC: Brutus
-- Starts Quest: Chocobo's Wounds, Save My Son, Path of the Beastmaster, Wings of gold, Scattered into Shadow, Chocobo on the Loose!
-- !pos -55 8 95 244
-----------------------------------
package.loaded["scripts/zones/Upper_Jeuno/TextIDs"] = nil... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Northern_San_dOria/npcs/Commojourt.lua | 17 | 1525 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Commojourt
-- Standard Info NPC
-----------------------------------
package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/ques... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Giddeus/npcs/Treasure_Chest.lua | 12 | 2757 | -----------------------------------
-- Area: Giddeus
-- NPC: Treasure Chest
--
-- @pos -158.563 0.999 -226.058 145
-----------------------------------
package.loaded["scripts/zones/Giddeus/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/key... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/spells/mages_ballad_ii.lua | 2 | 1178 | -----------------------------------------
-- Spell: Mage's Ballad II
-- Gradually restores target's MP.
-----------------------------------------
require("scripts/globals/status");
require("scripts/globals/msg");
-----------------------------------------
function onMagicCastingCheck(caster,target,spell)
return 0;
... | gpl-3.0 |
lhog/Zero-K | LuaRules/Gadgets/unit_capture.lua | 6 | 26113 | --------------------------------------------------------------------------------
--------------------------------------------------------------------------------
function gadget:GetInfo()
return {
name = "Capture",
desc = "Handles Yuri Style Capture System",
author = "Google Frog",
date = "3... | gpl-2.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c29200113.lua | 1 | 6306 | --凋叶棕-万花筒
function c29200113.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:SetTarget(c29200113.target)
e1:SetOperation(c29200113... | gpl-3.0 |
ryanli/vlc | share/lua/modules/sandbox.lua | 96 | 4375 | --[==========================================================================[
sandbox.lua: Lua sandboxing facilities
--[==========================================================================[
Copyright (C) 2007 the VideoLAN team
$Id$
Authors: Antoine Cellerier <dionoea at videolan dot org>
This program is f... | gpl-2.0 |
davidedmonds/darkstar | scripts/zones/Apollyon/mobs/Na_Qba_Chirurgeon.lua | 16 | 2315 | -----------------------------------
-- Area: Apollyon CS
-- NPC: Na_Qba_Chirurgeon
-----------------------------------
package.loaded["scripts/zones/Apollyon/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/limbus");
require("scripts/zones/Apollyon/TextIDs");
------------------... | gpl-3.0 |
will4wachter/Project1 | scripts/zones/Lower_Jeuno/npcs/Yoskolo.lua | 37 | 1688 | -----------------------------------
-- Area: Lower Jeuno
-- NPC: Yoskolo
-- Standard Merchant NPC
-----------------------------------
require("scripts/globals/shop");
package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil;
require("scripts/zones/Lower_Jeuno/TextIDs");
-----------------------------------
... | gpl-3.0 |
will4wachter/Project1 | scripts/zones/La_Theine_Plateau/npcs/Shattered_Telepoint.lua | 9 | 1770 | -----------------------------------
-- Area: La_Theine Plateau
-- NPC: Shattered Telepoint
-- @pos 334 19 -60 102
-----------------------------------
package.loaded["scripts/zones/La_Theine_Plateau/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/missions");
require("scripts/zone... | gpl-3.0 |
will4wachter/Project1 | scripts/globals/weaponskills/one_inch_punch.lua | 6 | 1435 | -----------------------------------
-- One Inch Punch
-- Hand-to-Hand weapon skill
-- Skill level: 75
-- Delivers an attack that ignores target's defense. Amount ignored varies with TP.
-- Will stack with Sneak Attack.
-- Aligned with the Shadow Gorget.
-- Aligned with the Shadow Belt.
-- Element: None ... | gpl-3.0 |
will4wachter/Project1 | scripts/zones/Full_Moon_Fountain/Zone.lua | 2 | 1591 | -----------------------------------
--
-- Zone: Full_Moon_Fountain (170)
--
-----------------------------------
package.loaded["scripts/zones/Full_Moon_Fountain/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Full_Moon_Fountain/TextIDs");
require("scripts/globals/settings");
requi... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Sealions_Den/npcs/Airship_Door.lua | 21 | 1823 | -----------------------------------
-- Area:
-- NPC: Airship_Door
-----------------------------------
package.loaded["scripts/zones/Sealions_Den/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/bcnm");
require("scripts/globals/missions");
require("scripts/zones/Sealions_Den/TextIDs");
... | gpl-3.0 |
will4wachter/Project1 | scripts/globals/weaponskills/mystic_boon.lua | 4 | 4517 | -----------------------------------
-- Mystic Boon
-- Club weapon skill
-- Skill level: N/A
-- Converts damage dealt to own MP. Damage varies with TP. Yagrush: Aftermath effect varies with TP.
-- Available only after completing the Unlocking a Myth (White Mage) quest.
-- Damage is significantly affected by ... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/items/m&p_cracker.lua | 2 | 1057 | -----------------------------------------
-- ID: 5640
-- Item: M&P Cracker
-- Food Effect: 3Min, All Races
-----------------------------------------
-- Vitality 5
-- Mind -5
-- Defense % 25
-- Attack Cap 154
-----------------------------------------
require("scripts/globals/status");
-----------------------------------... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c19300003.lua | 1 | 2082 | --镜现诗·大上海
function c19300003.initial_effect(c)
c:SetUniqueOnField(1,0,19300003)
--salvage
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e1:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_CHAIN_UNIQUE)
e1:SetCode(EVENT_SUMMON_SUCCESS)
e1:S... | gpl-3.0 |
will4wachter/Project1 | 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 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c80101008.lua | 1 | 5319 | --名刀-今剑
function c80101008.initial_effect(c)
c:SetUniqueOnField(1,0,80101008)
--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(c80101008.target)
e1:SetOperation(c80101008.... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Windurst_Walls/npcs/HomePoint#2.lua | 12 | 1254 | -----------------------------------
-- Area: Windurst Walls
-- NPC: HomePoint#2
-- @pos -212 0.001 -99 239
-----------------------------------
package.loaded["scripts/zones/Windurst_Walls/TextIDs"] = nil;
require("scripts/globals/settings");
require("scripts/zones/Windurst_Walls/TextIDs");
require("scripts... | gpl-3.0 |
asasasasasasas11/uzzbot | 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 |
will4wachter/Project1 | scripts/zones/Windurst_Walls/npcs/_6n8.lua | 19 | 1308 | -----------------------------------
-- Area: Windurst Walls
-- Door: Priming Gate
-- Involved in quest: Toraimarai Turmoil
-----------------------------------
require("scripts/globals/quests");
require("scripts/globals/settings");
require("scripts/zones/Windurst_Walls/TextIDs");
-----------------------------... | gpl-3.0 |
will4wachter/Project1 | scripts/globals/items/bunch_of_gysahl_greens.lua | 18 | 1506 | -----------------------------------------
-- ID: 4545
-- Item: Bunch of Gysahl Greens
-- Food Effect: 5Min, All Races
-----------------------------------------
-- Agility +3
-- Vitality -5
-- Additional Effect with Chocobo Shirt
-- Agility +10
-----------------------------------------
require("scripts/globals/status")... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/mobskills/pleiades_ray.lua | 2 | 1789 | ---------------------------------------------
-- Pleiades Ray
--
-- Description: Fires a magical ray at nearby targets. Additional effects: Paralysis + Blind + Poison + Plague + Bind + Silence + Slow
-- Type: Magical
-- Utsusemi/Blink absorb: Wipes shadows
-- Range: Unknown
-- Notes: Only used by Gurfurlur the Me... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c20325003.lua | 1 | 4764 | --穴居者 蛇魔
function c20325003.initial_effect(c)
--copy trap
local e5=Effect.CreateEffect(c)
e5:SetDescription(aux.Stringid(20325003,0))
e5:SetType(EFFECT_TYPE_QUICK_O)
e5:SetRange(LOCATION_HAND)
e5:SetCode(EVENT_FREE_CHAIN)
e5:SetHintTiming(0x3c0)
e5:SetCountLimit(1)
e5:SetCondition(c20325003.condition)
e5:SetC... | gpl-3.0 |
waterlgndx/darkstar | scripts/zones/QuBia_Arena/mobs/Maat.lua | 6 | 1028 | -----------------------------------
-- Area: Qu'Bia Arena
-- MOB: Maat
-- Genkai 5 Fight
-----------------------------------
package.loaded["scripts/zones/QuBia_Arena/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/QuBia_Arena/TextIDs");
-----------------------------------
function onMobSp... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Windurst_Walls/npcs/Scavnix.lua | 17 | 1226 | -----------------------------------
-- Area: Windurst Walls
-- NPC: Scavnix
-- Standard merchant, though he acts like a guild merchant
-- @pos 17.731 0.106 239.626 239
-----------------------------------
package.loaded["scripts/zones/Windurst_Walls/TextIDs"] = nil;
-----------------------------------
require(... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Norg/npcs/Edal-Tahdal.lua | 17 | 4294 | -----------------------------------
-- Area: Norg
-- NPC: Edal-Tahdal
-- Starts and Finishes Quest: Trial by Water
-- @pos -13 1 -20 252
-----------------------------------
package.loaded["scripts/zones/Norg/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("s... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/The_Eldieme_Necropolis/npcs/_5fj.lua | 34 | 1109 | -----------------------------------
-- Area: The Eldieme Necropolis
-- NPC: Leviathan's Gate
-- @pos 88 -34 100 195
-----------------------------------
package.loaded["scripts/zones/The_Eldieme_Necropolis/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/The_Eldieme_Necropolis/TextID... | gpl-3.0 |
kidaa/darkstar | scripts/globals/items/flame_sword.lua | 16 | 1029 | -----------------------------------------
-- ID: 16621
-- Item: Flame Sword
-- Additional Effect: Fire Damage
-----------------------------------------
require("scripts/globals/status");
require("scripts/globals/magic");
-----------------------------------
-- onAdditionalEffect Action
--------------------------------... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Chamber_of_Oracles/npcs/Pedestal_of_Lightning.lua | 17 | 2294 | -----------------------------------
-- Area: Chamber of Oracles
-- NPC: Pedestal of Lightning
-- Involved in Zilart Mission 7
-- @pos 199 -2 36 168
-------------------------------------
package.loaded["scripts/zones/Chamber_of_Oracles/TextIDs"] = nil;
-------------------------------------
require("scripts/gl... | gpl-3.0 |
will4wachter/Project1 | scripts/globals/weaponskills/armor_break.lua | 6 | 1635 | -----------------------------------
-- Armor Break
-- Great Axe weapon skill
-- Skill level: 100
-- Lowers enemy's defense. Duration of effect varies with TP.
-- Lowers defense by as much as 25% if unresisted.
-- Strong against: Antica, Bats, Cockatrice, Dhalmel, Lizards, Mandragora, Worms.
-- Immune: Ahr... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Kazham/npcs/Kocho_Phunakcham.lua | 15 | 1103 | -----------------------------------
-- Area: Kazham
-- NPC: Kocho Phunakcham
-- Standard Info NPC
-----------------------------------
package.loaded["scripts/zones/Kazham/TextIDs"] = nil;
require("scripts/zones/Kazham/TextIDs");
-----------------------------------
-- onTrade Action
------------------------... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/spells/bluemagic/sound_blast.lua | 2 | 1333 | -----------------------------------------
-- Spell: Sound Blast
-- Lowers Intelligence of enemies within range.
-- Spell cost: 25 MP
-- Monster Type: Birds
-- Spell Type: Magical (Fire)
-- Blue Magic Points: 1
-- Stat Bonus: None
-- Level: 32
-- Casting Time: 4 seconds
-- Recast Time: 30 seconds
-- Magic Bursts on: Liq... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c60150625.lua | 1 | 3122 | --天夜 瞬斩
function c60150625.initial_effect(c)
c:SetUniqueOnField(1,0,60150625)
--fusion material
c:EnableReviveLimit()
aux.AddFusionProcFun2(c,c60150625.ffilter,aux.FilterBoolFunction(c60150625.ffilter2),false)
--spsummon condition
local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetProperty(EFF... | gpl-3.0 |
davidedmonds/darkstar | scripts/globals/mobskills/TP_Drainkiss.lua | 13 | 1167 | ---------------------------------------------------
-- Drainkiss
-- Deals dark damage to a single target. Additional effect: TP Drain
-- Type: Magical
-- Utsusemi/Blink absorb: 1 shadow
-- Range: Melee
---------------------------------------------------
require("scripts/globals/settings");
require("scripts/globals/sta... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Hall_of_Transference/npcs/_0e4.lua | 43 | 1699 | -----------------------------------
-- Area: Hall of Transference
-- NPC: Large Apparatus (Right) - Holla
-- @pos -242.301 -1.849 269.867 14
-----------------------------------
package.loaded["scripts/zones/Hall_of_Transference/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Hall_of_Transf... | gpl-3.0 |
waterlgndx/darkstar | scripts/zones/Jugner_Forest_[S]/mobs/Decrepit_Gnole.lua | 7 | 1460 | -----------------------------------
-- Area: Jugner Forest (S)
-- NPC: Decrepit Gnole
-----------------------------------
function onMobSpawn(mob)
mob:setLocalVar("transformTime", os.time())
end;
function onMobRoam(mob)
local changeTime = mob:getLocalVar("transformTime");
local roamChance = math.random(1... | gpl-3.0 |
lhog/Zero-K | scripts/gunshipheavyskirm.lua | 8 | 4360 | include 'constants.lua'
local base, body, rfjet, lfjet, rffan, lffan, rgun, rbarrel, rflare1, rflare2, lgun, lbarrel, lflare1, lflare2, eye, rthruster, rrjet, rrfanbase, rrfan, lthruster, lrjet, lrfanbase, lrfan = piece('base', 'body', 'rfjet', 'lfjet', 'rffan', 'lffan', 'rgun', 'rbarrel', 'rflare1', 'rflare2', 'lgun'... | gpl-2.0 |
will4wachter/Project1 | scripts/zones/Apollyon/mobs/Dark_Elemental.lua | 17 | 2413 | -----------------------------------
-- Area: Apollyon SW
-- NPC: elemental
-----------------------------------
package.loaded["scripts/zones/Apollyon/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/limbus");
require("scripts/zones/Apollyon/TextIDs");
--------------------------... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Apollyon/mobs/Dark_Elemental.lua | 17 | 2413 | -----------------------------------
-- Area: Apollyon SW
-- NPC: elemental
-----------------------------------
package.loaded["scripts/zones/Apollyon/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/limbus");
require("scripts/zones/Apollyon/TextIDs");
--------------------------... | gpl-3.0 |
waterlgndx/darkstar | scripts/globals/spells/curse.lua | 2 | 1156 | -----------------------------------------
-- Spell: Curse
-----------------------------------------
require("scripts/globals/status");
require("scripts/globals/magic");
require("scripts/globals/msg");
-----------------------------------------
function onMagicCastingCheck(caster,target,spell)
return 0;
end;
functi... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Northern_San_dOria/npcs/Mevaloud.lua | 36 | 1427 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Mevaloud
-- Standard Info NPC
-----------------------------------
package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/quests... | gpl-3.0 |
idontalwaysnotlie/NeverEndingTD | game/dota_addons/NETD/scripts/vscripts/buildings/research.lua | 7 | 1806 | --[[
Adds the search to the player research list
]]
function ResearchComplete( event )
local caster = event.caster
local player = caster:GetPlayerOwner()
local ability = event.ability
local research_name = ability:GetAbilityName()
-- It shouldn't be possible to research the same upgrade more than once.
player.u... | gpl-2.0 |
iGhibli/FlyingGame | FlyingGame/src/cocos/network/DeprecatedNetworkFunc.lua | 39 | 1074 | --tip
local function deprecatedTip(old_name,new_name)
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
end
--functions of WebSocket will be deprecated begin
local targetPlatform = CCApplication:getInstance():getTargetPlatform()
if (kTargetIphone == targetPlatf... | gpl-3.0 |
Abollfazl2/KINGDOMbot | plugins/owners.lua | 284 | 12473 |
local function lock_group_namemod(msg, data, target)
local group_name_set = data[tostring(target)]['settings']['set_name']
local group_name_lock = data[tostring(target)]['settings']['lock_name']
if group_name_lock == 'yes' then
return 'Group name is already locked'
else
data[tostring(target)]['setting... | gpl-2.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c29201041.lua | 1 | 9405 | --镜世录 正体不明
function c29201041.initial_effect(c)
--summon with 3 tribute
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(29201041,0))
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SUMMON_PROC)
e1:SetCondition(c29201041.ttcon)
e1:... | gpl-3.0 |
waterlgndx/darkstar | scripts/zones/Cloister_of_Gales/bcnms/carbuncle_debacle.lua | 2 | 1600 | -----------------------------------
-- Area: Cloister of Gales
-- BCNM: Carbuncle Debacle
-----------------------------------
package.loaded["scripts/zones/Cloister_of_Gales/TextIDs"] = nil;
-------------------------------------
require("scripts/zones/Cloister_of_Gales/TextIDs");
require("scripts/globals/settings");
r... | gpl-3.0 |
kidaa/darkstar | scripts/globals/items/pumpkin_cake.lua | 36 | 1213 | -----------------------------------------
-- ID: 5631
-- Item: Pumpkin Cake
-- Food Effect: 3 Hrs, All Races
-----------------------------------------
-- TODO: Group Effect
-- HP Recovered while healing +2
-- MP Recovered while healing +4
-----------------------------------------
require("scripts/globals/status");
--... | gpl-3.0 |
iGhibli/FlyingGame | FlyingGame/src/framework/cc/components/Component.lua | 23 | 1247 |
local Component = class("Component")
function Component:ctor(name, depends)
self.name_ = name
self.depends_ = checktable(depends)
end
function Component:getName()
return self.name_
end
function Component:getDepends()
return self.depends_
end
function Component:getTarget()
return self.target_
en... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Selbina/npcs/Oswald.lua | 17 | 4701 | -----------------------------------
-- Area: Selbina
-- NPC: Oswald
-- Starts and Finishes Quest: Under the sea (finish), The gift, The real gift
-- @pos 48 -15 9 248
-----------------------------------
package.loaded["scripts/zones/Selbina/TextIDs"] = nil;
-----------------------------------
require("scripts... | gpl-3.0 |
will4wachter/Project1 | scripts/globals/items/bowl_of_riverfin_soup.lua | 36 | 1822 | -----------------------------------------
-- 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 |
waterlgndx/darkstar | scripts/globals/items/gateau_aux_fraises.lua | 2 | 1276 | -----------------------------------------
-- ID: 5542
-- Item: Gateau aux fraises
-- Food Effect: 3 Hrs, All Races
-----------------------------------------
-- TODO: Group Effect
-- HP 8
-- MP 8% Cap 50
-- Intelligence 1
-- HP Recovered while healing 1
-- MP Recovered while healing 1
-----------------------------------... | gpl-3.0 |
will4wachter/Project1 | scripts/zones/Bastok_Markets/npcs/Visala.lua | 19 | 1167 | -----------------------------------
-- Area: Bastok Markets
-- NPC: Visala
-- Guild Merchant NPC: Goldsmithing Guild
-- @pos -202.000 -7.814 -56.823 235
-----------------------------------
package.loaded["scripts/zones/Bastok_Markets/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/se... | gpl-3.0 |
kidaa/darkstar | scripts/zones/Windurst_Woods/npcs/Sariale.lua | 28 | 2050 | -----------------------------------
-- Area: Windurst Woods
-- NPC: Sariale
-- Type: Chocobo Renter
-----------------------------------
require("scripts/globals/chocobo");
require("scripts/globals/keyitems");
require("scripts/globals/settings");
require("scripts/globals/status");
-------------------------... | gpl-3.0 |
Olivine-Labs/busted | busted/outputHandlers/TAP.lua | 1 | 2926 | local pretty = require 'pl.pretty'
local io = io
local type = type
local string_format = string.format
local string_gsub = string.gsub
local io_write = io.write
local io_flush = io.flush
local function print(msg)
io_write(msg .. '\n')
end
return function(options)
local busted = require 'busted'
local handler = ... | mit |
will4wachter/Project1 | scripts/globals/items/balik_sandvici.lua | 35 | 1435 | -----------------------------------------
-- ID: 5590
-- Item: Balik Sandvici
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Dexterity 3
-- Agility 1
-- Intelligence 3
-- Mind -2
-- Ranged ACC 5
-----------------------------------------
require("scripts/globals/status");
-... | gpl-3.0 |
lhog/Zero-K | LuaUI/Widgets/chili/Controls/combobox.lua | 4 | 5024 | --// =============================================================================
--- ComboBox module
--- ComboBox fields.
-- Inherits from Control.
-- @see control.Control
-- @table ComboBox
-- @tparam {"item1", "item2", ...} items table of items in the ComboBox, (default {"items"})
-- @int[opt = 1] selected id of ... | gpl-2.0 |
davidedmonds/darkstar | scripts/globals/items/shiranui.lua | 15 | 1256 | -----------------------------------------
-- ID: 17774
-- Item: Shiranui
-- Additional Effect: Light Damage (night time only)
-----------------------------------------
require("scripts/globals/status");
-----------------------------------
-- onAdditionalEffect Action
-----------------------------------
funct... | gpl-3.0 |
MonokuroInzanaito/ygopro-777DIY | expansions/script/c80010009.lua | 1 | 1829 | --给你带来笑容!
function c80010009.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_ATKCHANGE)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetHintTiming(TIMING_DAMAGE_STEP)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET+EFFECT_FLAG_DAMAGE_STEP)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCondition(c8001000... | gpl-3.0 |
davidedmonds/darkstar | scripts/zones/Windurst_Waters/npcs/Anja-Enja.lua | 37 | 1052 | -----------------------------------
-- Area: Windurst Waters
-- NPC: Anja-Enja
-- Adventurer's Assistant
-- Working 100%
-------------------------------------
require("scripts/globals/settings");
package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil;
require("scripts/zones/Windurst_Waters/TextIDs");
... | gpl-3.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.