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
nasomi/darkstar
scripts/zones/Port_San_dOria/npcs/Rugiette.lua
31
2409
----------------------------------- -- Area: Port San d'Oria -- NPC: Rugiette -- Involved in Quests: Riding on the Clouds, Lure of the Wildcat (San d'Oria) -- @pos 71 -9 -73 232 ----------------------------------- package.loaded["scripts/zones/Port_San_dOria/TextIDs"] = nil; ----------------------------------- requir...
gpl-3.0
ZuoGuocai/Atlas
lib/proxy/parser.lua
41
6105
--[[ $%BEGINLICENSE%$ Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved. 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; version 2 of the License. This program is dis...
gpl-2.0
nasomi/darkstar
scripts/globals/items/chunk_of_orobon_meat.lua
18
1517
----------------------------------------- -- ID: 5563 -- Item: Chunk of Orobon Meat -- Effect: 5 Minutes, food effect, Galka Only ----------------------------------------- -- HP 10 -- MP -10 -- Strength +6 -- Intelligence -8 -- Demon Killer 10 ----------------------------------------- require("scripts/globals/status")...
gpl-3.0
nasomi/darkstar
scripts/zones/Ifrits_Cauldron/Zone.lua
17
2583
----------------------------------- -- -- Zone: Ifrits_Cauldron (205) -- ----------------------------------- package.loaded["scripts/zones/Ifrits_Cauldron/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/zone"); require("scripts/zones/Ifrits_C...
gpl-3.0
nasomi/darkstar
scripts/zones/Zeruhn_Mines/npcs/Mining_Point.lua
29
1093
----------------------------------- -- Area: Zeruhn Mines -- NPC: Mining Point ----------------------------------- package.loaded["scripts/zones/Zeruhn_Mines/TextIDs"] = nil; ------------------------------------- require("scripts/globals/mining"); require("scripts/zones/Zeruhn_Mines/TextIDs"); ----------...
gpl-3.0
Hello23-Ygopro/ygopro-ds
expansions/script/c27003120.lua
1
1253
--BT3-108 Super Saiyan Trunks, Protector of Time local ds=require "expansions.utility_dbscg" local scard,sid=ds.GetID() function scard.initial_effect(c) ds.EnableLeaderAttribute(c) ds.AddSetcode(c,SPECIAL_TRAIT_SAIYAN,CHARACTER_TRUNKS_XENO,SPECIAL_TRAIT_EARTHLING) --to drop ds.AddActivateMainSkill(c,0,DS_LOCATION_L...
gpl-3.0
amirhacker135/mmkingtm1
plugins/tex.lua
14
2803
do local function send_title(cb_extra, success, result) if success then send_msg(cb_extra[1], cb_extra[2], ok_cb, false) end end local function run(msg, matches) local eq = URL.escape(matches[1]) local url = "http://latex.codecogs.com/png.download?" .."\\dpi{300}%20\\LARGE%20"..eq local receiver =...
gpl-2.0
shangjiyu/luci-with-extra
modules/luci-base/luasrc/sgi/cgi.lua
81
1688
-- Copyright 2008 Steven Barth <steven@midlink.org> -- Licensed to the public under the Apache License 2.0. exectime = os.clock() module("luci.sgi.cgi", package.seeall) local ltn12 = require("luci.ltn12") require("nixio.util") require("luci.http") require("luci.sys") require("luci.dispatcher") -- Limited source to av...
apache-2.0
RhenaudTheLukark/CreateYourFrisk
Assets/Mods/Encounter Skeleton/Lua/Waves/bullettest_touhou.lua
5
1198
-- You've seen this one in the trailer (if you've seen the trailer). spawntimer = 0 bullets = {} yOffset = 180 mult = 0.5 function Update() spawntimer = spawntimer + 1 if(spawntimer % 30 == 0) then local numbullets = 10 for i=1,numbullets+1 do local bullet = CreateProjectile('bullet...
gpl-3.0
nasomi/darkstar
scripts/globals/spells/holy.lua
31
1129
----------------------------------------- -- Spell: Holy -- Deals light damage to an enemy. ----------------------------------------- require("scripts/globals/magic"); require("scripts/globals/status"); ----------------------------------------- -- OnSpellCast ----------------------------------------- fun...
gpl-3.0
raburton/nodemcu-firmware
tools/cross-lua.lua
19
1525
local args = { ... } local b = require "tools.build" local builder = b.new_builder( ".build/cross-lua" ) local utils = b.utils local sf = string.format if not (_VERSION == "Lua 5.1" and pcall(require,"lfs")) then print [[ cross_lua.lua must be run within Lua 5.1 and it requires the Lua Filesystem to be installed....
mit
Hello23-Ygopro/ygopro-ds
expansions/script/c27004096.lua
1
1048
--BT4-086 Plucky Dynasty Pan local ds=require "expansions.utility_dbscg" local scard,sid=ds.GetID() function scard.initial_effect(c) ds.EnableBattleAttribute(c) ds.AddSetcode(c,SPECIAL_TRAIT_SAIYAN,CHARACTER_PAN,SPECIAL_TRAIT_GOKUS_LINEAGE,SPECIAL_TRAIT_EARTHLING) ds.AddPlayProcedure(c,COLOR_YELLOW,2,2) --swap ds....
gpl-3.0
nasomi/darkstar
scripts/zones/The_Eldieme_Necropolis/npcs/_5fc.lua
34
1106
----------------------------------- -- Area: The Eldieme Necropolis -- NPC: Titan's Gate -- @pos 260 -34 -71 195 ----------------------------------- package.loaded["scripts/zones/The_Eldieme_Necropolis/TextIDs"] = nil; ----------------------------------- require("scripts/zones/The_Eldieme_Necropolis/TextIDs")...
gpl-3.0
nasomi/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Nadee_Periyaha.lua
17
1493
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Nadee Periyaha -- Standard Info NPC -- @pos -10.802 0.000 -1.198 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/globals/que...
gpl-3.0
Samanj5/spam-is-alive
plugins/pokedex.lua
626
1668
do local images_enabled = true; local function get_sprite(path) local url = "http://pokeapi.co/"..path print(url) local b,c = http.request(url) local data = json:decode(b) local image = data.image return image end local function callback(extra) send_msg(extra.receiver, extra.text, ok_cb, false) end lo...
gpl-2.0
icplus/OP-SDK
package/ramips/ui/luci-mtk/src/applications/luci-diag-devinfo/luasrc/model/cbi/luci_diag/smap_devinfo_config_mini.lua
80
1265
--[[ LuCI - Lua Configuration Interface (c) 2009 Daniel Dickinson 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 $Id$ ]]-- require("luci.controller.l...
gpl-2.0
nasomi/darkstar
scripts/globals/weaponskills/mistral_axe.lua
30
1569
----------------------------------- -- Mistral Axe -- Axe weapon skill -- Skill level: 225 (Beastmasters and Warriors only.) -- Delivers a single-hit ranged attack at a maximum distance of 15.7'. Damage varies with TP. -- Despite being able to be used from a distance it is considered a melee attack and can be stac...
gpl-3.0
nasomi/darkstar
scripts/zones/Korroloka_Tunnel/npcs/Grounds_Tome.lua
34
1145
----------------------------------- -- Area: Korroloka Tunnel -- NPC: Grounds Tome ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/groundsofvalor"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrad...
gpl-3.0
nasomi/darkstar
scripts/globals/items/burning_claymore.lua
41
1075
----------------------------------------- -- ID: 16929 -- Item: Burning Claymore -- Additional Effect: Fire Damage ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------- -- onAdditionalEffect Action ---------------------------...
gpl-3.0
MatthewDwyer/botman
mudlet/profiles/newbot/scripts/triggers/player_info.lua
1
64350
--[[ Botman - A collection of scripts for managing 7 Days to Die servers Copyright (C) 2020 Matthew Dwyer This copyright applies to the Lua source code in this Mudlet profile. Email smegzor@gmail.com URL http://botman.nz Source https://bitbucket.org/mhdwyer/botman --]] fun...
gpl-3.0
nasomi/darkstar
scripts/zones/Tahrongi_Canyon/npcs/Luck_Rune.lua
34
1080
----------------------------------- -- Area: Tahrongi Canyon -- NPC: Luck Rune -- Involved in Quest: Mhaura Fortune -- @pos -54.755 7.647 -379.945 117 ----------------------------------- package.loaded["scripts/zones/Tahrongi_Canyon/TextIDs"] = nil; ------------------------------------- require("scripts/...
gpl-3.0
ngeiswei/ardour
share/scripts/_osc_hook_example.lua
2
1441
ardour { ["type"] = "EditorHook", name = "OSC Callback Example", author = "Ardour Team", description = "Send OSC messages", } function action_params () return { ["uri"] = { title = "OSC URI ", default = "osc.udp://localhost:7890"}, } end function signals () s = LuaSignal.Set() s:add ( { ...
gpl-2.0
Hello23-Ygopro/ygopro-ds
expansions/script/c27002004.lua
1
1458
--BT2-003 Babidi --Not fully implemented: [Auto] skill is supposed to trigger local ds=require "expansions.utility_dbscg" local scard,sid=ds.GetID() function scard.initial_effect(c) ds.EnableLeaderAttribute(c) ds.AddSetcode(c,CHARACTER_EVIL_WIZARD_BABIDI) --to battle local e1=Effect.CreateEffect(c) e1:SetDescripti...
gpl-3.0
nasomi/darkstar
scripts/zones/Windurst_Walls/npcs/Chawo_Shipeynyo.lua
38
1040
----------------------------------- -- Area: Windurst Walls -- NPC: Chawo Shipeynyo -- Type: Standard NPC -- @zone: 239 -- @pos 3.593 -17 124.069 -- -- Auto-Script: Requires Verification (Verfied by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Walls/TextIDs"] = nil; ---------...
gpl-3.0
RhenaudTheLukark/CreateYourFrisk
Assets/Mods/Examples/Lua/Events/PunderTest.lua
1
2109
beforeMovement = math.random(60, 180) punderSprite = nil lastPosX = 0 lastPosY = 0 eventName = nil function EventPage0() -- First event function launched eventName = Event.GetName() -- Chara player choice has been locked if GetRealGlobal("CYFInternalCross2") then Event.Remove(eventName) else ...
gpl-3.0
nasomi/darkstar
scripts/zones/Windurst_Waters_[S]/npcs/Kolin-Olin.lua
38
1047
----------------------------------- -- Area: Windurst Waters (S) -- NPC: Kolin-Olin -- Type: Standard NPC -- @zone: 94 -- @pos 9.981 -2.478 33.786 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil; --...
gpl-3.0
nasomi/darkstar
scripts/zones/Southern_San_dOria_[S]/npcs/Renadile.lua
36
4466
----------------------------------- -- Area: Southern San d'Oria [S] -- NPC: Renadile -- Armor Storage NPC ----------------------------------- package.loaded["scripts/zones/Southern_San_dOria_[S]/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); require("scripts/globals/a...
gpl-3.0
nasomi/darkstar
scripts/zones/Bastok_Markets/npcs/Ciqala.lua
16
1805
----------------------------------- -- Area: Bastok Markets -- NPC: Ciqala -- Type: Merchant -- @zone: 235 -- @pos -283.147 -11.319 -143.680 -- -- Auto-Script: Requires Verification -- -- Updated Aug-09-2013 by Zerahn, based on bgwiki and gamerescape ----------------------------------- package.loaded["scripts/zone...
gpl-3.0
nasomi/darkstar
scripts/zones/RoMaeve/mobs/Shikigami_Weapon.lua
16
1194
----------------------------------- -- Area: RoMaeve -- MOB: Shikigami Weapon ----------------------------------- local path = { -47, -4, -37, -49, -4, -37, -54, -4, -37, -59, -4, -43, -67, -3.7, -50.6, -76, -1.4, -60, -87, -1, -69, -104, -3, -58, -118, -3, -46, -112, -3.5, -28, -98, -6, -16, ...
gpl-3.0
nasomi/darkstar
scripts/zones/Gustav_Tunnel/MobIDs.lua
36
1588
----------------------------------- -- Area: Gustav Tunnel (212) -- Comments: -- posX, posY, posZ --(Taken from 'mob_spawn_points' table) ----------------------------------- Goblinsavior_Heronox=17645609; Goblinsavior_Heronox_PH={ [17645592] = '1', -- 153.000, -10.000, -53.000 [17645605] = '1', -- 152.32...
gpl-3.0
thesabbir/luci
applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua
40
3094
-- Copyright 2008 Steven Barth <steven@midlink.org> -- Licensed to the public under the Apache License 2.0. require("luci.ip") require("luci.model.uci") local basicParams = { -- -- Widget, Name, Default(s), Description -- { ListValue, "verb", { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }, translate("Set...
apache-2.0
nasomi/darkstar
scripts/globals/items/fudgy-wudge.lua
36
1160
----------------------------------------- -- ID: 5920 -- Item: Fudgy-wudge -- Food Effect: 3 Min, All Races ----------------------------------------- -- Intelligence 1 -- Speed 12.5% ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck -...
gpl-3.0
nasomi/darkstar
scripts/zones/AlTaieu/npcs/Auroral_Updraft.lua
17
1777
----------------------------------- -- Area: Al'Taieu -- NPC: Auroral Updraft -- Type: Standard NPC ----------------------------------- package.loaded["scripts/zones/AlTaieu/TextIDs"] = nil; ----------------------------------- require("scripts/zones/AlTaieu/TextIDs"); -----------------------------------...
gpl-3.0
icplus/OP-SDK
package/ramips/ui/luci-mtk/src/modules/admin-mini/luasrc/model/cbi/mini/system.lua
49
2293
--[[ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> 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 $Id$ ]]-- req...
gpl-2.0
nasomi/darkstar
scripts/zones/Crawlers_Nest/npcs/qm8.lua
17
2547
----------------------------------- -- Area: Crawlers Nest -- NPC: ??? -- Involved in Quest: The Crimson Trial -- @pos 59 0.1 66 197 ----------------------------------- package.loaded["scripts/zones/Crawlers_Nest/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); requi...
gpl-3.0
nasomi/darkstar
scripts/zones/Crawlers_Nest/npcs/qm6.lua
14
1038
----------------------------------- -- Area: Crawlers Nest -- NPC: ??? - Matron Crawler spawn -- @pos -141.158 -33.689 20.944 197 ----------------------------------- package.loaded["scripts/zones/Crawlers_Nest/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Crawlers_Nest/TextIDs");...
gpl-3.0
nasomi/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Cacaroon.lua
19
2352
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Cacaroon -- Standard Info NPC -- @pos -72.026 0.000 -82.337 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); require...
gpl-3.0
nasomi/darkstar
scripts/zones/Windurst_Waters/npcs/Chomoro-Kyotoro.lua
36
1589
----------------------------------- -- Area: Windurst Waters -- NPC: Chomoro-Kyotoro -- Involved in Quest: Making the Grade -- @zone = 238 -- @pos = 133 -5 167 ----------------------------------- require("scripts/globals/quests"); require("scripts/globals/keyitems"); require("scripts/globals/settings"); ...
gpl-3.0
nasomi/darkstar
scripts/globals/abilities/warlocks_roll.lua
9
2774
----------------------------------- -- Ability: Warlock's Roll -- Enhances magic accuracy for party members within area of effect -- Optimal Job: Red Mage -- Lucky Number: 4 -- Unlucky Number: 8 -- Level: 46 -- -- Die Roll |No RDM |With RDM -- -------- -------- ----------- -- 1 |+2 |+7 ...
gpl-3.0
Hello23-Ygopro/ygopro-ds
expansions/script/c27003046.lua
1
1738
--BT3-042 Kibito, Kai's Attendant local ds=require "expansions.utility_dbscg" local scard,sid=ds.GetID() function scard.initial_effect(c) ds.EnableBattleAttribute(c) ds.AddSetcode(c,SPECIAL_TRAIT_GOD) ds.AddPlayProcedure(c,COLOR_BLUE,1,1) --return ds.AddActivateMainSkill(c,0,DS_LOCATION_BATTLE,scard.retop,ds.SelfS...
gpl-3.0
TeamHypersomnia/Augmentations
hypersomnia/content/official/gfx/metropolis_torso_pistol_ptm_2.meta.lua
2
2835
return { extra_loadables = { enabled_generate_neon_map = { alpha_multiplier = 0.43000000715255737, amplification = 140, light_colors = { "89 31 168 255", "48 42 88 255", "61 16 123 0" }, radius = { x = 80, y = 80 }, standard_deviati...
agpl-3.0
nasomi/darkstar
scripts/zones/Horlais_Peak/bcnms/dropping_like_flies.lua
19
1705
----------------------------------- -- Area: Horlias peak -- Name: Dropping Like Flies -- BCNM30 ----------------------------------- package.loaded["scripts/zones/Horlais_Peak/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Horlais_Peak/TextIDs"); ----------------------------------- -- EXA...
gpl-3.0
mlem/wesnoth
data/ai/micro_ais/cas/ca_herding_herd_sheep.lua
26
3193
local H = wesnoth.require "lua/helper.lua" local AH = wesnoth.require "ai/lua/ai_helper.lua" local herding_area = wesnoth.require "ai/micro_ais/cas/ca_herding_f_herding_area.lua" local function get_dogs(cfg) local dogs = AH.get_units_with_moves { side = wesnoth.current.side, { "and", cfg.filter } ...
gpl-2.0
nasomi/darkstar
scripts/globals/mobskills/Spirits_Within.lua
18
1737
--------------------------------------------- -- Spirits Within -- -- Description: Delivers an unavoidable attack. Damage varies with HP and TP. -- Type: Magical/Breath -- Ignores shadows and most damage reduction. -- Range: Melee --------------------------------------------- require("scripts/globals/settings"); ...
gpl-3.0
EricssonResearch/scott-eu
simulation-ros/src/turtlebot2i/turtlebot2i_safety/scenarios/turtlebot2i_camera.lua
1
3620
function pointCloud() local header = {seq = 0, stamp = simROS.getTime(), frame_id = robot_id..'/'..sensor_name.."_depth_optical_frame"} local data = {} local height = 160 local width = 120 local fields = {{ name='x', offset=0, datatype= 7, count=1 }, { name='y', offset=4, data...
apache-2.0
nasomi/darkstar
scripts/zones/Port_Bastok/npcs/Otto.lua
17
1152
----------------------------------- -- Area: Port Bastok -- NPC: Otto -- Standard Info NPC -- Involved in Quest: The Siren's Tear -- @zone: 236 -- @pos -145.929 -7.48 -13.701 ----------------------------------- require("scripts/globals/quests"); ----------------------------------- -- onTrade -----------...
gpl-3.0
Hello23-Ygopro/ygopro-ds
expansions/script/c27003034.lua
1
1390
--BT3-032 Son Goku --Work In Progress local ds=require "expansions.utility_dbscg" local scard,sid=ds.GetID() function scard.initial_effect(c) ds.EnableLeaderAttribute(c) ds.AddSetcode(c,CHARACTER_SON_GOKU,SPECIAL_TRAIT_SAIYAN,CHARACTER_INCLUDES_SON_GOKU) --limit energy --not fully implemented: cannot prevent cards ...
gpl-3.0
nasomi/darkstar
scripts/zones/Korroloka_Tunnel/Zone.lua
5
3469
----------------------------------- -- -- Zone: Korroloka_Tunnel (173) -- ----------------------------------- package.loaded["scripts/zones/Korroloka_Tunnel/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/zone"); require("scripts/zones/Korrol...
gpl-3.0
nasomi/darkstar
scripts/zones/Jugner_Forest_[S]/mobs/Decrepit_Gnole.lua
19
1544
----------------------------------- -- Area: Jugner Forest (S) -- NPC: Decrepit Gnole ----------------------------------- ----------------------------------- -- onMobSpawn Action ----------------------------------- function onMobSpawn(mob) mob:setLocalVar("transformTime", os.time()) end; ---------------------------...
gpl-3.0
actboy168/YDWE
Development/Component/plugin/w3x2lni/script/core/slk/frontend_lml.lua
2
2424
local lang = require 'lang' local w2l local wtg local wct local loader local function load_custom() wct.custom = { comment = loader('code.txt') or '', code = loader('code.j') or '', } end local function load_vars() wtg.vars = w2l:parse_lml(loader('variable.lml') or '') end local funct...
gpl-3.0
nasomi/darkstar
scripts/zones/Toraimarai_Canal/TextIDs.lua
9
1157
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6425; -- You cannot obtain the item <item>. Come back after sorting your inventory. ITEM_OBTAINED = 6430; -- Obtained: <item>. GIL_OBTAINED = 6431; -- Obtained <number> gil. KEYITEM_OBTAINED = 6433; -- Obtained...
gpl-3.0
TeamHypersomnia/Augmentations
hypersomnia/content/official/gfx/flower_pink_5.meta.lua
18
2002
return { extra_loadables = { enabled_generate_neon_map = { alpha_multiplier = 1, amplification = 80, light_colors = { "140 57 181 255", "255 74 231 255", "148 33 132 255", "123 49 156 255", "140 57 181 255" }, radius = { x = 80, ...
agpl-3.0
nasomi/darkstar
scripts/zones/Crawlers_Nest/npcs/Grounds_Tome.lua
34
1136
----------------------------------- -- Area: Crawlers Nest -- NPC: Grounds Tome ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/groundsofvalor"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(p...
gpl-3.0
nasomi/darkstar
scripts/zones/Abyssea-Konschtat/npcs/Conflux_Surveyor.lua
32
3671
----------------------------------- -- Zone: Abyssea - Konschtat -- NPC: Conflux Surveyor -- Type: -- @pos 133.000 -72.738 -824.000 15 ----------------------------------- package.loaded["scripts/zones/Abyssea-Konschtat/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings");...
gpl-3.0
nasomi/darkstar
scripts/globals/items/fish_chiefkabob.lua
35
1539
----------------------------------------- -- ID: 4575 -- Item: fish_chiefkabob -- Food Effect: 60Min, All Races ----------------------------------------- -- Dexterity 1 -- Vitality 2 -- Mind 1 -- Charisma 1 -- defense % 26 -- defense Cap 95 ----------------------------------------- require("scripts/global...
gpl-3.0
autismuk/Font-Manager
main_original.lua
1
7428
--- ************************************************************************************************************************************************************************ --- --- Name : main.lua --- Purpose : Simple demo of the bitmap strings. --- Created: 30 April 2014 --- Author: Paul Robson (paul@ro...
mit
TeamHypersomnia/Augmentations
hypersomnia/content/official/gfx/defuse_kit.meta.lua
2
2654
return { extra_loadables = { enabled_generate_neon_map = { alpha_multiplier = 1, amplification = 60, light_colors = { "255 0 0 255", "0 255 255 255" }, radius = { x = 80, y = 80 }, standard_deviation = 6 }, generate_desaturation = f...
agpl-3.0
DevTeam-Co/maximus
libs/dateparser.lua
502
6212
local difftime, time, date = os.difftime, os.time, os.date local format = string.format local tremove, tinsert = table.remove, table.insert local pcall, pairs, ipairs, tostring, tonumber, type, setmetatable = pcall, pairs, ipairs, tostring, tonumber, type, setmetatable local dateparser={} --we shall use the host OS's...
gpl-3.0
nasomi/darkstar
scripts/zones/Northern_San_dOria/npcs/Icoua.lua
34
1083
----------------------------------- -- Area: Northern San d'Oria -- NPC: Icoua -- Type: Standard NPC -- @zone: 231 -- @pos 87.719 -1 9.256 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; -...
gpl-3.0
nasomi/darkstar
scripts/zones/Windurst_Woods/npcs/Wije_Tiren.lua
36
1496
----------------------------------- -- Area: Windurst Woods -- NPC: Wije Tiren -- Standard Merchant NPC -- Confirmed shop stock, August 2013 ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil; require("scripts/zones/Windurst_Woods...
gpl-3.0
nasomi/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Bajahb.lua
34
1274
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Bajahb -- Standard Merchant NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whitegate/TextIDs"); require("...
gpl-3.0
icplus/OP-SDK
package/ramips/ui/luci-mtk/src/applications/luci-statistics/luasrc/statistics/rrdtool/definitions/processes.lua
78
2188
--[[ Luci statistics - processes plugin diagram definition (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net> 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....
gpl-2.0
irboy/000LOGIN000
libs/lua-redis.lua
1
35730
local redis = { _VERSION = 'redis-lua 2.0.4', _DESCRIPTION = 'A Lua client library for the redis key value storage system.', _COPYRIGHT = 'Copyright (C) 2009-2012 Daniele Alessandri', } -- The following line is used for backwards compatibility in order to keep the `Redis` -- global module name. Using...
gpl-3.0
nasomi/darkstar
scripts/globals/items/slice_of_cockatrice_meat.lua
18
1352
----------------------------------------- -- ID: 4435 -- Item: slice_of_cockatrice_meat -- Food Effect: 5Min, Galka only ----------------------------------------- -- Strength 4 -- Intelligence -6 ----------------------------------------- require("scripts/globals/status"); ----------------------------------...
gpl-3.0
nasomi/darkstar
scripts/zones/Lower_Jeuno/npcs/Sniggnix.lua
19
2175
----------------------------------- -- Area: Lower Jeuno -- NPC: Sniggnix -- Type: Standard NPC -- @zone: 245 -- @pos -45.832 4.498 -135.029 -- -- Auto-Script: Requires Verification (Verfied by Brawndo) ----------------------------------- package.loaded["scripts/zones/Lower_Jeuno/TextIDs"] = nil; -----------------...
gpl-3.0
nasomi/darkstar
scripts/globals/mobskills/Dark_mist.lua
17
1114
--------------------------------------------- -- Dark Mist -- Family: Gargouille -- Description: Deals dark damage to an enemy. Additional effect: Weight -- Type: Magical (dark) -- Utsusemi/Blink absorb: Ignores shadows -- Range: Radial -- Notes: Only used when flying -----------------------------------...
gpl-3.0
nasomi/darkstar
scripts/zones/Tavnazian_Safehold/npcs/Mazuro-Oozuro.lua
37
1265
----------------------------------- -- Area: Tavnazian Safehold -- NPC: Mazuro-Oozuro -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Tavnazian_Safehold/TextIDs"] = nil; require("scripts/zones/Tavnazian_Safehold/TextIDs"); ---------...
gpl-3.0
nasomi/darkstar
scripts/globals/items/bowl_of_pea_soup.lua
35
1392
----------------------------------------- -- ID: 4416 -- Item: bowl_of_pea_soup -- Food Effect: 3Hrs, All Races ----------------------------------------- -- Vitality -1 -- Agility 1 -- Ranged Accuracy 5 -- HP Recovered While Healing 3 ----------------------------------------- require("scripts/globals/status...
gpl-3.0
nicholas-leonard/nn
VolumetricDropout.lua
10
1720
local VolumetricDropout, Parent = torch.class('nn.VolumetricDropout', 'nn.Module') function VolumetricDropout:__init(p,stochasticInference) Parent.__init(self) self.p = p or 0.5 self.train = true self.stochastic_inference = stochasticInference or false self.noise = torch.Tensor() end function Volumetri...
bsd-3-clause
kenyh0926/DBProxy
examples/tutorial-query-time.lua
4
1816
--[[ $%BEGINLICENSE%$ Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved. 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; version 2 of the License. This program is dis...
gpl-2.0
nasomi/darkstar
scripts/zones/Southern_San_dOria/npcs/Ullasa.lua
29
1672
----------------------------------- -- Area: Southern San d'Oria -- NPC: Ullasa -- General Info NPC ------------------------------------- package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/quests"...
gpl-3.0
cristiandonosoc/unexperiments
03-Point Of No Return/lib/hardon_collider/shapes.lua
4
11897
--[[ Copyright (c) 2011 Matthias Richter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribu...
mit
nasomi/darkstar
scripts/zones/Temenos/bcnms/Central_Temenos_Basement.lua
19
1139
----------------------------------- -- Area: Temenos -- Name: ----------------------------------- -- After registering the BCNM via bcnmRegister(bcnmid) function onBcnmRegister(player,instance) SetServerVariable("[C_Temenos_Base]UniqueID",GenerateLimbusKey()); HideArmouryCrates(GetInstanceRegion(1301),TEMENOS); ...
gpl-3.0
nasomi/darkstar
scripts/globals/items/plate_of_friture_de_la_misareaux.lua
35
1636
----------------------------------------- -- ID: 5159 -- Item: plate_of_friture_de_la_misareaux -- Food Effect: 240Min, All Races ----------------------------------------- -- Health 3 -- Dexterity 3 -- Vitality 3 -- Mind -3 -- Defense 5 -- Ranged ATT % 7 -- Ranged ATT Cap 15 --------------------------------...
gpl-3.0
icplus/OP-SDK
package/ramips/ui/luci-mtk/src/applications/luci-statistics/luasrc/model/cbi/luci_statistics/iptables.lua
79
3679
--[[ Luci configuration model for statistics - collectd iptables plugin configuration (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net> 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 Lice...
gpl-2.0
nicholas-leonard/nn
LinearWeightNorm.lua
5
4512
local LinearWeightNorm, parent = torch.class('nn.LinearWeightNorm', 'nn.Linear') function LinearWeightNorm:__init(inputSize, outputSize, bias, eps) nn.Module.__init(self) -- Skip nn.Linear constructor local bias = ((bias == nil) and true) or bias self.eps = eps or 1e-16 self.outputSize = outputSize ...
bsd-3-clause
nasomi/darkstar
scripts/zones/Selbina/npcs/HomePoint#1.lua
17
1241
----------------------------------- -- Area: Selbina -- NPC: HomePoint#1 -- @pos 36.117 -10.729 34.635 248 ----------------------------------- package.loaded["scripts/zones/Selbina/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Selbina/TextIDs"); require("scripts/globals/homep...
gpl-3.0
TeamHypersomnia/Augmentations
hypersomnia/content/official/gfx/baka47_shot_6.meta.lua
12
2773
return { extra_loadables = { enabled_generate_neon_map = { alpha_multiplier = 1, amplification = 150, light_colors = { "255 128 0 255", "244 213 156 255", "72 71 71 255" }, radius = { x = 80, y = 80 }, standard_deviation = 6 }, ...
agpl-3.0
nasomi/darkstar
scripts/globals/items/pogaca_+1.lua
35
1250
----------------------------------------- -- ID: 5638 -- Item: pogaca_+1 -- Food Effect: 5Min, All Races ----------------------------------------- -- HP Recovered While Healing 6 -- MP Recovered While Healing 6 ----------------------------------------- require("scripts/globals/status"); -------------------...
gpl-3.0
nasomi/darkstar
scripts/globals/dynamis.lua
6
52644
require("scripts/globals/status"); require("scripts/globals/keyitems"); dynamis = {}; ----------------------------------- -- Dynamis-Bastok ----------------------------------- -- 1: BST Vanguard Beasttender + Vanguard's Scorpion -- 2: WHM Vanguard Constable -- 3: PLD Vanguard Defender -- 4: DRG Vangu...
gpl-3.0
fsherratt/custom_pixhawk
Tools/CHDK-Scripts/kap_uav.lua
96
28513
--[[ KAP UAV Exposure Control Script v3.1 -- Released under GPL by waterwingz and wayback/peabody http://chdk.wikia.com/wiki/KAP_%26_UAV_Exposure_Control_Script @title KAP UAV 3.1 @param i Shot Interval (sec) @default i 15 @range i 2 120 @param s Total Shots (0=infinite) @default s 0 @range ...
gpl-3.0
icplus/OP-SDK
package/ramips/ui/luci-mtk/src/applications/luci-firewall/luasrc/model/cbi/firewall/zone-details.lua
37
6267
--[[ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2010-2011 Jo-Philipp Wich <xm@subsignal.org> 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 htt...
gpl-2.0
luanorlandi/SwiftSpaceBattle
src/file/strings.lua
2
1765
local DEFAULT_LANGUAGE = "en" language = {} require "file/language/cs" require "file/language/da" require "file/language/de" require "file/language/el" require "file/language/en" require "file/language/es" require "file/language/fr" require "file/language/hu" require "file/language/id" require "file/langua...
gpl-3.0
luanorlandi/SwiftSpaceBattle
src/input/input.lua
2
1042
require "input/keyboard" require "input/mouse" require "input/touch" Input = {} Input.__index = Input function Input:new() I = {} setmetatable(I, Input) I.keyboard = false I.mouse = false I.touch = false I.up = false I.down = false I.left = false I.right = false I.space = false I.cancel = false I.p...
gpl-3.0
ZuoGuocai/Atlas
lib/proxy/auto-config.lua
44
6670
--[[ $%BEGINLICENSE%$ Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved. 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; version 2 of the License. This program is dis...
gpl-2.0
nasomi/darkstar
scripts/zones/Port_Bastok/npcs/Vattian.lua
36
1487
----------------------------------- -- Area: Port Bastok -- NPC: Vattian -- Only sells when Bastok controlls Kuzotz Region -- Confirmed shop stock, August 2013 ----------------------------------- require("scripts/globals/shop"); require("scripts/globals/conquest"); package.loaded["scripts/zones/Port_Bastok/Te...
gpl-3.0
minaevmike/rspamd
src/plugins/lua/hfilter.lua
1
16377
--[[ Copyright (c) 2011-2016, Vsevolod Stakhov <vsevolod@highsecure.ru> Copyright (c) 2013-2015, Alexey Savelyev <info@homeweb.ru> 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.apa...
apache-2.0
nasomi/darkstar
scripts/globals/items/gurnard.lua
18
1256
----------------------------------------- -- ID: 5132 -- Item: Gurnard -- Food Effect: 5Min, Mithra only ----------------------------------------- -- Dexterity 2 -- Mind -4 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck -----------...
gpl-3.0
nasomi/darkstar
scripts/zones/Gusgen_Mines/npcs/_5gb.lua
34
1345
----------------------------------- -- Area: Gusgen Mines -- NPC: _5gb (Lever B) -- @pos 19.999 -40.561 -54.198 196 ----------------------------------- package.loaded["scripts/zones/Gusgen_Mines/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Gusgen_Mines/TextIDs"); ------------...
gpl-3.0
Etehadmarg/margbot
plugins/xkcd.lua
628
1374
do function get_last_id() local res,code = https.request("http://xkcd.com/info.0.json") if code ~= 200 then return "HTTP ERROR" end local data = json:decode(res) return data.num end function get_xkcd(id) local res,code = http.request("http://xkcd.com/"..id.."/info.0.json") if code ~= 200 then return "HT...
gpl-2.0
icplus/OP-SDK
package/ramips/ui/luci-mtk/src/applications/luci-asterisk/luasrc/model/cbi/asterisk-mod-func.lua
80
1208
--[[ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> 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 h...
gpl-2.0
Samanj5/spam-is-alive
plugins/xkcd.lua
628
1374
do function get_last_id() local res,code = https.request("http://xkcd.com/info.0.json") if code ~= 200 then return "HTTP ERROR" end local data = json:decode(res) return data.num end function get_xkcd(id) local res,code = http.request("http://xkcd.com/"..id.."/info.0.json") if code ~= 200 then return "HT...
gpl-2.0
Hello23-Ygopro/ygopro-ds
expansions/script/c2700065.lua
1
1145
--P-044 Full Power Son Goku local ds=require "expansions.utility_dbscg" local scard,sid=ds.GetID() function scard.initial_effect(c) ds.EnableLeaderAttribute(c) ds.AddSetcode(c,CHARACTER_SON_GOKU,SPECIAL_TRAIT_SAIYAN,CHARACTER_INCLUDES_SON_GOKU) --draw ds.AddSingleAutoAttack(c,0,nil,ds.hinttg,ds.DrawOperation(PLAYER...
gpl-3.0
nasomi/darkstar
scripts/zones/Windurst_Woods/npcs/Kopuro-Popuro.lua
19
6253
----------------------------------- -- Area: Windurst Woods -- NPC: Kopuro-Popuro -- Type: Standard NPC -- @zone: 241 -- @pos -0.037 -4.749 -22.589 -- Starts Quests: The All-New C-2000, Legendary Plan B, The All-New C-3000 -- Involved in quests: Lost Chick ----------------------------------- require("scripts/glob...
gpl-3.0
renyaoxiang/QSanguosha-For-Hegemony
lang/zh_CN/Package/MomentumPackage.lua
2
8897
--[[******************************************************************** Copyright (c) 2013-2015 Mogara This file is part of QSanguosha-Hegemony. This game 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...
gpl-3.0
actboy168/YDWE
Development/Component/plugin/w3x2lni/script/core/slk/frontend_slk.lua
2
8887
local w3xparser = require 'w3xparser' local lang = require 'lang' local math_floor = math.floor local pairs = pairs local ipairs = ipairs local tostring = tostring local wtonumber = w3xparser.tonumber local next = next local type = type local table_concat = table.concat local string_lower = string.lower local w2l loc...
gpl-3.0
nasomi/darkstar
scripts/zones/Quicksand_Caves/npcs/_5s6.lua
17
1275
----------------------------------- -- Area: Quicksand Caves -- NPC: Ornate Door -- Door blocked by Weight system -- @pos -825 0 -379 208 ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Quicksand_Cav...
gpl-3.0
appaquet/torch-android
src/3rdparty/nnx/DataSetSamplingPascal.lua
6
21393
-------------------------------------------------------------------------------- -- DataSetSamplingPascal: A class to handle datasets from LabelMe (and other segmentation -- based datasets). -- -- Provides lots of options to cache (on disk) datasets, precompute -- segmentation masks, shuffle samples, ex...
bsd-3-clause
nasomi/darkstar
scripts/zones/Spire_of_Dem/Zone.lua
38
1273
----------------------------------- -- -- Zone: Spire_of_Dem (19) -- ----------------------------------- package.loaded["scripts/zones/Spire_of_Dem/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Spire_of_Dem/TextIDs"); ---------------------------------...
gpl-3.0
nasomi/darkstar
scripts/globals/items/roast_turkey.lua
35
1197
----------------------------------------- -- ID: 5620 -- Item: roast_turkey -- Food Effect: 240Min, All Races ----------------------------------------- -- Strength 4 -- Vitality 4 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnIt...
gpl-3.0