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
UnfortunateFruit/darkstar
scripts/zones/Al_Zahbi/npcs/Kahah_Hobichai.lua
35
1343
----------------------------------- -- Area: Al Zahbi -- NPC: Kahah Hobichai -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Al_Zahbi/TextIDs"] = nil; require("scripts/zones/Al_Zahbi/TextIDs"); ----------------------------------- -...
gpl-3.0
nesstea/darkstar
scripts/globals/items/roast_carp.lua
18
1259
----------------------------------------- -- ID: 4537 -- Item: roast_carp -- Food Effect: 30Min, All Races ----------------------------------------- -- Dexterity 1 -- Mind -1 -- Ranged ATT % 14 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- On...
gpl-3.0
nesstea/darkstar
scripts/globals/items/dish_of_salsa.lua
18
1585
----------------------------------------- -- ID: 5299 -- Item: dish_of_salsa -- Food Effect: 3Min, All Races ----------------------------------------- -- Strength -1 -- Dexterity -1 -- Agility -1 -- Vitality -1 -- Intelligence -1 -- Mind -1 -- Sleep Resist 5 ----------------------------------------- require("scripts/g...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Windurst-Jeuno_Airship/npcs/Mauricio.lua
12
2051
----------------------------------- -- Area: Windurst-Jeuno Airship -- NPC: Mauricio -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Windurst-Jeuno_Airship/TextIDs"] = nil; require("scripts/zones/Windurst-Jeuno_Airship/TextIDs"); ----------------------------------- -- onTrade ...
gpl-3.0
nesstea/darkstar
scripts/zones/Newton_Movalpolos/npcs/Mining_Point.lua
13
1072
----------------------------------- -- Area: Newton Movalpolos -- NPC: Mining Point ----------------------------------- package.loaded["scripts/zones/Newton_Movalpolos/TextIDs"] = nil; ------------------------------------- require("scripts/globals/mining"); require("scripts/zones/Newton_Movalpolos/TextIDs"); -----...
gpl-3.0
nesstea/darkstar
scripts/zones/Quicksand_Caves/npcs/_5s5.lua
13
1255
----------------------------------- -- Area: Quicksand Caves -- NPC: Ornate Door -- Door blocked by Weight system -- @pos -779 0 -454 208 ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Quicksand_Caves/TextID...
gpl-3.0
zhangyongfei/StudySkia
tools/lua/classify_rrect_clips.lua
160
3346
function sk_scrape_startcanvas(c, fileName) end function sk_scrape_endcanvas(c, fileName) end function classify_rrect(rrect) if (rrect:type() == "simple") then local x, y = rrect:radii(0) if (x == y) then return "simple_circle" else return "simple_oval" end...
bsd-3-clause
hussian/hell_iraq
plugins/whitelist.lua
8
3032
--[[ ▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ BY(@AHMED_ALOBIDE) ▀▄ ▄▀ ▀▄ ▄▀ BY(@hussian_9) ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄▀...
gpl-2.0
nesstea/darkstar
scripts/zones/Bostaunieux_Oubliette/npcs/Grounds_Tome.lua
30
1118
----------------------------------- -- Area: Bostaunieux Oubliette -- NPC: Grounds Tome ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/groundsofvalor"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(playe...
gpl-3.0
nesstea/darkstar
scripts/globals/items/two-leaf_mandragora_bud.lua
18
1184
----------------------------------------- -- ID: 4368 -- Two-Leaf Mandragora Bud -- 5 Minutes, food effect, All Races ----------------------------------------- -- Agility +2 -- Vitality -4 ----------------------------------------- require("scripts/globals/status"); --------------------------------------...
gpl-3.0
nesstea/darkstar
scripts/zones/Boneyard_Gully/Zone.lua
32
1566
----------------------------------- -- -- Zone: Boneyard_Gully (8) -- ----------------------------------- package.loaded["scripts/zones/Boneyard_Gully/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Boneyard_Gully/TextIDs"); ----------------------------...
gpl-3.0
dpino/snabbswitch
lib/ljsyscall/test/openbsd.lua
18
1414
-- OpenBSD specific tests local function init(S) local helpers = require "syscall.helpers" local types = S.types local c = S.c local abi = S.abi local bit = require "syscall.bit" local ffi = require "ffi" local t, pt, s = types.t, types.pt, types.s local assert = helpers.assert local function fork_assert(cond, er...
apache-2.0
Cyumus/NutScript
gamemode/core/derma/cl_quick.lua
6
3729
local PANEL = {} function PANEL:Init() nut.gui.quick = self self:SetSize(400, 36) self:SetPos(ScrW() - 36, -36) self:MakePopup() self:SetKeyBoardInputEnabled(false) self:SetZPos(999) self:SetMouseInputEnabled(true) self.title = self:Add("DLabel") self.title:SetTall(36) self.title:Dock(TOP) se...
mit
nesstea/darkstar
scripts/globals/items/rice_ball.lua
18
1349
----------------------------------------- -- ID: 4405 -- Item: Rice Ball -- Food Effect: 30Min, All Races ----------------------------------------- -- HP 10, -- Vit +2 -- Dex -1 -- hHP +1 -- Effect with enhancing equipment (Note: these are latents on gear with the effect) -- Def +50 ------------------------------------...
gpl-3.0
ennis/autograph-pipelines
resources/scripts/pl/stringx.lua
2
14802
--- Python-style extended string library. -- -- see 3.6.1 of the Python reference. -- If you want to make these available as string methods, then say -- `stringx.import()` to bring them into the standard `string` table. -- -- See @{03-strings.md|the Guide} -- -- Dependencies: `pl.utils` -- @module pl.stringx local util...
mit
nesstea/darkstar
scripts/zones/East_Sarutabaruta/npcs/Heih_Porhiaap.lua
13
1031
----------------------------------- -- Area: East Sarutabaruta -- NPC: Heih Porhiaap -- @pos -118.876 -4.088 -515.731 116 ----------------------------------- package.loaded["scripts/zones/East_Sarutabaruta/TextIDs"] = nil; ----------------------------------- require("scripts/zones/East_Sarutabaruta/TextIDs"...
gpl-3.0
hussian/hell_iraq
plugins/list.lua
2
2811
--[[ ▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ BY(@AHMED_ALOBIDE) ▀▄ ▄▀ ▀▄ ▄▀ BY(@hussian_9) ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ (ملف الاوامرالانكلش) ▀▄ ▄...
gpl-2.0
nesstea/darkstar
scripts/globals/spells/wind_carol.lua
27
1532
----------------------------------------- -- Spell: Wind Carol -- Increases wind resistance for party members within the area of effect. ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------------- -- OnSpellCast -------------...
gpl-3.0
vonflynee/opencomputersserver
world/opencomputers/ce2455cc-66a6-412b-bce0-a153d60bdbf8/boot/03_io.lua
15
1716
local buffer = require("buffer") local term = require("term") local io_open = io.open function io.open(path, mode) return io_open(require("shell").resolve(path), mode) end local stdinStream = {handle="stdin"} local stdoutStream = {handle="stdout"} local stderrStream = {handle="stderr"} local stdinHistory = {} loca...
mit
UnfortunateFruit/darkstar
scripts/globals/abilities/gallants_roll.lua
11
2168
----------------------------------- -- 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 -- -- Die Roll |No PLD |With PLD -- -------- ------- ----------- -- 1 |4% |...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Maze_of_Shakhrami/TextIDs.lua
5
1507
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item>. Come back after sorting your inventory. ITEM_OBTAINED = 6382; -- Obtained: <item>. GIL_OBTAINED = 6383; -- Obtained <number> gil. KEYITEM_OBTAINED = 6385; -- Obtained...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Dynamis-Xarcabard/mobs/Animated_Longsword.lua
17
1492
----------------------------------- -- Area: Dynamis Xarcabard -- NPC: Animated Longsword ----------------------------------- require("scripts/globals/status"); require("scripts/zones/Dynamis-Xarcabard/TextIDs"); ----------------------------------- -- onMobEngaged ----------------------------------- fun...
gpl-3.0
cmassiot/vlc-broadcast
share/lua/meta/reader/filename.lua
48
1628
--[[ Gets an artwork for french TV channels $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 la...
gpl-2.0
nesstea/darkstar
scripts/globals/weaponskills/smash_axe.lua
10
1537
----------------------------------- -- Smash Axe -- Axe weapon skill -- Skill level: 40 -- Stuns enemy. Duration of stun varies with TP. -- Will stack with Sneak Attack. -- Aligned with the Snow Gorget & Aqua Gorget. -- Aligned with the Snow Belt & Aqua Belt. -- Element: None -- Modifiers: STR:100% -- 100%TP 200%TP ...
gpl-3.0
FailcoderAddons/supervillain-ui
SVUI_Skins/components/addons/SVUI_!Options.lua
2
8752
--[[ ############################################################################## S V U I By: Failcoder ############################################################################## --]] --[[ GLOBALS ]]-- local _G = _G; local unpack = _G.unpack; local select = _G.select; --[[ ADDON ]]-- local SV = _G['SVUI']; lo...
mit
nesstea/darkstar
scripts/globals/items/m&p_dumpling.lua
18
1243
----------------------------------------- -- ID: 5641 -- Item: M&P Dumpling -- Food Effect: 3Min, All Races ----------------------------------------- -- Intelligence 5 -- Agility -5 -- MP 30 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnIte...
gpl-3.0
nesstea/darkstar
scripts/zones/Northern_San_dOria/npcs/Yevgeny_IM.lua
13
5603
----------------------------------- -- Area: Northern Sandoria -- NPC: Yevgeny, I.M. -- @pos 45 -1 0 231 -- X Grant Signet -- X Recharge Emperor Band, Empress Band, or Chariot Band -- X Accepts traded Crystals to fill up the Rank bar to open new Missions. -- X Sells items in exchange for Conquest Points -- X Start Sup...
gpl-3.0
nesstea/darkstar
scripts/zones/Dynamis-Xarcabard/mobs/Marquis_Nebiros.lua
2
1531
----------------------------------- -- Area: Dynamis Xarcabard -- MOB: Marquis Decarabia ----------------------------------- require("scripts/globals/dynamis"); require("scripts/zones/Dynamis-Xarcabard/TextIDs"); ----------------------------------- -- onMobEngaged ----------------------------------- function onMobE...
gpl-3.0
VurtualRuler98/kswep2-NWI
lua/weapons/weapon_kswepi2_m2carbine/shared.lua
1
3116
--[[ Copyright 2015 vurtual VurtualRuler98@gmail.com vurtual.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 Unless required by applicable law o...
apache-2.0
Spartan322/finalfrontier
gamemode/weapons/venus.lua
2
1208
-- Copyright (c) 2014 James King [metapyziks@gmail.com] -- -- This file is part of Final Frontier. -- -- Final Frontier is free software: you can redistribute it and/or modify -- it under the terms of the GNU Lesser General Public License as -- published by the Free Software Foundation, either version 3 of -- the Lic...
lgpl-3.0
plajjan/snabbswitch
lib/ljsyscall/syscall/netbsd/ffifunctions.lua
18
4386
-- define system calls for ffi, NetBSD specific calls 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 require...
apache-2.0
UnfortunateFruit/darkstar
scripts/zones/Sacrificial_Chamber/bcnms/temple_of_uggalepih.lua
7
1731
----------------------------------- -- Area: Sacrificial Chamber -- Name: Zilart Mission 4 ----------------------------------- package.loaded["scripts/zones/Sacrificial_Chamber/TextIDs"] = nil; ------------------------------------- require("scripts/globals/titles"); require("scripts/globals/keyitems"); require("script...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Mhaura/TextIDs.lua
5
1944
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item>. Come back after sorting your inventory. ITEM_OBTAINED = 6382; -- Obtained: <item>. GIL_OBTAINED = 6383; -- Obtained <number> gil. KEYITEM_OBTAINED = 6385; -- Obtained...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Nashmau/npcs/HomePoint#1.lua
12
1239
----------------------------------- -- Area: Nashmau -- NPC: HomePoint#1 -- @pos -19.860 0.001 -25.441 53 ----------------------------------- package.loaded["scripts/zones/Nashmau/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Nashmau/TextIDs"); require("scripts/globals/homepo...
gpl-3.0
dpino/snabbswitch
src/apps/interlink/receiver.lua
7
1872
-- Use of this source code is governed by the Apache 2.0 license; see COPYING. module(...,package.seeall) local shm = require("core.shm") local interlink = require("lib.interlink") local Receiver = {name="apps.interlink.Receiver"} function Receiver:new (queue) packet.enable_group_freelist() return setmetatabl...
apache-2.0
UnfortunateFruit/darkstar
scripts/zones/Caedarva_Mire/npcs/_273.lua
32
3549
----------------------------------- -- Area: Caedarva Mire -- Door: Runic Seal -- @pos -353 -3 -20 79 ----------------------------------- package.loaded["scripts/zones/Caedarva_Mire/TextIDs"] = nil; ----------------------------------- require("scripts/globals/keyitems"); require("scripts/globals/missions"); require("...
gpl-3.0
nesstea/darkstar
scripts/zones/Dragons_Aery/npcs/qm0.lua
15
1870
----------------------------------- -- Area: Dragons Aery -- NPC: qm0 (???) -- Spawns Fafnir or Nidhogg -- @pos -81 32 2 178 ----------------------------------- package.loaded["scripts/zones/Dragons_Aery/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Dragons_Aery/TextIDs"); require("script...
gpl-3.0
zuzuf/TA3D
src/ta3d/mods/ta3d/scripts/armgate.lua
2
3244
-- Arm Galactic Gate Script createUnitScript("armgate") __this:piece( "base", "arm", "dish", "door", "flap1", "flap2", "flap3", "gun", "plate", "turret" ) __this.SMOKEPIECE1 = __this.base #include "exptype.lh" #include "smokeunit.lh" __this.Create = function(this) this:dont_shade( this.flap1 ) this:do...
gpl-2.0
nesstea/darkstar
scripts/globals/items/bluetail.lua
18
1308
----------------------------------------- -- ID: 4399 -- Item: Bluetail -- Food Effect: 5Min, Mithra only ----------------------------------------- -- Dexterity 3 -- Mind -5 ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnItemCheck ----------...
gpl-3.0
craigbarnes/lua-gumbo
test/dom/outerHTML.lua
3
2210
local gumbo = require "gumbo" local assert, ipairs = assert, ipairs local _ENV = nil do -- https://github.com/w3c/web-platform-tests/blob/ee229200b703cf394ed101017ab04912c53bc61a/html/syntax/serializing-html-fragments/outerHTML.html local input = "<!DOCTYPE html><title>Fragment serialization test</title>" loca...
apache-2.0
nesstea/darkstar
scripts/zones/Windurst_Waters/npcs/Jacodaut.lua
53
1826
----------------------------------- -- Area: Windurst Waters -- NPC: Jacodaut -- Type: Cooking Image Support -- @pos -125.890 -2.999 62.499 238 ----------------------------------- package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil; ----------------------------------- require("scripts/globals/status"); requ...
gpl-3.0
ShaTelTeam/MegaZs
plugins/help.lua
290
1653
do -- Returns true if is not empty local function has_usage_data(dict) if (dict.usage == nil or dict.usage == '') then return false end return true end -- Get commands for that plugin local function plugin_help(name) local plugin = plugins[name] if not plugin then return nil end local text = "" if ...
gpl-2.0
jj918160/cocos2d-x-samples
samples/FantasyWarrior3D/src/GameMaster.lua
8
15765
require "Manager" require "Knight" require "Mage" require "Actor" require "GlobalVariables" require "Piglet" require "Slime" require "Rat" require "Dragon" require "Archer" --require "Boss" local gloableZOrder = 1 local monsterCount = {dragon=1,slime=7,piglet=2,rat = 0} --rat count must be 0. local EXIST_MIN_MONSTER =...
mit
nesstea/darkstar
scripts/zones/Ghelsba_Outpost/bcnms/petrifying_pair.lua
27
1515
----------------------------------- -- Area: Ghelsba Outpost -- Name: pertrifying_pair BCNM30 -- @pos -162 -11 78 140 ----------------------------------- package.loaded["scripts/zones/Ghelsba_Outpost/TextIDs"] = nil; ----------------------------------- require("scripts/globals/titles"); require("scripts/globals/keyite...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Kazween.lua
38
1062
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Kazween -- Type: Item Deliverer -- @pos -130 -6 95 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whitegate/Te...
gpl-3.0
nesstea/darkstar
scripts/zones/FeiYin/mobs/Specter.lua
5
3655
----------------------------------- -- Area: Fei'Yin -- MOB: Specter ----------------------------------- require("scripts/zones/FeiYin/MobIDs"); require("scripts/globals/groundsofvalor"); ----------------------------------- -- onMobDeath ----------------------------------- function onMobDeath(mob,killer,ally) c...
gpl-3.0
nesstea/darkstar
scripts/zones/Yughott_Grotto/TextIDs.lua
15
1096
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6538; -- You cannot obtain the item <item>. Come back after sorting your inventory. ITEM_OBTAINED = 6543; -- Obtained: <item>. GIL_OBTAINED = 6544; -- Obtained <number> gil. KEYITEM_OBTAINED = 6546; -- Obtained...
gpl-3.0
nesstea/darkstar
scripts/globals/harvesting.lua
7
5960
------------------------------------------------- -- Harvesting functions -- Info from: -- http://wiki.ffxiclopedia.org/wiki/Harvesting ------------------------------------------------- require("scripts/globals/keyitems"); require("scripts/globals/settings"); require("scripts/globals/status"); ----------------...
gpl-3.0
linorabolini/M00N
cocos2d/plugin/luabindings/auto/api/ProtocolUser.lua
146
1133
-------------------------------- -- @module ProtocolUser -- @extend PluginProtocol -- @parent_module plugin -------------------------------- -- brief config the application info<br> -- param devInfo This parameter is the info of aplication,<br> -- different plugin have different format<br> -- warning Must invoke this...
mit
UnfortunateFruit/darkstar
scripts/zones/Empyreal_Paradox/bcnms/dawn.lua
13
3021
----------------------------------- -- Area: Empyreal_Paradox -- Name: dawn --instance 1 --16924673', 'Promathia V1', '936', '-520', '-119', '524 --16924674', 'Promathia V2', '11135', '-520', '-119', '524 --instance 2 --16924675', 'Promathia V1', '936', '521', '-0.500', '517 --16924676', 'Promathia V2', '11135'...
gpl-3.0
ystk/tools-yocto1-rpm
lua/socket/http.lua
1
12190
----------------------------------------------------------------------------- -- HTTP/1.1 client support for the Lua language. -- LuaSocket toolkit. -- Author: Diego Nehab -- RCS ID: $Id: http.lua,v 1.1 2008/10/24 22:58:40 jbj Exp $ ----------------------------------------------------------------------------- --------...
lgpl-2.1
nesstea/darkstar
scripts/zones/Upper_Jeuno/npcs/Guslam.lua
13
7029
----------------------------------- -- Area: Upper Jeuno -- NPC: Guslam -- Starts Quest: Borghertz's Hands (AF Hands, Many job) -- @zone 244 -- @pos -5 1 48 ----------------------------------- package.loaded["scripts/zones/Upper_Jeuno/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settin...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Temenos/mobs/Enhanced_Mandragora.lua
12
1048
----------------------------------- -- Area: Temenos W T -- NPC: Enhanced_Mandragora ----------------------------------- package.loaded["scripts/zones/Temenos/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Temenos/TextIDs"); ------------------...
gpl-3.0
endeav0r/Rainbows-And-Pwnies-Tools
tools/strings.lua
1
1924
elf = elf_t.new(argv[1]) function operand_abs (operand, address, size) local absolute if (operand["base"] ~= "none" and operand["base"] ~= "rip") or operand["index"] ~= "none" then return false elseif operand["type"] == "jimm" or (operand["type"] == "mem" and operand["base"] ==...
gpl-3.0
nesstea/darkstar
scripts/zones/Cape_Teriggan/npcs/Orukeke_WW.lua
13
3309
----------------------------------- -- Area: Cape Teriggan -- NPC: Orukeke, W.W. -- Type: Border Conquest Guards -- @pos 119 0 282 113 ----------------------------------- package.loaded["scripts/zones/Cape_Teriggan/TextIDs"] = nil; ----------------------------------- require("scripts/globals/conquest"); require("scri...
gpl-3.0
nesstea/darkstar
scripts/zones/Sacrificial_Chamber/Zone.lua
30
1663
----------------------------------- -- -- Zone: Sacrificial_Chamber (163) -- ----------------------------------- package.loaded["scripts/zones/Sacrificial_Chamber/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems"); require("scripts/globals/miss...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/North_Gustaberg_[S]/npcs/Mining_Point.lua
29
1114
----------------------------------- -- Area: North Gustaberg [S] -- NPC: Mining Point ----------------------------------- package.loaded["scripts/zones/North_Gustaberg_[S]/TextIDs"] = nil; ------------------------------------- require("scripts/globals/mining"); require("scripts/zones/North_Gustaberg_[S]/Tex...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Nashmau/npcs/Kakkaroon.lua
17
2217
----------------------------------- -- Area: Nashmau -- NPC: Kakkaroon -- Standard Info NPC -- @pos 13.245 0.000 -25.307 53 ----------------------------------- package.loaded["scripts/zones/Nashmau/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); require("scripts/global...
gpl-3.0
jballanc/aydede
test/grammar_test.lua
1
5306
--[[ test/grammar_test.lua Test suite to validate the Aydede LPeg grammar. Copyright (c) 2014, Joshua Ballanco. Licensed under the BSD 2-Clause License. See COPYING for full license details. --]] require("luaunit") local lp = require("lpeg") local P = lp.P local grammar = require("grammar") -- ### Helper ...
bsd-2-clause
nesstea/darkstar
scripts/zones/Outer_Horutoto_Ruins/npcs/_5e5.lua
13
1730
----------------------------------- -- Area: Outer Horutoto Ruins -- NPC: Cracked Wall -- Involved In Mission: The Jester Who'd Be King -- @pos -424.255 -1.909 619.995 ----------------------------------- package.loaded["scripts/zones/Outer_Horutoto_Ruins/TextIDs"] = nil; ----------------------------------- require("s...
gpl-3.0
nesstea/darkstar
scripts/zones/Inner_Horutoto_Ruins/npcs/Grounds_Tome.lua
30
1115
----------------------------------- -- Area: Inner Horutoto Ruins -- NPC: Grounds Tome ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/groundsofvalor"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(player...
gpl-3.0
jodemaey/MAOOAM-lyap-WIP
lua/tl_ad_tensor.lua
2
5133
-- tl_ad_tensor.lua -- (C) 2016 Lesley De Cruz & Jonathan Demaeyer -- See LICENSE.txt for license information. ------------------------------------------------------------------------ -- Tangent Linear (TL) and Adjoint (AD) model versions of MAOOAM. ---------------------------------------------------------------------...
mit
Xileck/forgottenserver
data/spells/scripts/custom/polymorph.lua
2
1328
local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) local condition = createConditionObject(CONDITION_OUTFIT) setConditionParam(condition, CONDITION_PARAM_TICKS, 20000) addOutfitCondition(condition, 0, 230, 0, 0, 0, 0) addOutfitCondition(condition, 0, 231, 0, 0, 0, 0) ...
gpl-2.0
hamed9898/maxbot
plugins/groupmanager.lua
166
11272
-- data saved to moderation.json -- check moderation plugin do local function create_group(msg) -- superuser and admins only (because sudo are always has privilege) if not is_admin(msg) then return "You're not admin!" end local group_creator = msg.from.print_name create_group_chat (group_cr...
gpl-2.0
endeav0r/Rainbows-And-Pwnies-Tools
stdlib/hooks.lua
1
6385
JSON = dofile(STDLIB_PATH .. 'JSON.lua') -- hooks is a singleton for each exec global_hooks = {} hooks = {} hooks.mt = {} setmetatable(hooks, hooks.mt) hooks.hook = {} hooks.hook.mt = {} hooks.hook.mt.__index = hooks.hook hooks.hook.functions = {} hooks.hook.functions.mt = {} hooks.hook.functions.mt.__index = hooks...
gpl-3.0
nesstea/darkstar
scripts/zones/Arrapago_Reef/npcs/Runic_Portal.lua
25
1756
----------------------------------- -- Area: Arrapago Reef -- NPC: Runic Portal -- Arrapago Reef Teleporter Back to Aht Urgan Whitegate -- @pos 15 -7 627 54 ----------------------------------- package.loaded["scripts/zones/Arrapago_Reef/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Arrapa...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Western_Adoulin/npcs/HomePoint#2.lua
16
1186
----------------------------------- -- Area: Western_Adoulin -- NPC: HomePoint#2 -- @pos ----------------------------------- package.loaded["scripts/zones/Western_Adoulin/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Western_Adoulin/TextIDs"); require("scripts/globals/homepoint"); --...
gpl-3.0
nesstea/darkstar
scripts/zones/Metalworks/npcs/Glarociquet_TK.lua
13
5587
----------------------------------- -- Area: Metalworks -- NPC: Glarociquet, T.K. -- @pos 19 -16 -28 237 -- X Grant Signet -- X Recharge Emperor Band, Empress Band, or Chariot Band -- X Accepts traded Crystals to fill up the Rank bar to open new Missions. -- X Sells items in exchange for Conquest Points -- X Start Sup...
gpl-3.0
nesstea/darkstar
scripts/globals/items/crepe_delice.lua
17
1278
----------------------------------------- -- ID: 5767 -- Item: Crepe Delice -- Food Effect: 60 Min, All Races ----------------------------------------- -- HP +15 -- Magic Accuracy +3 -- Magic Defense +2 ----------------------------------------- require("scripts/globals/status"); --------------------------------------...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Windurst_Woods/npcs/Mono_Nchaa.lua
36
1426
----------------------------------- -- Area: Windurst Woods -- NPC: Mono Nchaa -- 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
nesstea/darkstar
scripts/zones/Windurst_Walls/npcs/Selulu.lua
13
1047
---------------------------------- -- Area: Windurst Walls -- NPC: Selulu -- Type: Item Deliverer -- @zone: 239 -- @pos 58.027 -2.5 -60.548 -- ----------------------------------- package.loaded["scripts/zones/Windurst_Walls/TextIDs"] = nil; require("scripts/zones/Windurst_Walls/TextIDs"); -----------------------...
gpl-3.0
nesstea/darkstar
scripts/zones/Al_Zahbi/npcs/Banjanu.lua
13
1040
----------------------------------- -- Area: Al Zahbi -- NPC: Banjanu -- Type: Standard NPC -- @zone: 48 -- @pos -75.954 0.999 105.367 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Al_Zahbi/TextIDs"] = nil; ------------------------...
gpl-3.0
dany-sj/Kings_Bot
plugins/info.lua
1
9039
do local SUDO = 214877832 --put your id here(BOT OWNER ID) local function setrank(msg, name, value) -- setrank function local hash = nil if msg.to.type == 'chat' then hash = 'rank:'..msg.to.id..':variables' end if hash then redis:hset(hash, name, value) return send_msg('chat#id'..msg.to.id, 'مقام کا...
gpl-2.0
UnfortunateFruit/darkstar
scripts/zones/Bhaflau_Thickets/npcs/qm2.lua
8
1178
----------------------------------- -- Area: Bhaflau Thickets -- NPC: ??? (Spawn Dea(ZNM T3)) -- @pos -34 -32 481 52 ----------------------------------- package.loaded["scripts/zones/Bhaflau_Thickets/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Bhaflau_Thickets/TextIDs"); -------------...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Sajahb.lua
34
1031
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Sajahb -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_Whitegate/TextIDs"); -----------...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Dynamis-San_dOria/mobs/Serjeant_Tombstone.lua
16
4913
----------------------------------- -- Area: Dynamis San d'Oria -- NPC: Serjeant Tombstone -- Map1 Position: http://www.dynamislounge.com/html/zone/frame_san1.htm -- Map2 Position: http://www.dynamislounge.com/html/zone/frame_san2.htm ----------------------------------- package.loaded["scripts/zones/Dynamis-San_...
gpl-3.0
MuhammadWang/MCServer
MCServer/Plugins/APIDump/Hooks/OnPlayerUsingItem.lua
8
2549
return { HOOK_PLAYER_USING_ITEM = { CalledWhen = "Just before a player uses an item in hand (bucket...). Plugin may override / refuse.", DefaultFnName = "OnPlayerUsingItem", -- also used as pagename Desc = [[ This hook is called when a {{cPlayer|player}} has right-clicked a block with an {{cItem|item}} that...
apache-2.0
nesstea/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Bajahb.lua
13
1249
----------------------------------- -- 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("scripts/g...
gpl-3.0
nesstea/darkstar
scripts/zones/East_Ronfaure/npcs/Cavernous_Maw.lua
29
1436
----------------------------------- -- Area: East Ronfaure -- NPC: Cavernous Maw -- @pos 322 -59 503 101 -- Teleports Players to East Ronfaure [S] ----------------------------------- package.loaded["scripts/zones/East_Ronfaure/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); r...
gpl-3.0
UnfortunateFruit/darkstar
scripts/globals/items/sea_bass_croute.lua
35
1746
----------------------------------------- -- ID: 4353 -- Item: sea_bass_croute -- Food Effect: 30Min, All Races ----------------------------------------- -- MP % 5 -- Dexterity 4 -- Mind 5 -- Accuracy 3 -- Ranged Accuracy % 6 (cap 20) -- HP recovered while healing 9 -- MP recovered while healing 2 ---------...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Chateau_dOraguille/npcs/_6h1.lua
17
2271
----------------------------------- -- Area: Chateau d'Oraguille -- Door: Prince Regent's Rm -- Starts and Finishes Quest: Prelude of Black and White (Start), Pieuje's Decision (Start) -- @pos -37 -3 31 233 ----------------------------------- package.loaded["scripts/zones/Chateau_dOraguille/TextIDs"] = nil; ----...
gpl-3.0
nesstea/darkstar
scripts/globals/mobskills/Typhoon_Wing.lua
66
1332
--------------------------------------------- -- Hurricane Wing -- -- Description: Deals hurricane-force wind damage to enemies within a very wide area of effect. Additional effect: Blind -- Type: Magical -- Utsusemi/Blink absorb: Wipes shadows -- Range: 30' radial. -- Notes: Used only by Dragua, Fafnir, Nidhogg,...
gpl-3.0
KamilKZ/SimpleHTTPServer
Source/luajit/src/jit/dis_mips.lua
74
13222
---------------------------------------------------------------------------- -- LuaJIT MIPS disassembler module. -- -- Copyright (C) 2005-2014 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------...
mit
UnfortunateFruit/darkstar
scripts/zones/Upper_Delkfutts_Tower/npcs/Treasure_Chest.lua
12
3251
----------------------------------- -- Area: Upper Delkfutt's Tower -- NPC: Treasure Chest -- Involved In Quest: Wings of Gold -- @pos -380 -143 23 158 ----------------------------------- package.loaded["scripts/zones/Upper_Delkfutts_Tower/TextIDs"] = nil; ----------------------------------- require("scripts...
gpl-3.0
error454/SteamShiva
Resources/Scripts/SteamworksAI_Handler_onTestAchievements.lua
1
4997
-------------------------------------------------------------------------------- -- Handler.......... : onTestAchievements -- Author........... : -- Description...... : -------------------------------------------------------------------------------- ----------------------------------------------------------------...
mit
MetSystem/skynet
lualib/dns.lua
42
7473
--[[ lua dns resolver library See https://github.com/xjdrew/levent/blob/master/levent/dns.lua for more detail -- resource record type: -- TYPE value and meaning -- A 1 a host address -- NS 2 an authoritative name server -- MD 3 a mail destination (Obsolete - use MX...
mit
Mashape/kong
kong/pdk/ip.lua
2
2179
--- -- Trusted IPs module -- -- This module can be used to determine whether or not a given IP address is -- in the range of trusted IP addresses defined by the `trusted_ips` configuration -- property. -- -- Trusted IP addresses are those that are known to send correct replacement -- addresses for clients (as per the c...
apache-2.0
hadi9090/celassicalteam
feedparser.lua
543
11955
local LOM = assert(require("lxp.lom"), "LuaExpat doesn't seem to be installed. feedparser kind of needs it to work...") local XMLElement = (loadfile "./libs/XMLElement.lua")() local dateparser = (loadfile "./libs/dateparser.lua")() local URL = (loadfile "./libs/url.lua")() local tinsert, tremove, tconcat = table.insert...
unlicense
UnfortunateFruit/darkstar
scripts/zones/Zeruhn_Mines/npcs/Makarim.lua
17
1511
----------------------------------- -- Area: Zeruhn Mines -- NPC: Makarim -- Involved In Mission: The Zeruhn Report -- @pos -58 8 -333 172 ----------------------------------- package.loaded["scripts/zones/Zeruhn_Mines/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); ...
gpl-3.0
FailcoderAddons/supervillain-ui
SVUI_UnitFrames/libs/Plugins/oUF_Afflicted/oUF_Afflicted.lua
3
5140
--GLOBAL NAMESPACE local _G = _G; --LUA local unpack = _G.unpack; local select = _G.select; local assert = _G.assert; local type = _G.type; --MATH local math = _G.math; local floor = math.floor local ceil = math.ceil local random = math.random --BLIZZARD API l...
mit
ansuz/cjdns
contrib/lua/cjdns/admin.lua
42
2939
-- Cjdns admin module for Lua -- Written by Philip Horger common = require 'cjdns/common' AdminInterface = {} AdminInterface.__index = AdminInterface common.AdminInterface = AdminInterface function AdminInterface.new(properties) properties = properties or {} properties.host = properties.host or "127.0.0...
gpl-3.0
UnfortunateFruit/darkstar
scripts/zones/Cloister_of_Gales/bcnms/trial-size_trial_by_wind.lua
13
2001
----------------------------------- -- Area: Cloister of Gales -- BCNM: Trial-size Trial by Wind -- @zone -361 1 -381 201 ----------------------------------- package.loaded["scripts/zones/Cloister_of_Gales/TextIDs"] = nil; ------------------------------------- require("scripts/globals/shop"); require("scripts/globals/...
gpl-3.0
FailcoderAddons/supervillain-ui
SVUI_Skins/components/blizzard/barbershop.lua
2
2491
--[[ ############################################################################## S V U I By: Failcoder ############################################################################## --]] --[[ GLOBALS ]]-- local _G = _G; local unpack = _G.unpack; local select = _G.select; --[[ ADDON ]]-- local SV = _G['SVUI']; lo...
mit
nesstea/darkstar
scripts/zones/Fort_Karugo-Narugo_[S]/npcs/Spondulix.lua
13
1170
----------------------------------- -- Area: Fort Karugo-Narugo -- NPC: Spondulix -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Fort_Karugo-Narugo_[S]/TextIDs"] = nil; require("scripts/zones/Fort_Karugo-Narugo_[S]/TextIDs"); ---------------...
gpl-3.0
nesstea/darkstar
scripts/zones/Windurst_Woods/npcs/Ju_Kamja.lua
13
1050
---------------------------------- -- Area: Windurst Woods -- NPC: Ju Kamja -- Type: Item Deliverer -- @zone: 241 -- @pos 58.145 -2.5 -136.91 -- ----------------------------------- package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil; require("scripts/zones/Windurst_Woods/TextIDs"); --------------------...
gpl-3.0
nesstea/darkstar
scripts/zones/Caedarva_Mire/TextIDs.lua
9
1342
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item>. Come back after sorting your inventory. ITEM_OBTAINED = 6384; -- Obtained: <item>. GIL_OBTAINED = 6385; -- Obtained <number> gil. KEYITEM_OBTAINED = 6387; -- Obtained...
gpl-3.0
FailcoderAddons/supervillain-ui
SVUI_!Core/system/_docklets/raidleader.lua
1
8701
--[[ ########################################################## S V U I By: Failcoder ########################################################## LOCALIZED LUA FUNCTIONS ########################################################## ]]-- --[[ GLOBALS ]]-- local _G = _G; local unpack = _G.unpack; local select = _G.select...
mit
nesstea/darkstar
scripts/zones/LaLoff_Amphitheater/bcnms/divine_might.lua
27
3662
----------------------------------- -- Area: LaLoff Amphitheater -- Name: Divine Might ----------------------------------- package.loaded["scripts/zones/LaLoff_Amphitheater/TextIDs"] = nil; ------------------------------------- require("scripts/zones/LaLoff_Amphitheater/TextIDs"); require("scripts/globals/missions"); ...
gpl-3.0
nesstea/darkstar
scripts/zones/Yhoator_Jungle/npcs/Guddal_IM.lua
13
3321
----------------------------------- -- Area: Yhoator Jungle -- NPC: Guddal, I.M. -- Border Conquest Guards -- @pos -84.113 -0.449 224.902 124 ----------------------------------- package.loaded["scripts/zones/Yhoator_Jungle/TextIDs"] = nil; ----------------------------------- require("scripts/globals/conquest"); requi...
gpl-3.0
vonflynee/opencomputersserver
world/opencomputers/4f2775bd-9dcb-42e6-8318-1837ede27e76/bin/lua.lua
13
4399
local component = require("component") local package = require("package") local term = require("term") local serialization = require("serialization") local shell = require("shell") local args, options = shell.parse(...) local env = setmetatable({}, {__index = _ENV}) if #args > 0 then local script, reason = loadfile...
mit