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
gedads/Neodynamis
scripts/zones/Quicksand_Caves/npcs/qm2.lua
3
1323
----------------------------------- -- Area: Quicksand Caves -- NPC: qm2 -- Notes: Used to spawn Tribunus VII-I -- !pos -49.944 -0.891 -139.485 208 ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Quicksand_...
gpl-3.0
soccermitchy/heroku-lapis
opt/src/openresty/bundle/LuaJIT-2.1-20150223/src/jit/v.lua
78
5755
---------------------------------------------------------------------------- -- Verbose mode of the LuaJIT compiler. -- -- Copyright (C) 2005-2015 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h -------------------------------------------------------------------------...
gpl-2.0
starlightknight/darkstar
scripts/zones/Windurst_Waters/npcs/Gantineux.lua
11
2047
----------------------------------- -- Area: Windurst Waters -- NPC: Gantineux -- Starts Quest: Acting in Good Faith -- !pos -83 -9 3 238 ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems"); require("scripts/globals/shop"); require("scripts/globals/quests"); loc...
gpl-3.0
gedads/Neodynamis
scripts/zones/North_Gustaberg/MobIDs.lua
5
1433
----------------------------------- -- Area: North Gustaberg -- Comments: -- posX, posY, posZ --(Taken from 'mob_spawn_points' table) ----------------------------------- -- Stinging Sophie Stinging_Sophie = 17211561; Stinging_Sophie_PH = { [17211532] = '1', -- 352.974, -40.359, 472.914 [17211534] = '1', -- 353...
gpl-3.0
gedads/Neodynamis
scripts/zones/Xarcabard/npcs/Perennial_Snow.lua
3
1666
----------------------------------- -- Area: Xarcabard -- NPC: Perennial Snow -- Involved in Quests: The Circle of Time -- !pos 339 0 -379 112 ----------------------------------- package.loaded["scripts/zones/Xarcabard/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); require("sc...
gpl-3.0
starlightknight/darkstar
scripts/globals/weaponskills/cloudsplitter.lua
10
1577
----------------------------------- -- Cloudsplitter -- Axe weapon skill -- Skill level: NA -- Description: Deals lightning elemental damage. Damage varies with TP. Farsha: Aftermath. -- Available only when equipped with Farsha (85), Farsha (90) or Alard's Axe +1. -- Elemental gorgets do not affect damage. Rairin Obi i...
gpl-3.0
starlightknight/darkstar
scripts/zones/Bhaflau_Thickets/npcs/_1g2.lua
9
2951
----------------------------------- -- Area: Bhaflau Thickets -- Door: Runic Seal -- !pos -180 -6.8 -833 52 ----------------------------------- require("scripts/globals/keyitems") require("scripts/globals/missions") require("scripts/globals/besieged") local ID = require("scripts/zones/Bhaflau_Thickets/IDs") -----------...
gpl-3.0
jackkkk21/botjack
bot/creedbot.lua
1
15480
package.path = package.path .. ';.luarocks/share/lua/5.2/?.lua' ..';.luarocks/share/lua/5.2/?/init.lua' package.cpath = package.cpath .. ';.luarocks/lib/lua/5.2/?.so' require("./bot/utils") VERSION = '1.0' -- This function is called when tg receive a msg function on_msg_receive (msg) if not started then retu...
gpl-2.0
gedads/Neodynamis
scripts/zones/Buburimu_Peninsula/npcs/Lobho_Ukipturi.lua
3
1764
----------------------------------- -- Area: Buburimu Peninsula -- NPC: Lobho Ukipturi -- !pos -485 -31 50 118 ----------------------------------- package.loaded["scripts/zones/Buburimu_Peninsula/TextIDs"] = nil; ----------------------------------- require("scripts/globals/shop"); require("scripts/globals/conquest");...
gpl-3.0
Ealdwulf/ProcessorGame
src/game/issue.lua
1
2282
--[[ issue.lua Copyright (C) 2016 Alex Burr. License: http://www.gnu.org/licenses/gpl-2.0.txt GNU GPLv2 ]]-- local Sounds = require "system.sounds" local Layout = require 'system.layout' local Machine = require 'game.machine' local Issue ={} Issue.__index = Issue setmetatable(Issue, {__index = Machine}) local g = l...
gpl-2.0
gedads/Neodynamis
scripts/globals/items/spicy_cracker.lua
12
1337
----------------------------------------- -- ID: 4466 -- Item: spicy_cracker -- Food Effect: 3Min, All Races ----------------------------------------- -- HP Recovered While Healing 7 -- Beast Killer +10 -- Resist Sleep +10 ----------------------------------------- require("scripts/globals/status"); ------------------...
gpl-3.0
pravsingh/Algorithm-Implementations
Bogobogosort/Lua/Yonaba/bogobogosort_test.lua
27
1996
-- Tests for bogobogosort.lua local bogobogosort = require 'bogobogosort' local total, pass = 0, 0 local function dec(str, len) return #str < len and str .. (('.'):rep(len-#str)) or str:sub(1,len) end local function run(message, f) total = total + 1 local ok, err = pcall(f) if ok then pass = pass + 1 end...
mit
pravsingh/Algorithm-Implementations
Sudoku/Lua/Yonaba/sudoku.lua
26
2101
-- Sudoku solver implementation -- Uses Backtracking and recursion -- See : http://en.wikipedia.org/wiki/Sudoku -- Checks if num exists on a row local function rowHasNotNum(sudoku, row, num) for column = 1,9 do if sudoku[row][column] == num then return false end end return true end -- Checks if nu...
mit
starlightknight/darkstar
scripts/globals/items/galkan_sausage.lua
11
1886
----------------------------------------- -- ID: 4395 -- Item: galkan_sausage -- Food Effect: 30Min, All Races ----------------------------------------- -- Multi-Race Effects -- Galka -- Strength 3 -- Intelligence -1 -- Attack % 25 -- Attack Cap 30 -- Ranged ATT % 25 -- Ranged ATT Cap 30 -- -- Other -- Strength 3 -- In...
gpl-3.0
ironjade/DevStack
LanCom/DesignPattern/LUA/DepthFirstBranchAndBoundSolver.lua
1
1220
#!/usr/local/bin/lua --[[ Copyright (c) 2004 by Bruno R. Preiss, P.Eng. $Author: brpreiss $ $Date: 2004/12/05 14:47:20 $ $RCSfile: DepthFirstBranchAndBoundSolver.lua,v $ $Revision: 1.2 $ $Id: DepthFirstBranchAndBoundSolver.lua,v 1.2 2004/12/05 14:47:20 brpreiss Exp $ --]] require "Solver" ...
apache-2.0
gedads/Neodynamis
scripts/globals/items/persikos.lua
12
1182
----------------------------------------- -- ID: 4274 -- Item: persikos -- Food Effect: 5Min, All Races ----------------------------------------- -- Agility -7 -- Intelligence 5 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck ------...
gpl-3.0
gedads/Neodynamis
scripts/globals/excavation.lua
18
5208
------------------------------------------------- -- Excavation functions -- Info from: -- http://wiki.ffxiclopedia.org/wiki/Excavation ------------------------------------------------- require("scripts/globals/keyitems"); require("scripts/globals/quests"); require("scripts/globals/settings"); --------------...
gpl-3.0
starlightknight/darkstar
scripts/zones/Nyzul_Isle/mobs/Imperial_Gear.lua
9
1482
----------------------------------- -- Area: Nyzul Isle (Path of Darkness) -- Mob: Imperial Gear ----------------------------------- local ID = require("scripts/zones/Nyzul_Isle/IDs") require("scripts/globals/status"); ----------------------------------- function onMobSpawn(mob) local instance = mob:getInstance()...
gpl-3.0
groupforspeed/telespeed
bot/nod32bot.lua
1
11313
package.path = package.path .. ';.luarocks/share/lua/5.2/?.lua' ..';.luarocks/share/lua/5.2/?/init.lua' package.cpath = package.cpath .. ';.luarocks/lib/lua/5.2/?.so' require("./bot/utils") VERSION = '2' -- This function is called when tg receive a msg function on_msg_receive (msg) if not started then return...
gpl-2.0
pedro-andrade-inpe/terrame
ide/zerobrane/terrame-examples/publish/arapiuns/09-arapiuns-trajectory.lua
3
1106
--[[ [previous](08-arapiuns-icon.lua) | [contents](../00-contents.lua) | [next](10-arapiuns-report.lua) The route on the Arapiuns river can be added as a View. When adding trajectories, the final application shows a moving arrow in the trajectory. This View has arguments to describe the color of the trajectory, its wi...
lgpl-3.0
starlightknight/darkstar
scripts/zones/Tavnazian_Safehold/npcs/Justinius.lua
9
1569
----------------------------------- -- Area: Tavnazian Safehold -- NPC: Justinius -- Involved in mission : COP2-3 -- !pos 76 -34 68 26 ----------------------------------- require("scripts/globals/titles"); require("scripts/globals/missions"); ----------------------------------- function onTrade(player,npc,trade) end;...
gpl-3.0
gedads/Neodynamis
scripts/globals/spells/temper.lua
5
1132
----------------------------------------- -- -- Spell: Temper -- ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); require("scripts/globals/msg"); ----------------------------------------- function onMagicCastingCheck(caster,target,spell) return 0; end; ...
gpl-3.0
gedads/Neodynamis
scripts/globals/items/serving_of_zaru_soba.lua
12
1394
----------------------------------------- -- ID: 5727 -- Item: serving_of_zaru_soba -- Food Effect: 30Min?, All Races ----------------------------------------- -- Agility 3 -- HP % 12 (cap 180) -- Resist Sleep +5 ----------------------------------------- require("scripts/globals/status"); ----------------------------...
gpl-3.0
starlightknight/darkstar
scripts/globals/abilities/gallants_roll.lua
12
2895
----------------------------------- -- Ability: Gallant's Roll -- Reduces physical damage taken by party members within area of effect -- Optimal Job: Paladin -- Lucky Number: 3 -- Unlucky Number: 7 -- Level: 55 -- Phantom Roll +1 Value: 2.34 -- -- Die Roll |No PLD |With PLD -- -------- ------- ----------- -- 1...
gpl-3.0
gedads/Neodynamis
scripts/zones/PsoXja/npcs/_i99.lua
17
3621
----------------------------------- -- Area: Pso'Xja -- NPC: Stone Gate ----------------------------------- package.loaded["scripts/zones/PsoXja/TextIDs"] = nil; ----------------------------------- require("scripts/globals/missions"); require("scripts/zones/PsoXja/TextIDs"); require("scripts/globals/keyitems"); ----...
gpl-3.0
yaukeywang/2DPlatformer-SLua
Assets/StreamingAssets/Lua/Logic/LgPlayerControl.lua
3
7233
-- -- Player control class. -- -- @filename LgPlayerControl.lua -- @copyright Copyright (c) 2015 Yaukey/yaukeywang/WangYaoqi (yaukeywang@gmail.com) all rights reserved. -- @license The MIT License (MIT) -- @author Yaukey -- @date 2015-09-07 -- local DLog = YwDebug.Log local DLogWarn = YwDebug.LogWarning loc...
mit
gedads/Neodynamis
scripts/globals/weaponskills/coronach.lua
3
2009
----------------------------------- -- Coronach -- Skill Level: N/A -- Description: Additional effect: temporarily lowers enmity. -- Lowers Enmity for a certain amount of time. (Enmity -20) -- Regardless of the damage, Coronach hate is only 80CE / 240 VE (Enmity- effect included). -- This weapon skill is only available...
gpl-3.0
gedads/Neodynamis
scripts/zones/Waughroon_Shrine/bcnms/hills_are_alive.lua
30
1818
----------------------------------- -- Area: Waughroon_Shrine -- Name: Hills are Alive -- KSNM99 ----------------------------------- package.loaded["scripts/zones/Waughroon_Shrine/TextIDs"] = nil; ----------------------------------- require("scripts/globals/titles"); require("scripts/globals/quests"); require("scripts...
gpl-3.0
gedads/Neodynamis
scripts/globals/mobskills/binary_tap.lua
3
1720
--------------------------------------------- -- Binary Tap -- Attempts to absorb two buffs from a single target, or otherwise steals HP. -- Type: Magical -- Utsusemi/Blink absorb: Ignores Shadows -- Range: Melee -- Notes: Can be any (positive) buff, including food. Will drain about 100HP if it can't take any buffs ---...
gpl-3.0
laino/luakit
config/modes.lua
15
5034
------------------------------- -- luakit mode configuration -- ------------------------------- -- Table of modes and their callback hooks local modes = {} local lousy = require "lousy" local join = lousy.util.table.join local order = 0 -- Add new mode table (optionally merges with original mode) function new_mode(na...
gpl-3.0
Craige/prosody-modules
mod_post_msg/mod_post_msg.lua
32
2623
module:depends"http" local jid_split = require "util.jid".split; local jid_prep = require "util.jid".prep; local msg = require "util.stanza".message; local test_password = require "core.usermanager".test_password; local b64_decode = require "util.encodings".base64.decode; local formdecode = require "net.http".formdeco...
mit
starlightknight/darkstar
scripts/zones/Waughroon_Shrine/bcnms/worms_turn.lua
9
1066
----------------------------------- -- The Worm's Turn -- Waughroon Shrine BCNM40, Star Orb -- !additem 1131 ----------------------------------- require("scripts/globals/battlefield") ----------------------------------- function onBattlefieldInitialise(battlefield) battlefield:setLocalVar("loot", 1) end function ...
gpl-3.0
gedads/Neodynamis
scripts/globals/items/dish_of_spaghetti_boscaiola_+1.lua
12
1814
----------------------------------------- -- ID: 5201 -- Item: dish_of_spaghetti_boscaiola_+1 -- Food Effect: 30Min, All Races ----------------------------------------- -- Health % 18 -- Health Cap 130 -- Magic 40 -- Strength -5 -- Dexterity -2 -- Vitality 2 -- Mind 4 -- Store TP +6 -- Magic Regen While Healing 1 -----...
gpl-3.0
sbyrnes321/S4
examples/MPI_example/mpi_simple.lua
14
1769
-- In a 1D pattern, the pattern should be specified only with rectangles. -- The y-dimension of the rectangles is ignored. S = S4.NewSimulation() S:SetLattice({1,0}, {0,0}) -- 1D lattice S:SetNumG(27) -- Material definition S:AddMaterial("Silicon", {12,0}) -- real and imag parts S:AddMaterial("Vacuum", {1,0}...
gpl-2.0
hades2013/openwrt-mtk
package/ralink/ui/luci-mtk/src/applications/luci-diag-devinfo/luasrc/controller/luci_diag/luci_diag_devinfo.lua
76
2144
--[[ Luci diag - Diagnostics controller module (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 ]]-- module("luci.cont...
gpl-2.0
gedads/Neodynamis
scripts/zones/Northern_San_dOria/npcs/Phaviane.lua
3
1037
----------------------------------- -- Area: Northern San d'Oria -- NPC: Phaviane -- Type: Standard Dialogue NPC -- @zone 231 -- !pos -4.000 0.000 -28.000 -- ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; require("scripts/zones/Northern_San_dOria/TextIDs"); -...
gpl-3.0
starlightknight/darkstar
scripts/globals/abilities/pets/attachments/target_marker.lua
11
2742
----------------------------------- -- Attachment: Target Marker ----------------------------------- require("scripts/globals/status") ----------------------------------- function onEquip(pet) pet:addListener("ENGAGE", "AUTO_TARGETMARKER_ENGAGE", function(pet, target) local ignored = pet:getLocalVar("targe...
gpl-3.0
gedads/Neodynamis
scripts/globals/abilities/chakra.lua
11
1820
----------------------------------- -- Ability: Chakra -- Cures certain status effects and restores a small amount of HP to user. -- Obtained: Monk Level 35 -- Recast Time: 5:00 -- Duration: Instant ----------------------------------- require("scripts/globals/status"); ----------------------------------- -- onAbility...
gpl-3.0
JensRoggeband/gloomy-helium
conf.lua
1
2777
_config = {} function love.conf(t) t.identity = nil -- The name of the save directory (string) t.version = "0.9.1" -- The LÖVE version this game was made for (string) t.console = false -- Attach a console (boolean, Windows only) t.window.title = "Gloom...
mit
jakimfett/gravestones
control.lua
1
1175
require "util" require "config" --[[ Made by Hazzard & BiG_MEECH ]]-- -- GPLv2 -- script.on_event(defines.events.on_entity_died, function(event) local entity = event.entity if entity.type ~= "player" then return end local pos = entity.surface.find_non_colliding_position( "gravestone", entity.pos...
gpl-2.0
pedro-andrade-inpe/terrame
packages/base/tests/functional/alternative/File.lua
3
7222
------------------------------------------------------------------------------------------- -- TerraME - a software platform for multiple scale spatially-explicit dynamic modeling. -- Copyright (C) 2001-2017 INPE and TerraLAB/UFOP -- www.terrame.org -- This code is part of the TerraME framework. -- This framework is f...
lgpl-3.0
gedads/Neodynamis
scripts/zones/Inner_Horutoto_Ruins/npcs/_5cd.lua
3
1053
----------------------------------- -- Area: Inner Horutoto Ruins -- NPC: _5cd (Gate of Water) -- !pos -228 0 140 192 ----------------------------------- package.loaded["scripts/zones/Inner_Horutoto_Ruins/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Inner_Horutoto_Ruins/TextIDs"); ----...
gpl-3.0
gedads/Neodynamis
scripts/globals/mobskills/necrobane.lua
43
1075
--------------------------------------------- -- Necrobane --------------------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/monstertpmoves"); --------------------------------------------- function onMobSkillCheck(target,mob,skill) if(mob:g...
gpl-3.0
gedads/Neodynamis
scripts/zones/Castle_Oztroja/npcs/_47l.lua
3
1579
----------------------------------- -- Area: Castle Oztroja -- NPC: _47l (Torch Stand) -- Notes: Opens door _471 near password #3 -- !pos -45.228 -17.832 22.392 151 ----------------------------------- package.loaded["scripts/zones/Castle_Oztroja/TextIDs"] = nil; ----------------------------------- require("scripts/...
gpl-3.0
starlightknight/darkstar
scripts/globals/weaponskills/red_lotus_blade.lua
10
1310
----------------------------------- -- Red Lotus Blade -- Sword weapon skill -- Skill Level: 50 -- Deals fire elemental damage to enemy. Damage varies with TP. -- Aligned with the Flame Gorget & Breeze Gorget. -- Aligned with the Flame Belt & Breeze Belt. -- Element: Fire -- Modifiers: STR:40% INT:40% -- 100%TP 200...
gpl-3.0
Tihooteam/Gi
tg/tdcli.lua
102
88571
--[[ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be use...
gpl-3.0
etienne-gauvin/invaders
pilot.lua
1
1161
local Pilot = Object:subclass('Pilot') -- Classe (abstraite) contrôlant un vaisseau -- Humain/IA function Pilot:initialize(ship) self.ship = ship or false self.controls = { fire_main = false, fire_secondary = false, dir_up = false, dir_down = false, dir_right = false, dir_left = fal...
mit
gedads/Neodynamis
scripts/zones/Windurst_Woods/npcs/Abby_Jalunshi.lua
3
1055
----------------------------------- -- Area: Windurst Woods -- NPC: Abby Jalunshi -- Type: Moghouse Renter -- @zone 241 -- !pos -101.895 -5 36.172 -- -- Auto-Script: Requires Verification (Verfied By Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil; ---------...
gpl-3.0
gedads/Neodynamis
scripts/zones/Northern_San_dOria/npcs/Esqualea.lua
17
1452
----------------------------------- -- Area: Northern San d'Oria -- NPC: Esqualea -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Northern_San_dOria/TextIDs"); require("scripts/globals/...
gpl-3.0
dimitarcl/premake-dev
tests/actions/vstudio/cs2005/test_files.lua
2
6645
-- -- tests/actions/vstudio/cs2005/test_files.lua -- Validate generation of <Files/> block in Visual Studio 2005 .csproj -- Copyright (c) 2009-2012 Jason Perkins and the Premake project -- T.vstudio_cs2005_files = { } local suite = T.vstudio_cs2005_files local cs2005 = premake.vstudio.cs2005 -- -- Setup -- loca...
bsd-3-clause
gedads/Neodynamis
scripts/globals/items/hallowed_sword.lua
5
1221
----------------------------------------- -- ID: 16550 -- Hallowed Sword -- Additional Effect: Light Damage -- Enchantment: "Enlight" ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); require("scripts/globals/msg"); ----------------------------------- functi...
gpl-3.0
gedads/Neodynamis
scripts/zones/Promyvion-Dem/Zone.lua
2
2715
----------------------------------- -- -- Zone: Promyvion-Dem (18) -- ----------------------------------- package.loaded["scripts/zones/Promyvion-Dem/TextIDs"] = nil; package.loaded["scripts/zones/Promyvion-Dem/MobIDs"] = nil; ----------------------------------- require("scripts/zones/Promyvion-Dem/TextIDs"); require("...
gpl-3.0
gedads/Neodynamis
scripts/zones/Gusgen_Mines/npcs/Clay.lua
3
1229
----------------------------------- -- Area: Gusgen Mines -- NPC: Clay -- Involved in Quest: A Potter's Preference -- !pos 117 -21 432 196 ----------------------------------- package.loaded["scripts/zones/Gusgen_Mines/TextIDs"] = nil; ----------------------------------- require("scripts/globals/titles"); require("scr...
gpl-3.0
gedads/Neodynamis
scripts/zones/Dynamis-Xarcabard/mobs/Duke_Scox.lua
23
1566
----------------------------------- -- Area: Dynamis Xarcabard -- MOB: Duke Scox ----------------------------------- require("scripts/globals/dynamis"); require("scripts/zones/Dynamis-Xarcabard/TextIDs"); ----------------------------------- -- onMobEngaged ----------------------------------- function onMobEngaged(m...
gpl-3.0
gedads/Neodynamis
scripts/zones/Quicksand_Caves/npcs/_5s3.lua
3
1269
----------------------------------- -- Area: Quicksand Caves -- NPC: Ornate Door -- Door blocked by Weight system -- !pos -694 0 -420 208 ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Quicksand_Caves/TextID...
gpl-3.0
gedads/Neodynamis
scripts/globals/spells/bluemagic/cocoon.lua
5
1215
----------------------------------------- -- Spell: Cocoon -- Enhances defense -- Spell cost: 10 MP -- Monster Type: Vermin -- Spell Type: Magical (Earth) -- Blue Magic Points: 1 -- Stat Bonus: VIT+3 -- Level: 8 -- Casting Time: 1.75 seconds -- Recast Time: 60 seconds -- Duration: 90 seconds -- -- Combos: None --------...
gpl-3.0
gedads/Neodynamis
scripts/zones/Quicksand_Caves/npcs/_5s1.lua
3
1265
----------------------------------- -- Area: Quicksand Caves -- NPC: Ornate Door -- Door blocked by Weight system -- !pos 21 0 -180 208 ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Quicksand_Caves/TextIDs"...
gpl-3.0
starlightknight/darkstar
scripts/globals/spells/learned_etude.lua
12
1843
----------------------------------------- -- Spell: Learned Etude -- Static INT Boost, BRD 26 ----------------------------------------- require("scripts/globals/status") require("scripts/globals/magic") require("scripts/globals/msg") ----------------------------------------- function onMagicCastingCheck(caster,target,...
gpl-3.0
gedads/Neodynamis
scripts/globals/items/steamed_crab.lua
12
1289
----------------------------------------- -- ID: 4342 -- Item: steamed_crab -- Food Effect: 60Min, All Races ----------------------------------------- -- Vitality 3 -- Defense % 27 (cap 65) ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItem...
gpl-3.0
starius/mxedeb
mxedeb.lua
1
10692
#!/usr/bin/env lua -- This file is part of MXE. -- See index.html for further information. -- mxedeb, Build DEB packages from MXE packages -- Instructions: http://mxe.redjohn.tk -- Requirements: MXE, lua, tsort, fakeroot, dpkg-deb. -- Usage: lua tools/build-pkg.lua -- Packages are written to `*.tar.xz` files. -- Deb...
mit
starlightknight/darkstar
scripts/globals/weaponskills/swift_blade.lua
10
1428
----------------------------------- -- Swift Blade -- Sword weapon skill -- Skill Level: 225 -- Delivers a three-hit attack. params.accuracy varies with TP. -- Will stack with Sneak Attack. -- Aligned with the Shadow Gorget & Soil Gorget. -- Aligned with the Shadow Belt & Soil Belt. -- Element: None -- Modifiers: STR:5...
gpl-3.0
starlightknight/darkstar
scripts/zones/West_Ronfaure/npcs/Palcomondau.lua
9
12838
----------------------------------- -- Area: West Ronfaure -- NPC: Palcomondau -- Type: Patrol -- !pos -349.796 -45.345 344.733 100 ----------------------------------- local ID = require("scripts/zones/West_Ronfaure/IDs") require("scripts/globals/pathfind") ----------------------------------- local path = { -373....
gpl-3.0
starlightknight/darkstar
scripts/zones/Lebros_Cavern/instances/wamoura_farm_raid.lua
12
3455
----------------------------------- -- -- Assault: Wamoura Farm Raid -- ----------------------------------- local ID = require("scripts/zones/Lebros_Cavern/IDs") ----------------------------------- function afterInstanceRegister(player) local instance = player:getInstance(); player:messageSpecial(ID.text.ASSAU...
gpl-3.0
starlightknight/darkstar
scripts/globals/items/dish_of_spaghetti_arrabbiata.lua
11
1755
----------------------------------------- -- ID: 5211 -- Item: dish_of_spaghetti_arrabbiata -- Food Effect: 30Min, All Races ----------------------------------------- -- HP +17% (cap 140) -- Strength +5 -- Vitality +2 -- Intelligence -7 -- Attack +22% (cap 90) -- Ranged Attack +22% (cap 90) -- Store TP +6 -- Sleep resi...
gpl-3.0
starlightknight/darkstar
scripts/zones/Norg/npcs/_700.lua
9
2624
----------------------------------- -- Area: Norg -- NPC: Oaken door (Gilgamesh's room) -- !pos 97 -7 -12 252 ----------------------------------- require("scripts/globals/missions"); require("scripts/globals/settings"); ----------------------------------- function onTrade(player,npc,trade) end; function onTrigger(pl...
gpl-3.0
gedads/Neodynamis
scripts/zones/Promyvion-Holla/mobs/Memory_Receptacle.lua
2
2392
----------------------------------- -- Area: Promyvion-Holla -- MOB: Memory Receptacle ----------------------------------- package.loaded["scripts/zones/Promyvion-Holla/TextIDs"] = nil; package.loaded["scripts/zones/Promyvion-Holla/MobIDs"] = nil; ----------------------------------- require("scripts/zones/Promyvion-Ho...
gpl-3.0
gedads/Neodynamis
scripts/zones/Cloister_of_Storms/mobs/Ramuh_Prime.lua
23
2201
----------------------------------- -- Area: Cloister of Storms -- MOB: Ramuh Prime -- Involved in Quest: Trial by Lightning -- Involved in Mission: ASA-4 Sugar Coated Directive ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems"); require("scripts/globals/status...
gpl-3.0
gedads/Neodynamis
scripts/zones/Aht_Urhgan_Whitegate/npcs/Hagakoff.lua
17
2103
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Hagakoff -- Standard Merchant NPC -- Partitionally Implemented -- Difficult Shop Script needed ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("s...
gpl-3.0
gedads/Neodynamis
scripts/zones/Northern_San_dOria/npcs/Morjean.lua
3
1782
----------------------------------- -- Area: Northern San d'Oria -- NPC: Morjean -- Involved in Quest: A Squire's Test II (Optional), The Holy Crest -- !pos 99 0 116 231 ------------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require(...
gpl-3.0
gedads/Neodynamis
scripts/globals/items/mihgo_mithkabob.lua
12
1690
----------------------------------------- -- ID: 5708 -- Item: Mihgo Mithkabob -- Food Effect: 4 Hrs, All Races ----------------------------------------- -- Dexterity 5 -- Vitality 2 -- Mind -2 -- Accuracy +50 -- Ranged Accuracy +50 -- Evasion +5 -- Defense % 25 (cap 95) ----------------------------------------- requi...
gpl-3.0
taschemann/kq-lives
scripts/guild.lua
2
8872
-- guild - "Home of the Embers in Sunarin" -- /* -- P_GUILDSECRET - Have we discovered the secret passage into the Embers' base? -- (0) Not found it -- (1) Found it and it's open -- (2) Found it, gone through, and it's shut again (it will reopen as we approach) -- P_FOUGHTGUILD - Have we fought the bandits for th...
gpl-2.0
Guard13007/GIFS
src/gifs.lua
1
2701
-- Guard13007 Industries File System local tree = {} --TODO determine how to build master tree local function getPath(path) local result = tree path = path:gsub("\\", "/") local current = 1 local next = path:find("/", current) if current == next then current = 2 end if not next ...
mit
p00ria/RedStorm
plugins/commands.lua
31
2957
-------------------------------------------------- -- ____ ____ _____ -- -- | \| _ )_ _|___ ____ __ __ -- -- | |_ ) _ \ | |/ ·__| _ \_| \/ | -- -- |____/|____/ |_|\____/\_____|_/\/\_| -- -- -- --------------...
gpl-2.0
gedads/Neodynamis
scripts/globals/mobs.lua
22
1782
----------------------------------- -- Global version of onMobDeath ----------------------------------- package.loaded["scripts/globals/conquest"] = nil; ----------------------------------- require("scripts/globals/conquest"); require("scripts/globals/missions"); require("scripts/globals/quests"); require("scripts/glob...
gpl-3.0
telergybot/infernalmann
plugins/all.lua
28
4675
do data = load_data(_config.moderation.data) local function get_msgs_user_chat(user_id, chat_id) local user_info = {} local uhash = 'user:'..user_id local user = redis:hgetall(uhash) local um_hash = 'msgs:'..user_id..':'..chat_id user_info.msgs = tonumber(redis:get(um_hash) or 0) user_info.name = user_print...
gpl-2.0
gedads/Neodynamis
scripts/zones/Qulun_Dome/TextIDs.lua
3
1409
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6380; -- You cannot obtain the item <item> come back again after sorting your inventory ITEM_OBTAINED = 6386; -- Obtained: <item> GIL_OBTAINED = 6387; -- Obtained <number> gil KEYITEM_OBTAINED = 6389; -- Obtain...
gpl-3.0
starlightknight/darkstar
scripts/globals/spells/bewitching_etude.lua
12
1616
----------------------------------------- -- Spell: Bewitching Etude -- Static CHR Boost, BRD 62 ----------------------------------------- require("scripts/globals/status") require("scripts/globals/magic") require("scripts/globals/msg") ----------------------------------------- function onMagicCastingCheck(caster,targ...
gpl-3.0
starlightknight/darkstar
scripts/globals/items/sleep_arrow.lua
12
1176
----------------------------------------- -- ID: 18158 -- Item: Sleep Arrow -- Additional Effect: Sleep ----------------------------------------- require("scripts/globals/status") require("scripts/globals/magic") require("scripts/globals/msg") ----------------------------------------- function onAdditionalEffect(playe...
gpl-3.0
starlightknight/darkstar
scripts/zones/Western_Adoulin/npcs/Berghent.lua
9
2575
----------------------------------- -- Area: Western Adoulin -- NPC: Berghent -- Type: Standard NPC and Quest NPC -- Starts, Involved with, and Finishes Quest: 'Flavors of our Lives' -- !pos 95 0 -28 256 ----------------------------------- require("scripts/globals/quests"); require("scripts/globals/keyitems"); require...
gpl-3.0
gedads/Neodynamis
scripts/zones/Aht_Urhgan_Whitegate/npcs/Tazhaal.lua
3
1163
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Tazhaal -- Admits players to the dock in Aht Urhgan -- !pos -5.195 -1 -98.966 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/...
gpl-3.0
thel3l/kali-nethunter
nethunter-installer/update/system/bin/lualibs/hf_reader.lua
20
5955
--[[ THIS IS WORK IN PROGREESS, very much not finished. This library utilises other libraries under the hood, but can be used as a generic reader for 13.56MHz tags. ]] local reader14443A = require('read14a') local cmds = require('commands') local TIMEOUT = 1000 local function sendToDevice(command, ignoreresponse) ...
gpl-2.0
tommy3/Urho3D
bin/Data/LuaScripts/23_Water.lua
15
9916
-- Water example. -- This sample demonstrates: -- - Creating a large plane to represent a water body for rendering -- - Setting up a second camera to render reflections on the water surface require "LuaScripts/Utilities/Sample" local reflectionCameraNode = nil local waterNode = nil local waterPlane = Plane() ...
mit
Micr0Bit/OpenRA
mods/cnc/maps/nod06a/nod06a.lua
25
7746
NodStartUnitsRight = { 'ltnk', 'bike', 'e1', 'e1', 'e3', 'e3' } NodStartUnitsLeft = { 'ltnk', 'ltnk', 'bggy', 'e1', 'e1', 'e1', 'e1', 'e3', 'e3', 'e3', 'e3' } Chn1Units = { 'e1', 'e1', 'e1', 'e1', 'e1' } Chn2Units = { 'e2', 'e2', 'e2', 'e2', 'e2' } Obj2Units = { 'ltnk', 'bike', 'e1', 'e1', 'e1' } Chn3CellTriggerActiva...
gpl-3.0
gedads/Neodynamis
scripts/zones/West_Sarutabaruta/npcs/Cavernous_Maw.lua
3
1467
----------------------------------- -- Area: West Sarutabaruta -- NPC: Cavernous Maw -- Teleports Players to West Sarutabaruta [S] -- !pos -2.229 0.001 -162.715 115 ----------------------------------- package.loaded["scripts/zones/West_Sarutabaruta/TextIDs"] = nil; ----------------------------------- require("scripts...
gpl-3.0
pedro-andrade-inpe/terrame
packages/base/tests/database/basics/Trajectory.lua
1
5457
------------------------------------------------------------------------------------------- -- TerraME - a software platform for multiple scale spatially-explicit dynamic modeling. -- Copyright (C) 2001-2017 INPE and TerraLAB/UFOP -- www.terrame.org -- This code is part of the TerraME framework. -- This framework is f...
lgpl-3.0
starlightknight/darkstar
scripts/zones/Aht_Urhgan_Whitegate/Shared.lua
14
5566
----------------------------------- -- Tables and Functions Used at Multiple Places within Aht Urgan Whitegate ----------------------------------- require("scripts/globals/settings"); -- Lua Set Initializer http://www.lua.org/pil/11.5.html function Set (list) local set = {} for _, l in ipairs(list) do set[l] =...
gpl-3.0
starlightknight/darkstar
scripts/globals/items/prime_angler_stewpot.lua
11
1854
----------------------------------------- -- ID: 5612 -- Item: Prime Angler Stewpot -- Food Effect: 4 Hrs, All Races ----------------------------------------- -- TODO: Group Effect -- HP +10% (cap 200) -- MP +15 -- Dexterity 2 -- Agility 1 -- Mind 1 -- HP Recovered while healing 7 -- MP Recovered while healing 2 -- Acc...
gpl-3.0
starlightknight/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Hadayah.lua
12
1163
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Hadayah -- Type: Alchemy Image Support -- !pos -10.470 -6.25 -141.700 241 ----------------------------------- local ID = require("scripts/zones/Aht_Urhgan_Whitegate/IDs") require("scripts/globals/status") require("scripts/globals/crafting") ----...
gpl-3.0
starlightknight/darkstar
scripts/zones/Mount_Zhayolm/mobs/Sarameya.lua
11
2571
----------------------------------- -- Area: Mount Zhayolm -- NM: Sarameya -- !pos 322 -14 -581 61 -- Spawned with Buffalo Corpse: !additem 2583 -- Wiki: http://ffxiclopedia.wikia.com/wiki/Sarameya -- TODO: PostAIRewrite: Code the Howl effect and gradual resists. ----------------------------------- mixins = {require(...
gpl-3.0
gedads/Neodynamis
scripts/globals/spells/blind.lua
5
1586
----------------------------------------- -- Spell: Blind ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); require("scripts/globals/msg"); ----------------------------------------- function onMagicCastingCheck(caster,target,spell) return 0; end; functi...
gpl-3.0
gedads/Neodynamis
scripts/zones/Abyssea-Konschtat/Zone.lua
33
1801
----------------------------------- -- -- Zone: Abyssea - Konschtat -- ----------------------------------- -- Research -- EventID 0x0400-0x0405 aura of boundless rage -- EventID 0x0800-0x0883 The treasure chest will disappear is 180 seconds menu. -- EventID 0x0884 Teleport? -- EventID 0x0885 DEBUG Menu --------------...
gpl-3.0
focusworld/ghost-bot
plugins/webshot.lua
919
1473
local helpers = require "OAuth.helpers" local base = 'https://screenshotmachine.com/' local url = base .. 'processor.php' local function get_webshot_url(param) local response_body = {} local request_constructor = { url = url, method = "GET", sink = ltn12.sink.table(response_body), header...
gpl-2.0
jackkkk21/botjack
plugins/webshot.lua
919
1473
local helpers = require "OAuth.helpers" local base = 'https://screenshotmachine.com/' local url = base .. 'processor.php' local function get_webshot_url(param) local response_body = {} local request_constructor = { url = url, method = "GET", sink = ltn12.sink.table(response_body), header...
gpl-2.0
starlightknight/darkstar
scripts/zones/Lower_Jeuno/npcs/Mertaire.lua
9
3955
----------------------------------- -- Area: Lower Jeuno (245) -- NPC: Mertaire -- Starts and Finishes Quest: The Old Monument (start only), A Minstrel in Despair, Painful Memory (BARD AF1) -- !pos -17 0 -61 245 ----------------------------------- require("scripts/globals/settings") require("scripts/globals/status") r...
gpl-3.0
focusworld/ghost-bot
plugins/time.lua
771
2865
-- Implement a command !time [area] which uses -- 2 Google APIs to get the desired result: -- 1. Geocoding to get from area to a lat/long pair -- 2. Timezone to get the local time in that lat/long location -- Globals -- If you have a google api key for the geocoding/timezone api api_key = nil base_api = "https://m...
gpl-2.0
Maxsteam/4568584657657
plugins/time.lua
771
2865
-- Implement a command !time [area] which uses -- 2 Google APIs to get the desired result: -- 1. Geocoding to get from area to a lat/long pair -- 2. Timezone to get the local time in that lat/long location -- Globals -- If you have a google api key for the geocoding/timezone api api_key = nil base_api = "https://m...
gpl-2.0
gedads/Neodynamis
scripts/zones/Yuhtunga_Jungle/npcs/Logging_Point.lua
17
1091
----------------------------------- -- Area: Yuhtunga Jungle -- NPC: Logging Point ----------------------------------- package.loaded["scripts/zones/Yuhtunga_Jungle/TextIDs"] = nil; ------------------------------------- require("scripts/globals/logging"); require("scripts/zones/Yuhtunga_Jungle/TextIDs"); ---------...
gpl-3.0
starlightknight/darkstar
scripts/globals/weaponskills/blast_shot.lua
10
1365
----------------------------------- -- Blast Shot -- Marksmanship weapon skill -- Skill Level: 200 -- Delivers a melee-distance ranged attack. params.accuracy varies with TP. -- Aligned with the Snow Gorget & Light Gorget. -- Aligned with the Snow Belt & Light Belt. -- Element: None -- Modifiers: AGI:30% -- 100%TP 2...
gpl-3.0
starlightknight/darkstar
scripts/zones/Norg/npcs/Edal-Tahdal.lua
9
4243
----------------------------------- -- Area: Norg -- NPC: Edal-Tahdal -- Starts and Finishes Quest: Trial by Water -- !pos -13 1 -20 252 ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/titles"); require("scripts/globals/keyitems"); require("scripts/globals/shop"); requ...
gpl-3.0
boliu/synchronicity
share/lua/meta/art/02_frenchtv.lua
48
2666
--[[ Gets an artwork from amazon $Id$ Copyright © 2007 the VideoLAN team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version...
gpl-2.0