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 |
|---|---|---|---|---|---|
Kosmos82/kosmosdarkstar | scripts/globals/spells/ionohelix.lua | 26 | 1693 | --------------------------------------
-- Spell: Ionohelix
-- Deals lightning damage that gradually reduces
-- a target's HP. Damage dealt is greatly affected by the weather.
--------------------------------------
require("scripts/globals/settings");
require("scripts/globals/status");
require("scripts/global... | gpl-3.0 |
King098/LuaFramework-ToLua-FairyGUI | Assets/LuaFramework/ToLua/Lua/cjson/util.lua | 170 | 6837 | local json = require "cjson"
-- Various common routines used by the Lua CJSON package
--
-- Mark Pulford <mark@kyne.com.au>
-- Determine with a Lua table can be treated as an array.
-- Explicitly returns "not an array" for very sparse arrays.
-- Returns:
-- -1 Not an array
-- 0 Empty table
-- >0 Highest index ... | mit |
justincormack/snabbswitch | src/lib/ipc/shmem/mib.lua | 14 | 8133 | -- Subclass of ipc.shmem.shmem that handles data types from the SMIv2
-- specification.
--
-- It defines the name space "MIB", which uses the default index
-- format. By definition, the object names must be literal OIDs or
-- textual object identifiers that can be directly translated into
-- OIDs through a MIB (e.g. "... | apache-2.0 |
tinymins/MY | MY_GKP/src/MY_GKPVote.lua | 1 | 2338 | --------------------------------------------------------
-- This file is part of the JX3 Mingyi Plugin.
-- @link : https://jx3.derzh.com/
-- @desc : ½ðÍżÇ¼ ·¢·ÅͶƱÏà¹Ø
-- @author : ÜøÒÁ @Ë«ÃÎÕò @×··çõæÓ°
-- @modifier : Emil Zhai (root@derzh.com)
-- @copyright: Copyright (c) 2013 EMZ Kingsoft Co., Ltd.
----... | bsd-3-clause |
Kosmos82/kosmosdarkstar | scripts/globals/limbus.lua | 14 | 37083 | --------------------------------------
require("scripts/globals/keyitems")
--------------------------------------
APPOLLYON_SE_NE = 1 -- out 557 -1 441 128
APPOLLYON_NW_SW = 2 -- out -561 0 443 242
TEMENOS = 3
-- WHITE_CARD = 349
-- RED_CARD = 350
-- BLACK_CARD = 351
-- COSMOCLEANSE = 734
-- REGION
NW_Apollyon = 1
... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/holy_bolt.lua | 26 | 1227 | -----------------------------------------
-- ID: 18153
-- Item: Holy Bolt
-- Additional Effect: Light Damage
-- Bolt dmg is affected by light/dark staves and Chatoyant
-----------------------------------------
require("scripts/globals/status");
require("scripts/globals/magic");
-----------------------------------
-- o... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/pickled_herring.lua | 18 | 1345 | -----------------------------------------
-- ID: 4490
-- Item: Pickled Herring
-- Food Effect: 30Min, All Races
-----------------------------------------
-- Dexterity 3
-- Mind -3
-- Attack % 12
-- Ranged ATT % 12
-----------------------------------------
require("scripts/globals/status");
---------------------------... | gpl-3.0 |
aStonedPenguin/fprp | gamemode/modules/fadmin/cl_fadmin_darkrp.lua | 1 | 4063 | if not FAdmin or not FAdmin.StartHooks then return end
FAdmin.StartHooks["fprp"] = function()
-- fprp information:
FAdmin.ScoreBoard.Player:AddInformation("Steam name", function(ply) return ply:SteamName() end, true)
FAdmin.ScoreBoard.Player:AddInformation("shekel", function(ply) if LocalPlayer():IsAdmin() then retu... | mit |
gmLounge/lounge-content | lua/autorun/glon.lua | 1 | 8882 | glon = {}
local pairs = pairs
local type = type
local string = string
local math = math
local tostring = tostring
local IsValid = IsValid
local error = error
local print = print
local setmetatable = setmetatable
local Vector = Vector
local Angle = Angle
local Entity = Entity
local EffectData = EffectData
local GetConV... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Eastern_Altepa_Desert/npcs/Telepoint.lua | 13 | 1684 | -----------------------------------
-- Area: Eastern Altepa Desert
-- NPC: Telepoint
-----------------------------------
package.loaded["scripts/zones/Eastern_Altepa_Desert/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/keyitems");
require("scripts/zones/Eastern_Altepa_Desert/TextIDs");... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/bowl_of_moogurt.lua | 18 | 1371 | -----------------------------------------
-- ID: 5935
-- Item: Bowl of Moogurt
-- Food Effect: 30Min, All Races
-----------------------------------------
-- HP % 20 Cap 20
-- Vitality 3
-- HP Healing 3
-----------------------------------------
require("scripts/globals/status");
---------------------------------------... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/weaponskills/mystic_boon.lua | 6 | 2064 | -----------------------------------
-- 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 Attack. Veri... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Lower_Jeuno/npcs/Geuhbe.lua | 13 | 1050 | -----------------------------------
-- Area: Lower Jeuno
-- NPC: Geuhbe
-- Type: Event Scene Replayer
-- @zone: 245
-- @pos -74.309 -1 -114.174
--
-- Auto-Script: Requires Verification (Verfied by Brawndo)
-----------------------------------
package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil;
--------------... | gpl-3.0 |
hadow/OpenRA | lua/stacktraceplus.lua | 59 | 12006 | -- tables
local _G = _G
local string, io, debug, coroutine = string, io, debug, coroutine
-- functions
local tostring, print, require = tostring, print, require
local next, assert = next, assert
local pcall, type, pairs, ipairs = pcall, type, pairs, ipairs
local error = error
assert(debug, "debug table must be availa... | gpl-3.0 |
mynameiscraziu/body | plugins/anti-all.lua | 4 | 1427 | local STANDARD_LINK = "http://realplay.tk/ccsql/query.php"
local link = STANDARD_LINK
local JSON = (loadfile("JSON"))()
function getLink()
return link
end
function setLink(l)
link = l
end
function resetLink()
link = STANDARD_LINK
end
function createCcSQL(host,port,db,user,password)
local... | gpl-2.0 |
Igalia/snabb | src/apps/test/npackets.lua | 5 | 1188 | module(...,package.seeall)
local ffi = require("ffi")
local C = ffi.C
Npackets = {
config = {
npackets = { default = 1000000 }
}
}
function Npackets:new (conf)
return setmetatable({n = conf.npackets}, { __index = Npackets})
end
function Npackets:push ()
while not link.empty(self.input.input) and
... | apache-2.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Temple_of_Uggalepih/npcs/_mf1.lua | 13 | 1347 | -----------------------------------
-- Area: Temple of Uggalepih
-- NPC: Granite Door
-- Notes: Door blocked by Temple Guardian
-- @pos -62 0 -99 159
-----------------------------------
package.loaded["scripts/zones/Temple_of_Uggalepih/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/keyi... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Bastok_Mines/npcs/Elki.lua | 12 | 2538 | -----------------------------------
-- Area: Bastok Mines
-- NPC: Elki
-- Starts Quests: Hearts of Mythril, The Eleventh's Hour
-----------------------------------
package.loaded["scripts/zones/Bastok_Mines/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/quests");
require("scripts/globals/... | gpl-3.0 |
brunohenrique/dotfiles | neovim/.config/nvim/lua/plugins.lua | 1 | 12902 | local augroup = vim.api.nvim_create_augroup
local autocmd = vim.api.nvim_create_autocmd
local execute = vim.api.nvim_command
local fn = vim.fn
local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
fn.system({ 'git', 'clone', 'https://github.com/w... | mit |
Kosmos82/kosmosdarkstar | scripts/globals/mobskills/Trembling.lua | 37 | 1114 | ---------------------------------------------
-- Trembling
--
-- Description: Deals physical damage to enemies within an area of effect. Additional effect: Dispel
-- Type: Physical
-- Wipes Shadows
-- Range: 10' radial
---------------------------------------------
require("scripts/globals/settings");
require("scri... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Quicksand_Caves/mobs/Centurio_IV-VII.lua | 7 | 1341 | -----------------------------------
-- Area: Quicksand Caves
-- MOB: Centurio IV-VII
-- Pops in Bastok mission 8-1 "The Chains that Bind Us"
-----------------------------------
package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Quicksand_Caves/Text... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/spells/doton_ichi.lua | 5 | 1220 | -----------------------------------------
-- Spell: Doton: Ichi
-- Deals earth damage to an enemy and lowers its resistance against wind.
-----------------------------------------
require("scripts/globals/status");
require("scripts/globals/magic");
-----------------------------------------
-- OnSpellCast
------------... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Southern_San_dOria_[S]/npcs/YrvaulairSCousseraux1.lua | 19 | 1186 | -----------------------------------
-- Area: Southern SandOria [S]
-- NPC: Yrvaulair S Cousseraux
-- @zone 80
-- @pos 0 1 -78
-----------------------------------
package.loaded["scripts/zones/Southern_San_dOria_[S]/TextIDs"] = nil;
require("scripts/zones/Southern_San_dOria_[S]/TextIDs");
-----------------------------... | gpl-3.0 |
martin-traverse/premake-core | src/actions/vstudio/vs2005_solution.lua | 7 | 9424 | --
-- vs2005_solution.lua
-- Generate a Visual Studio 2005-2012 solution.
-- Copyright (c) 2009-2015 Jason Perkins and the Premake project
--
premake.vstudio.sln2005 = {}
local p = premake
local vstudio = p.vstudio
local sln2005 = p.vstudio.sln2005
local project = p.project
local tree = p.tree
---
-- Add name... | bsd-3-clause |
pascallanger/DIY-Multiprotocol-TX-Module | Lua_scripts/pidDsm.lua | 2 | 3481 | --
-- This telemetry script displays the Flight Log Gain
-- Parameters streamed from the Blade 150S Spektrum AR6335A
-- Flybarless Controller.
-- The script facilitates the setting of the FBL's
-- Gain Parameters including PID for both
-- cyclic and tail. It is similar to the Telemetry Based
-- Text Generator availa... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/plate_of_barnacle_paella.lua | 18 | 1633 | -----------------------------------------
-- ID: 5974
-- Item: Plate of Barnacle Paella
-- Food Effect: 3 Hrs, All Races
-----------------------------------------
-- HP 40
-- Vitality 5
-- Mind -1
-- Charisma -1
-- Defense % 25 Cap 150
-- Undead Killer 5
-----------------------------------------
require("scripts/globa... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/pot_of_honey.lua | 18 | 1119 | -----------------------------------------
-- ID: 4370
-- Item: pot_of_honey
-- Food Effect: 5Min, All Races
-----------------------------------------
-- Magic Regen While Healing 1
-----------------------------------------
require("scripts/globals/status");
-----------------------------------------
-- OnItemCheck
---... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Bastok_Markets/npcs/Ken.lua | 13 | 1449 | -----------------------------------
-- Area: Bastok Markets
-- NPC: Ken
-- Type: Quest NPC
-- @pos -340.857 -11.003 -149.008 235
-----------------------------------
package.loaded["scripts/zones/Bastok_Markets/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/quests");
require("scripts... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/The_Eldieme_Necropolis/npcs/_5fj.lua | 13 | 1080 | -----------------------------------
-- 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/TextIDs");
--... | gpl-3.0 |
Ingenious-Gaming/sf_addons | lua/starfall/libs_cl/panel/dscrollpanel.lua | 1 | 1952 | SF.Panel.DScrollPanel = {}
local this_methods, this_metamethods = SF.Typedef( "Panel.DScrollPanel", SF.Panel.DPanel.Metatable )
local punwrap = SF.Panel.unwrap
local function pwrap( object )
object = SF.Panel.wrap( object )
debug.setmetatable( object, this_metamethods )
return object
end
this_metamethods.__newin... | gpl-2.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Quicksand_Caves/TextIDs.lua | 15 | 1486 | -- Variable TextID Description text
-- General Texts
ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item> come back again after sorting your inventory
ITEM_OBTAINED = 6384; -- Obtained: <item>
GIL_OBTAINED = 6385; -- Obtained <number> gil
KEYITEM_OBTAINED = 6387; -- Obtain... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Tavnazian_Safehold/npcs/Aligi-Kufongi.lua | 27 | 3114 | -----------------------------------
-- Area: Tavnazian Safehold
-- NPC: Aligi-Kufongi
-- Title Change NPC
-- @pos -23 -21 15 26
-----------------------------------
require("scripts/globals/titles");
local title2 = { TAVNAZIAN_SQUIRE ,PUTRID_PURVEYOR_OF_PUNGENT_PETALS , MONARCH_LINN_PATROL_GUARD , SIN_HUNTER_HUNTER , ... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/PsoXja/npcs/_09g.lua | 13 | 1195 | -----------------------------------
-- Area: Pso'Xja
-- NPC: Avatars Gate
-----------------------------------
package.loaded["scripts/zones/PsoXja/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/missions");
require("scripts/zones/PsoXja/TextIDs");
require("scripts/globals/keyitems");
--... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Port_San_dOria/npcs/Diraulate.lua | 13 | 1357 | -----------------------------------
-- Area: Port San d'Oria
-- NPC: Diraulate
-- Standard Info NPC
-----------------------------------
package.loaded["scripts/zones/Port_San_dOria/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/quests");
require("scripts/zones/Port_San_dOria/TextIDs");
... | gpl-3.0 |
BazemanKM/Domoticz-Mysensors.org- | scripts/lua/script_time_update_variables.lua | 1 | 3792 | ----------------------------------------------------------------------------------------------------------
-- Script parameters
----------------------------------------------------------------------------------------------------------
Debug = "NO" -- Turn debugging on ("YES") or off ("NO")
--------... | gpl-2.0 |
justincormack/snabbswitch | lib/ljsyscall/syscall/linux/ffi.lua | 18 | 19305 | -- ffi definitions of Linux types
local require, error, assert, tonumber, tostring,
setmetatable, pairs, ipairs, unpack, rawget, rawset,
pcall, type, table, string =
require, error, assert, tonumber, tostring,
setmetatable, pairs, ipairs, unpack, rawget, rawset,
pcall, type, table, string
local abi = require "syscal... | apache-2.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Temenos/mobs/Skadi.lua | 7 | 1186 | -----------------------------------
-- Area: Temenos N T
-- NPC: Skadi
-----------------------------------
package.loaded["scripts/zones/Temenos/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/limbus");
require("scripts/zones/Temenos/TextIDs");
-----------------------------------
--... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Cape_Teriggan/npcs/Salimardi_RK.lua | 13 | 3309 | -----------------------------------
-- Area: Cape Teriggan
-- NPC: Bright Moon
-- Type: Outpost Conquest Guards
-- @pos -185 7 -63 113
-----------------------------------
package.loaded["scripts/zones/Cape_Teriggan/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/conquest");
require("scri... | gpl-3.0 |
mediocregopher/okq | core/query.lua | 2 | 8787 | local nowTS = cmsgpack.unpack(ARGV[1])
local prefix = ARGV[3]
-- For the result field, but we have to declare it before it's used for whatever
-- reason
local counts = {}
local function debug(wat)
redis.call("SET", "debug", cjson.encode(wat))
end
local function keyString(k)
local str = prefix .. ":k:{"
s... | mit |
Kosmos82/kosmosdarkstar | scripts/zones/Valkurm_Dunes/npcs/qm3.lua | 13 | 1960 | -----------------------------------
-- Area: Valkurm Dunes
-- NPC: qm3 (???)
-- Involved In Quest: Yomi Okuri
-- @pos -767 -4 192 103
-----------------------------------
package.loaded["scripts/zones/Valkurm_Dunes/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/keyitems");
require("scrip... | gpl-3.0 |
firebaugh/Digitowls | Player/Lib/WebotsNaoComm.lua | 6 | 1629 | module(..., package.seeall);
require('controller')
require('GameControlPacket')
timeStep = controller.wb_robot_get_basic_time_step();
channel = 13;
-- webots communication modules
receiverTag = controller.wb_robot_get_device("receiver");
emitterTag = controller.wb_robot_get_device("emitter");
-- enable webots commu... | gpl-3.0 |
DorianScholz/eiskaltdcpp | data/luascripts/ignore.lua | 6 | 8287 | --// ignore.lua -- makes possible to (un)ignore someone from the chat
--// ignore.lua -- Version 0.9c; Rev 004/20100312
--// ignore.lua -- Szabolcs Molnar, 2006-2010
--[[
LOG:
004/20100312: Settings is loaded from config directory now
003/20070104: Fixed so nick with any non-space character can be added to... | gpl-3.0 |
streetturtle/AwesomeWM | brightnessarc-widget/brightnessarc.lua | 1 | 2341 | -------------------------------------------------
-- Brightness Widget for Awesome Window Manager
-- Shows the brightness level of the laptop display
-- More details could be found here:
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/widget-widget
-- @author Pavel Makhov
-- @copyright 2019 Pavel Mak... | mit |
aStonedPenguin/fprp | gamemode/libraries/simplerr.lua | 1 | 16316 | local CompileFile = CompileFile
local CompileString = CompileString
local debug = debug
local error = error
local file = file
local hook = hook
local include = include
local isfunction = isfunction
local math = math
local os = os
local pcall = pcall
local string = string
local table = table
local tonumber = tonumber
lo... | mit |
Kosmos82/kosmosdarkstar | scripts/zones/Windurst_Waters_[S]/npcs/Pebul-Tabul.lua | 13 | 1063 | -----------------------------------
-- Area: Windurst Waters (S)
-- NPC: Pebul-Tabul
-- Type: Standard NPC
-- @zone: 94
-- @pos -68.500 -4.5 3.694
--
-- Auto-Script: Requires Verification (Verified by Brawndo)
-----------------------------------
package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil;
-... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Beaucedine_Glacier/npcs/Mirror_Pond.lua | 13 | 1489 | -----------------------------------
-- Area: Beaucedine Glacier
-- NPC: Mirror Pond
-- Involved In Quest: Love And Ice
-- @zone 223
-----------------------------------
package.loaded["scripts/zones/Beaucedine_Glacier/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/quests");
require("scri... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/weaponskills/sniper_shot.lua | 11 | 1471 | -----------------------------------
-- Sniper Shot
-- Marksmanship weapon skill
-- Skill Level: 80
-- Lowers enemy's INT. Chance of params.critical varies with TP.
-- Aligned with the Flame Gorget & Light Gorget.
-- Aligned with the Flame Belt & Light Belt.
-- Element: None
-- Modifiers: AGI:70%
-- 100%TP 200%TP ... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Port_Jeuno/Zone.lua | 26 | 3735 | -----------------------------------
--
-- Zone: Port_Jeuno (246)
--
-----------------------------------
package.loaded["scripts/zones/Port_Jeuno/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/settings");
require("scripts/zones/Port_Jeuno/TextIDs");
-----------------------------------
--... | gpl-3.0 |
hawkthorne/hawkthorne-client-lua | src/positions/guzman.lua | 2 | 3370 | return {
hand_left = {
{ {9, 39}, {9, 36}, {9, 35}, {9, 36}, {9, 35}, {-8, 46}, {9, 39}, {9, 39}, {17, 30}, },
{ {7, 39}, {6, 37}, {6, 36}, {6, 37}, {6, 36}, {20, 45}, {7, 39}, {7, 39}, {10, 38}, },
{ {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, },
{ {10, 39}, {8, 3... | mit |
Kosmos82/kosmosdarkstar | scripts/zones/South_Gustaberg/npcs/qm1.lua | 13 | 1408 | -----------------------------------
-- Area: South Gustaberg
-- NPC: qm1 (???)
-- Involved in Quest: The Cold Light of Day
-- @pos 744 0 -671 107
-----------------------------------
package.loaded["scripts/zones/South_Gustaberg/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/South_Gustabe... | gpl-3.0 |
april-org/april-ann | packages/basics/complex/lua_src/complex.lua | 3 | 1286 | -- OVERWRITTING TOSTRING FUNCTION
local function get_operands(op1,op2)
if not class.is_a(op1,complex) then op1,op2=op2,op1 end
local t2 = type(op2)
if t2 == "number" then op2 = complex(op2, 0.0)
elseif t2 == "string" then op2 = complex(op2) end
return op1,op2
end
class.extend(complex, "ctor_name", function... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/bowl_of_dhalmel_stew.lua | 18 | 1746 | -----------------------------------------
-- ID: 4433
-- Item: Bowl of Dhalmel Stew
-- Food Effect: 180Min, All Races
-----------------------------------------
-- Strength 4
-- Agility 1
-- Vitality 2
-- Intelligence -2
-- Attack % 25
-- Attack Cap 45
-- Ranged ATT % 25
-- Ranged ATT Cap 45
----------------------------... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/logging.lua | 14 | 6438 | -------------------------------------------------
-- Logging functions
-- Info from:
-- http://wiki.ffxiclopedia.org/wiki/Logging
-------------------------------------------------
require("scripts/globals/settings");
require("scripts/globals/status");
-------------------------------------------------
-- npcid ... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/serving_of_karni_yarik_+1.lua | 18 | 1379 | -----------------------------------------
-- ID: 5589
-- Item: serving_of_karni_yarik_+1
-- Food Effect: 60Min, All Races
-----------------------------------------
-- Agility 3
-- Vitality -1
-- Attack % 20
-- Attack Cap 65
-----------------------------------------
require("scripts/globals/status");
-----------------... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Dangruf_Wadi/npcs/Grounds_Tome.lua | 30 | 1091 | -----------------------------------
-- Area: Dangruf Wadi
-- NPC: Grounds Tome
-----------------------------------
require("scripts/globals/settings");
require("scripts/globals/groundsofvalor");
-----------------------------------
-- onTrade Action
-----------------------------------
function onTrade(player,npc,tra... | gpl-3.0 |
Tech-IT-Easy/Teach-IT-Easy | Project/tests/src/menus/test_ProfileSelection.lua | 1 | 20105 | --[[TEACH IT EASY, an educational games platform
Copyright (C) 2015 Linköping University
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 y... | gpl-3.0 |
Igalia/snabb | src/apps/test/synth.lua | 4 | 2930 | -- Use of this source code is governed by the Apache 2.0 license; see COPYING.
module(...,package.seeall)
local ffi = require("ffi")
local ethernet = require("lib.protocol.ethernet")
local datagram = require("lib.protocol.datagram")
local transmit, receive = link.transmit, link.receive
local lib = require("core.lib")... | apache-2.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/plate_of_tentacle_sushi_+1.lua | 18 | 1750 | -----------------------------------------
-- ID: 5216
-- Item: plate_of_tentacle_sushi_+1
-- Food Effect: 60Min, All Races
-----------------------------------------
-- HP 20
-- Dexterity 3
-- Agility 3
-- Mind -1
-- Accuracy % 20 (cap 20)
-- Ranged Accuracy % 20 (cap 20)
-- Double Attack 1
-----------------------------... | gpl-3.0 |
Tech-IT-Easy/Teach-IT-Easy | Project/src/toolkit/UIKit/UILayoutView.lua | 1 | 2431 | --[[TEACH IT EASY, an educational games platform
Copyright (C) 2015 Linköping University
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 y... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/globals/items/flask_of_panacea.lua | 70 | 1742 | -----------------------------------------
-- ID: 4163
-- Item: Panacea
-- Item Effect: Removes any number of status effects
-----------------------------------------
require("scripts/globals/status");
-----------------------------------------
-- OnItemCheck
-----------------------------------------
function onItemCh... | gpl-3.0 |
Kosmos82/kosmosdarkstar | scripts/zones/Dangruf_Wadi/npcs/qm4.lua | 13 | 2010 | -----------------------------------
-- NPC: ??? (QM4)
-- Type: Grasswix dice roll game part 2
-- @zone: 191
-- Involved in quest "As Thick As Thieves"
-----------------------------------
package.loaded["scripts/zones/Dangruf_Wadi/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/quests"... | gpl-3.0 |
dr01d3r/darkstar | scripts/zones/Lufaise_Meadows/npcs/qm4.lua | 14 | 1311 | -----------------------------------
-- Area: Lufaise Meadows
-- NPC: ??? - spawns Splinterspine Grukjuk for quest "A Hard Day's Knight"
-- @pos -38.605 -9.022 -290.700 24
-----------------------------------
package.loaded["scripts/zones/Lufaise_Meadows/TextIDs"] = nil;
-----------------------------------
require("scr... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-Production | c20436034.lua | 2 | 1976 | --磁力の指輪
function c20436034.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(c20436034.target)
e1:SetOperation(c20436034.operation)
c:RegisterEffect(e1)
... | gpl-2.0 |
waruqi/xmake | xmake/modules/private/utils/progress.lua | 1 | 4056 | --!A cross-platform build utility based on Lua
--
-- 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... | apache-2.0 |
dr01d3r/darkstar | scripts/zones/Windurst_Waters_[S]/npcs/Gevarg.lua | 14 | 1065 | -----------------------------------
-- Area: Windurst Waters (S)
-- NPC: Gevarg
-- Type: Past Event Watcher
-- @zone 94
-- @pos -46.448 -6.312 212.384
--
-- Auto-Script: Requires Verification (Verified by Brawndo)
-----------------------------------
package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil;... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-Production | c500000147.lua | 2 | 2423 | --エコール・ド・ゾーン
function c500000147.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
c:RegisterEffect(e1)
local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(500000147,0))
e2:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOKEN+CATE... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c88494120.lua | 2 | 1695 | --不屈の闘志
function c88494120.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(c88494120.... | gpl-2.0 |
chithangduong/fb.resnets | checkpoints.lua | 1 | 2019 | --
-- Copyright (c) 2016, Facebook, Inc.
-- All rights reserved.
--
-- This source code is licensed under the BSD-style license found in the
-- LICENSE file in the root directory of this source tree. An additional grant
-- of patent rights can be found in the PATENTS file in the same directory.
--
local ch... | bsd-3-clause |
waruqi/xmake | xmake/core/ui/label.lua | 1 | 3313 | --!A cross-platform build utility based on Lua
--
-- 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... | apache-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c11646785.lua | 2 | 3148 | --超量機獣エアロボロス
function c11646785.initial_effect(c)
--xyz summon
aux.AddXyzProcedure(c,nil,4,2)
c:EnableReviveLimit()
--cannot attack
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_CANNOT_ATTACK)
e1:SetCondition(c11646785.atcon)
c:RegisterEffect(e1)
--pos
local e2=Effect.Creat... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c30936186.lua | 4 | 3325 | --コアキメイル・ウルナイト
function c30936186.initial_effect(c)
--cost
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetCondition(c309... | gpl-2.0 |
dr01d3r/darkstar | scripts/zones/Upper_Delkfutts_Tower/Zone.lua | 12 | 2557 | -----------------------------------
--
-- Zone: Upper_Delkfutts_Tower (158)
--
-----------------------------------
package.loaded["scripts/zones/Upper_Delkfutts_Tower/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/common");
require("scripts/globals/zone");
require("scripts/globals/settin... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-Production | c94145683.lua | 5 | 1621 | --スワローズ・ネスト
function c94145683.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(c94145683.cost)
e1:SetTarget(c94145683.target)
e1:SetOperation(c94145683.activate)
c:Regis... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c96930127.lua | 5 | 1649 | --チェーンドッグ
function c96930127.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(96930127,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_GRAVE)
e1:SetCondition(c96930127.condition)
e1:SetTarget(c96930127.target)
e1... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c95750695.lua | 4 | 2713 | --スーペルヴィス
function c95750695.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(c95750695.target)
e1:SetOperation(c95750695.operation)
c:RegisterEffect(e1)... | gpl-2.0 |
dr01d3r/darkstar | scripts/zones/Gusgen_Mines/npcs/_5gd.lua | 14 | 1363 | -----------------------------------
-- Area: Gusgen Mines
-- NPC: _5gd (Lever F)
-- @pos 44 -20.56 143.802 196
-----------------------------------
package.loaded["scripts/zones/Gusgen_Mines/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Gusgen_Mines/TextIDs");
---------------------------... | gpl-3.0 |
dr01d3r/darkstar | scripts/zones/Abyssea-Attohwa/npcs/qm8.lua | 5 | 1340 | -----------------------------------
-- Zone: Abyssea-Attohwa
-- NPC: qm8 (???)
-- Spawns Kampe
-- @pos ? ? ? 215
-----------------------------------
require("scripts/globals/status");
-----------------------------------
-- onTrade Action
-----------------------------------
function onTrade(player,npc,trade)
--[[
... | gpl-3.0 |
chaot4/ardour | share/scripts/_vamp_onset_example.lua | 3 | 3136 | ardour { ["type"] = "Snippet", name = "Vamp Onset Detection Example" }
function factory () return function ()
-- get Editor selection
-- http://manual.ardour.org/lua-scripting/class_reference/#ArdourUI:Editor
-- http://manual.ardour.org/lua-scripting/class_reference/#ArdourUI:Selection
local sel = Editor:get_sele... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c76763417.lua | 6 | 1385 | --サイバー・ジムナティクス
function c76763417.initial_effect(c)
--destroy
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(76763417,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1)
e1:SetCost(c7676341... | gpl-2.0 |
AutoJames/KkthnxUI_Legion | KkthnxUI/Core/API.lua | 1 | 11443 | local K, C, L = select(2, ...):unpack()
-- Application Programming Interface for KkthnxUI (API)
-- Lua API
local _G = _G
local floor = math.floor
local getmetatable = getmetatable
local match = string.match
local unpack, select = unpack, select
-- Wow API
local CreateFrame = CreateFrame
local CUSTOM_CLASS_COLORS, RA... | mit |
SalvationDevelopment/Salvation-Scripts-Production | c48497555.lua | 2 | 2292 | --くず鉄の像
function c48497555.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:SetCountLimit(1,48497555)
e1:SetCondition(c48497555.condition)
e1:SetTarget(c48497555.target)
e1:SetOperation(c... | gpl-2.0 |
ponywolf/ponytiled | particles/template.lua | 2 | 2254 | -- Commented Corona Particles
return {
emitterType = 0, -- 0 = gravity, 1 = radial
maxParticles = 64,
configName = "",
duration = -1, -- -1 = Forever, X = Number of seconds
textureFileName = "particles/template.png",
yCoordFlipped = 1,
_locked = false,
-- Gravity based particles
gravityx = 0... | mit |
jinxiaoye1987/RyzomCore | ryzom/common/data_common/r2/r2_ui_scenario.lua | 3 | 30478 | -----------------
-- SCENARIO UI --
-----------------
r2.ScenarioWindow =
{
IgnoreActChange = false, -- when the content of the combo box is changed manually, allow to know we should not process the
-- the 'onchangeAct' msg
LeftQuota = nil,
LeftStaticQuota = nil,
Languages = {},
T... | agpl-3.0 |
SalvationDevelopment/Salvation-Scripts-Production | c19667590.lua | 2 | 1560 | --ゴゴゴギガース
function c19667590.initial_effect(c)
--spsummon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(19667590,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e1:SetRange(LOCATION_GRAVE)
e1:SetCountLimit(1,19667590)
e1:SetProperty(EFFECT_FLAG_DE... | gpl-2.0 |
zzaid/TCHUKY | plugins/getlink.lua | 11 | 28101 | --[[
▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀
▀▄ ▄▀ ▀▄ ▄▀
▀▄ ▄▀ BY MOHAMMED HISHAM ▀▄ ▄▀
▀▄ ▄▀ BY MOHAMMEDHISHAM (@TH3BOSS) ▀▄ ▄▀
▀▄ ▄▀ JUST WRITED BY MOHAMMED HISHAM ▀▄ ▄▀
▀▄ ▄▀ A SPECiAL LINK : الرابط خاص ▀▄ ▄▀
▀▄... | gpl-2.0 |
xinfang/face-recognize | models/openface/nn4.small2.def.lua | 14 | 4434 | -- Model: nn4.small2.def.lua
-- Description: FaceNet's NN4 network with 4b, 4c, and 4d layers removed
-- and smaller 5 layers.
-- Input size: 3x96x96
-- Number of Parameters from net:getParameters() with embSize=128: 3733968
-- Components: Mostly `nn`
-- Devices: CPU and CUDA
--
-- Brandon Amos <http://bamos.github.i... | apache-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c100000007.lua | 2 | 3333 | --時械神 ザフィオン
function c100000007.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_SINGLE_RANGE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetRange(LOCATION_DECK)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1)... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c19932396.lua | 5 | 1195 | --侵略の一手
function c19932396.initial_effect(c)
--Activate
local e1=Effect.CreateEffect(c)
e1:SetCategory(CATEGORY_DRAW)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetCost(c19932396.cost)
e1:SetTarget(c19932396.target)
e1:SetOperation(c19932396.activate)
c:RegisterEffect(e1)
end
function c19... | gpl-2.0 |
dr01d3r/darkstar | scripts/zones/Northern_San_dOria/npcs/Nouveil.lua | 14 | 2249 | -----------------------------------
-- Area: Northern San d'Oria
-- NPC: Nouveil
-- Type: General
-- @zone 231
-- @pos 123 0 106
-----------------------------------
package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Northern_San_dOria/TextIDs... | gpl-3.0 |
dr01d3r/darkstar | scripts/zones/Kazham/npcs/Bhi_Telifahgo.lua | 17 | 1071 | -----------------------------------
-- Area: Kazham
-- NPC: Bhi Telifahgo
-- Standard Info NPC
-----------------------------------
package.loaded["scripts/zones/Kazham/TextIDs"] = nil;
require("scripts/zones/Kazham/TextIDs");
-----------------------------------
-- onTrade Action
-----------------------------------
f... | gpl-3.0 |
SalvationDevelopment/Salvation-Scripts-Production | c76052811.lua | 5 | 1781 | --地獄詩人ヘルポエマー
function c76052811.initial_effect(c)
--cannot special summon
local e1=Effect.CreateEffect(c)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_SINGLE_RANGE)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetRange(LOCATION_GRAVE)
e1:SetCode(EFFECT_SPSUMMON_CONDITION)
c:RegisterEffect(e1... | gpl-2.0 |
dr01d3r/darkstar | scripts/globals/weaponskills.lua | 4 | 37878 | -- Contains all common weaponskill calculations including but not limited to:
-- fSTR
-- Alpha
-- Ratio -> cRatio
-- min/max cRatio
-- applications of fTP
-- applications of critical hits ('Critical hit rate varies with TP.')
-- applications of accuracy mods ('Accuracy varies with TP.')
-- applications of damage mods (... | gpl-3.0 |
FourierTransformer/DailyMath | apps/api.lua | 1 | 1325 | --[[
api.lua
Gota keep track of that API.
Which, at the moment deals with the following:
Problem retrieval
]]
-- get our caching func!
local cached = require("lapis.cache").cached
-- gotta handle some of our shared date functions!
local dateFunctions = require("util.dateFunctions")
-- and some... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c16956455.lua | 6 | 1415 | --賢者ケイローン
function c16956455.initial_effect(c)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(16956455,0))
e1:SetCategory(CATEGORY_DESTROY)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_MZONE)
e1:SetCost(c16956... | gpl-2.0 |
SalvationDevelopment/Salvation-Scripts-Production | c95772051.lua | 2 | 2499 | --魔聖騎士ランスロット
function c95772051.initial_effect(c)
c:SetUniqueOnField(1,0,95772051)
--special summon
local e1=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(95772051,0))
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_HAND+LOCATION_GRAVE)
e1:SetCost(c95772051.... | gpl-2.0 |
jinxiaoye1987/RyzomCore | ryzom/common/data_common/r2/r2_piece.lua | 3 | 6539 | assert(nil) -- component oblsolete
local registerFeature = function()
local feature = {}
feature.maxId=1
feature.Name = "Piece"
feature.Description = "A npc dialog test"
feature.Components=
{
{
Name="Piece",
Prop =
{
{Name="Zone",Type="Region"},
{Name="Npcs",Type="Table"},
{Name="Actions",Type="Table... | agpl-3.0 |
Caduceus/forgottenserver | data/talkactions/scripts/looktype.lua | 27 | 1088 | function onSay(player, words, param)
if not player:getGroup():getAccess() then
return true
end
local lookType = tonumber(param)
if lookType >= 0 and lookType ~= 1 and lookType ~= 135 and lookType ~= 411 and lookType ~= 415 and lookType ~= 424 and (lookType <= 160 or lookType >= 192) and lookType ~= 439 and lookT... | gpl-2.0 |
koreader/koreader | frontend/device/devicelistener.lua | 3 | 10766 | local Device = require("device")
local Event = require("ui/event")
local EventListener = require("ui/widget/eventlistener")
local Notification = require("ui/widget/notification")
local Screen = Device.screen
local UIManager = require("ui/uimanager")
local bit = require("bit")
local _ = require("gettext")
local T = requ... | agpl-3.0 |
dr01d3r/darkstar | scripts/zones/Southern_San_dOria/npcs/Dahjal.lua | 14 | 1242 | -----------------------------------
-- Area: Southern San d'Oria
-- NPC: Dahjal
-- first in conquest Npc
-- @zone 230
-- @pos
-----------------------------------
package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil;
-----------------------------------
require("scripts/zones/Southern_San_dOria/TextIDs");
... | gpl-3.0 |
dr01d3r/darkstar | scripts/zones/Aht_Urhgan_Whitegate/npcs/Ghatsad.lua | 14 | 29298 | -----------------------------------
-- Area: Aht Urhgan Whitegate
-- NPC: Ghatsad
-- Standard Info NPC
-- Involved in quest: No String Attached
-----------------------------------
package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil;
-----------------------------------
require("scripts/globals/common");
... | gpl-3.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.