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
Gwynthell/FFDB
scripts/globals/spells/armys_paeon_iv.lua
2
1342
----------------------------------------- -- Spell: Army's Paeon IV -- Gradually restores target's HP. ----------------------------------------- require("scripts/globals/status"); ----------------------------------------- -- OnSpellCast ----------------------------------------- function OnMagicCastingCheck(caster,ta...
gpl-3.0
ezibyte/EziSocial-PhotoExample
Cocos2dx-3x/PhotoExample/cocos2d/templates/lua-template-runtime/src/GameScene.lua
2
6529
require "Cocos2d" require "Cocos2dConstants" local GameScene = class("GameScene",function() return cc.Scene:create() end) function GameScene.create() local scene = GameScene.new() scene:addChild(scene:createLayerFarm()) scene:addChild(scene:createLayerMenu()) return scene end function GameScene:...
apache-2.0
Vivitarut/darkstar
scripts/zones/Ruhotz_Silvermines/Zone.lua
36
1131
----------------------------------- -- -- Zone: Ruhotz_Silvermines -- ----------------------------------- require("scripts/globals/settings"); package.loaded["scripts/zones/Ruhotz_Silvermines/TextIDs"] = nil; require("scripts/zones/Ruhotz_Silvermines/TextIDs"); ----------------------------------- -- onI...
gpl-3.0
willox/gmod-keypad
lua/weapons/gmod_tool/stools/keypad_willox.lua
2
6014
if (SERVER) then CreateConVar('sbox_maxkeypads', 10) end TOOL.Category = "Construction" TOOL.Name = "Keypad" TOOL.Command = nil TOOL.ClientConVar['weld'] = '1' TOOL.ClientConVar['freeze'] = '1' TOOL.ClientConVar['password'] = '1234' TOOL.ClientConVar['secure'] = '0' TOOL.ClientConVar['repeats_granted'] = '0' TOOL....
cc0-1.0
ezibyte/EziSocial-PhotoExample
Cocos2dx-3x/PhotoExample/cocos2d/cocos/scripting/lua-bindings/auto/api/CardinalSplineTo.lua
7
1438
-------------------------------- -- @module CardinalSplineTo -- @extend ActionInterval -- @parent_module cc -------------------------------- -- @function [parent=#CardinalSplineTo] getPoints -- @param self -- @return point_table#point_table ret (return value: point_table) -------------------------------- --...
apache-2.0
Vivitarut/darkstar
scripts/zones/Lufaise_Meadows/mobs/Leshy.lua
4
1612
----------------------------------- -- Area: Lufaise Meadows -- MOB: Leshy ----------------------------------- function OnMobRoam(mob) local Colorful_Leshy = 16875762; local Colorful_Leshy_PH = 0; local Colorful_Leshy_PH_Table = { 16875754, 16875755, 16875756, 16875757, 16875758, ...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/globals/spells/light_carol.lua
13
1504
----------------------------------------- -- Spell: Light Carol -- Increases light resistance for party members within the area of effect. ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------------- -- OnSpellCast -----------...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Chamber_of_Oracles/npcs/Pedestal_of_Lightning.lua
12
2289
----------------------------------- -- Area: Chamber of Oracles -- NPC: Pedestal of Lightning -- Involved in Zilart Mission 7 -- @pos 199 -2 36 168 ------------------------------------- package.loaded["scripts/zones/Chamber_of_Oracles/TextIDs"] = nil; ------------------------------------- require("scripts/gl...
gpl-3.0
Gwynthell/FFDB
scripts/globals/items/caedarva_frog.lua
3
1338
----------------------------------------- -- ID: 5465 -- Item: Caedarva Frog -- Food Effect: 5Min, Mithra only ----------------------------------------- -- Dexterity 2 -- Agility 2 -- Mind -4 -- Evasion 5 ----------------------------------------- require("scripts/globals/status"); ------------------------------------...
gpl-3.0
cryptotoad/prosody-modules
mod_auth_ccert/mod_auth_ccert.lua
32
2651
-- Copyright (C) 2013 Kim Alvefur -- -- This file is MIT/X11 licensed. local jid_compare = require "util.jid".compare; local jid_split = require "util.jid".prepped_split; local new_sasl = require "util.sasl".new; local now = os.time; local log = module._log; local subject_alternative_name = "2.5.29.17"; local id_on_x...
mit
Vivitarut/darkstar
scripts/globals/items/plate_of_coeurl_sautee.lua
35
1762
----------------------------------------- -- ID: 4548 -- Item: plate_of_coeurl_sautee -- Food Effect: 180Min, All Races ----------------------------------------- -- Strength 5 -- Agility 1 -- Intelligence -2 -- Attack % 20 -- Attack Cap 75 -- Ranged ATT % 20 -- Ranged ATT Cap 75 -- Stun Resist 5 ----------...
gpl-3.0
Vivitarut/darkstar
scripts/globals/items/serving_of_emperor_roe.lua
35
1354
----------------------------------------- -- ID: 4275 -- Item: serving_of_emperor_roe -- Food Effect: 30Min, All Races ----------------------------------------- -- Health 8 -- Magic 8 -- Dexterity 4 -- Mind -4 ----------------------------------------- require("scripts/globals/status"); ------------------...
gpl-3.0
Gwynthell/FFDB
scripts/globals/abilities/pets/tail_whip.lua
4
1227
--------------------------------------------------- -- Tail Whip M=5 --------------------------------------------------- require("/scripts/globals/settings"); require("/scripts/globals/status"); require("/scripts/globals/monstertpmoves"); require("/scripts/globals/summon"); -------------------------------------------...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Windurst_Waters/npcs/Fuepepe.lua
19
3656
----------------------------------- -- Area: Windurst Waters -- NPC: Fuepepe -- Starts and Finishes Quest: Teacher's Pet -- Involved in Quest: Making the grade, Class Reunion -- @zone = 238 -- @pos = 161 -2 161 ----------------------------------- package.loaded["scripts/zones/Windurst_Waters/TextIDs"] = nil;...
gpl-3.0
arya5123/power
bot/utils.lua
473
24167
URL = require "socket.url" http = require "socket.http" https = require "ssl.https" ltn12 = require "ltn12" serpent = require "serpent" feedparser = require "feedparser" json = (loadfile "./libs/JSON.lua")() mimetype = (loadfile "./libs/mimetype.lua")() redis = (loadfile "./libs/redis.lua")() JSON = (loadfile "./libs/...
gpl-2.0
kepler155c/opus-apps
shellex/apis/filesystem.lua
1
1611
local fs = _G.fs local function get(path) while not fs.exists(path) do path = fs.getDir(path) end if fs.exists(path) then local proxy = { getLabel = function() return fs.getDrive(path) end, isReadOnly = function() return fs.isReadOnly(path) end, spaceTotal = function() return fs.getSize(path, true) + ...
mit
Gwynthell/FFDB
scripts/globals/items/hellsteak_+1.lua
3
1601
----------------------------------------- -- ID: 5610 -- Item: hellsteak_+1 -- Food Effect: 240Min, All Races ----------------------------------------- -- Health 20 -- Strength 6 -- Intelligence -2 -- Health Regen While Healing 2 -- Attack % 19 -- Ranged ATT % 19 -- Dragon Killer 5 -- Demon Killer 5 -------------------...
gpl-3.0
BurmistrovJ/prosody-modules
mod_pubsub_hub/mod_pubsub_hub.lua
32
6808
-- Copyright (C) 2011 - 2012 Kim Alvefur -- -- This file is MIT/X11 licensed. local http = require "net.http"; local formdecode = http.formdecode; local formencode = http.formencode; local http_request = http.request; local uuid = require "util.uuid".generate; local hmac_sha1 = require "util.hmac".sha1; local json_enc...
mit
cryptotoad/prosody-modules
mod_pubsub_hub/mod_pubsub_hub.lua
32
6808
-- Copyright (C) 2011 - 2012 Kim Alvefur -- -- This file is MIT/X11 licensed. local http = require "net.http"; local formdecode = http.formdecode; local formencode = http.formencode; local http_request = http.request; local uuid = require "util.uuid".generate; local hmac_sha1 = require "util.hmac".sha1; local json_enc...
mit
Gwynthell/FFDB
scripts/zones/Balgas_Dais/Zone.lua
1
1324
----------------------------------- -- -- Zone: Balgas_Dais (146) -- ----------------------------------- package.loaded["scripts/zones/Balgas_Dais/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Balgas_Dais/TextIDs"); -----------------------------------...
gpl-3.0
asgty/teleashraf
plugins/textphoto.lua
16
1343
--[[ ▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ BY MOHAMMED HISHAM ▀▄ ▄▀ ▀▄ ▄▀ BY MOHAMMEDHISHAM (@TH3BOSS) ▀▄ ▄▀ ▀▄ ▄▀ JUST WRITED BY MOHAMMED HISHAM ▀▄ ▄▀ ▀▄ ▄▀ text photo: تحويل الصورة الى ملصق ▀▄ ▄▀ ▀▄...
gpl-2.0
Gwynthell/FFDB
scripts/globals/items/strip_of_bison_jerky.lua
3
1283
----------------------------------------- -- ID: 5207 -- Item: strip_of_bison_jerky -- Food Effect: 60Min, All Races ----------------------------------------- -- Strength 5 -- Mind -2 -- Attack % 18 -- Attack Cap 70 ----------------------------------------- require("scripts/globals/status"); -------------------------...
gpl-3.0
WilliamO7/Sunshell
LUA/modules/music.lua
1
6760
-- Set private "Music" mode mode = "Music" -- Internal module settings FreeIconTopbar("Music") SetBottomRefresh(false) master_index_m = 0 update_list = true text_for_top_screen = "" p_m = 1 if not_started == nil then not_started = true end my_songs = {} cycle_mode = {"No Cycle","All","Subfolder","Song"} if cycle_inde...
gpl-3.0
prefanatic/exsto
lua/exsto/plugins/server/cexecrecon-command.lua
1
1507
-- Exsto -- Console Chat Commands local PLUGIN = exsto.CreatePlugin() PLUGIN:SetInfo({ Name = "Chat Console", ID = "console", Desc = "A plugin that allows running console commands in chat!", Owner = "Prefanatic", } ) function PLUGIN:LuaRun( owner, lua ) RunString( lua ) return { COLOR.NAME, owner, COLOR.NO...
gpl-3.0
Gwynthell/FFDB
scripts/globals/spells/slowga.lua
3
1279
----------------------------------------- -- Spell: Slow -- Spell accuracy is most highly affected by Enfeebling Magic Skill, Magic Accuracy, and MND. -- Slow's potency is calculated with the formula (150 + dMND*2)/1024, and caps at 300/1024 (~29.3%). -- And MND of 75 is neccessary to reach the hardcap of Slow. -------...
gpl-3.0
Gwynthell/FFDB
scripts/globals/items/galkan_sausage_+1.lua
3
1249
----------------------------------------- -- ID: 5859 -- Item: galkan_sausage_+1 -- Food Effect: 30Min, All Races ----------------------------------------- -- Strength 4 -- Intelligence -5 -- Attack 10 -- Ranged Attack 10 ----------------------------------------- require("scripts/globals/status"); -------------------...
gpl-3.0
Vivitarut/darkstar
scripts/globals/spells/anemohelix.lua
4
1715
-------------------------------------- -- Spell: Anemohelix -- Deals wind damage that gradually reduces -- a target's HP. Damage dealt is greatly affected by the weather. -------------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/...
gpl-3.0
Vivitarut/darkstar
scripts/zones/The_Sanctuary_of_ZiTah/npcs/Limion_RK.lua
8
2996
----------------------------------- -- Area: The Sanctuary of Zi'Tah -- NPC: Limion, R.K. -- Border Conquest Guards -- @pos -252.454 -1.958 624.366 121 ----------------------------------- package.loaded["scripts/zones/The_Sanctuary_of_ZiTah/TextIDs"] = nil; ----------------------------------- require("scripts/globals...
gpl-3.0
ezibyte/EziSocial-PhotoExample
Cocos2dx-3x/PhotoExample/cocos2d/tests/lua-tests/src/XMLHttpRequestTest/XMLHttpRequestTest.lua
5
5853
require("json") local function XMLHttpRequestLayer() local layer = cc.Layer:create() local winSize = cc.Director:getInstance():getWinSize() local margin = 40 local space = 35 local function init() local label = cc.Label:createWithTTF("XML Http Request Test", s_arialPath, 28) label...
apache-2.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Bastok_Markets/npcs/Malene.lua
29
2371
----------------------------------- -- Area: Bastok Markets -- NPC: Malene -- Type: Quest NPC -- @zone: 235 -- @pos -173 -4 64 ----------------------------------- package.loaded["scripts/zones/Bastok_Markets/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/globals/titles"); requ...
gpl-3.0
shkan/DB
plugins/commands.lua
31
2957
-------------------------------------------------- -- ____ ____ _____ -- -- | \| _ )_ _|___ ____ __ __ -- -- | |_ ) _ \ | |/ ·__| _ \_| \/ | -- -- |____/|____/ |_|\____/\_____|_/\/\_| -- -- -- --------------...
gpl-2.0
Gwynthell/FFDB
scripts/zones/Southern_San_dOria/npcs/Ailevia.lua
5
1831
----------------------------------- -- Area: Southern San d'Oria -- NPC: Ailevia -- Adventurer's Assistant -- Only recieving Adv.Coupon and simple talk event are scripted -- This NPC participates in Quests and Missions -- @zone 230 -- @pos -8 1 1 ------------------------------------- package.loaded["scripts/zones/Sout...
gpl-3.0
Gwynthell/FFDB
scripts/zones/North_Gustaberg/npcs/Stone_Monument.lua
1
1244
----------------------------------- -- Area: North Gustaberg -- NPC: Stone Monument -- Involved in quest "An Explorer's Footsteps" -- @pos -199.635 96.106 505.624 106 ----------------------------------- package.loaded["scripts/zones/North_Gustaberg/TextIDs"] = nil; ------------------------------------- require("sc...
gpl-3.0
kepler155c/opus-apps
miners/simpleMiner.lua
1
14116
local Pathing = require('turtle.pathfind') local Point = require('opus.point') local Util = require('opus.util') local fs = _G.fs local read = _G.read local os = _G.os local turtle = _G.turtle local args = { ... } local options = { chunks = { arg = 'c', type = 'number', value = -1, desc ...
mit
greatwolf/LAuth_2FA
extern/sha1.lua
6
9945
local sha1 = { _VERSION = "sha.lua 0.5.0", _URL = "https://github.com/kikito/sha.lua", _DESCRIPTION = [[ SHA-1 secure hash computation, and HMAC-SHA1 signature computation in Lua (5.1) Based on code originally by Jeffrey Friedl (http://regex.info/blog/lua/sha1) And modified by Eike Deck...
mit
Gwynthell/FFDB
scripts/zones/Spire_of_Mea/npcs/Radiant_Aureole.lua
2
1036
----------------------------------- -- Area: Spire of Mea -- NPC: Radiant Aureole ----------------------------------- package.loaded["scripts/zones/Spire_of_Mea/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Spire_of_Mea/TextIDs"); ----------------------------------- -- onTrade Action --...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Cloister_of_Flames/bcnms/trial-size_trial_by_fire.lua
6
2048
----------------------------------- -- Area: Cloister of Flames -- BCNM: Trial-size Trial by Fire -- @pos -721 0 -598 207 ----------------------------------- package.loaded["scripts/zones/Cloister_of_Flames/TextIDs"] = nil; ------------------------------------- require("scripts/globals/keyitems"); require("scripts/glo...
gpl-3.0
clrksml/jailbreak
gamemode/sh_config.lua
1
7403
// Disables the provided HUD. // Only change the booleans GM.ShouldDrawHUD = { ["hud"] = true, ["pid"] = true , ["ammo"] = true, ["weapon"] = true , ["spectator"] = true, ["lr"] = true, ["help"] = true, ["notices"] = true } // Disables the provided Scoreboard. // Change boolean to true or false GM.ShowScoreBoard ...
gpl-3.0
sammyt291/wire
lua/entities/info_wiremapinterface/entityoverride.lua
17
4526
-- Stuff that the entity gets for its wire stuff. local WIREENT = {} -- Trigger wire input function WIREENT:TriggerInput(name, value, ...) if (!name or (name == "") or !value) then return end local Entity = self._WireMapInterfaceEnt if (!IsValid(Entity)) then return end if (!Entity.TriggerWireInput) then return e...
apache-2.0
Vivitarut/darkstar
scripts/zones/West_Sarutabaruta/Zone.lua
2
2457
----------------------------------- -- -- Zone: West_Sarutabaruta (115) -- ----------------------------------- package.loaded[ "scripts/zones/West_Sarutabaruta/TextIDs"] = nil; ----------------------------------- require( "scripts/zones/West_Sarutabaruta/TextIDs"); require( "scripts/globals/icanheararainbow")...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Western_Altepa_Desert/Zone.lua
27
4592
----------------------------------- -- -- Zone: Western_Altepa_Desert (125) -- ----------------------------------- package.loaded["scripts/zones/Western_Altepa_Desert/TextIDs"] = nil; package.loaded["scripts/globals/chocobo_digging"] = nil; ----------------------------------- require("scripts/zones/Western_Al...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Northern_San_dOria/npcs/Alphollon_C_Meriard.lua
19
3153
----------------------------------- -- Area: Northern San d'Oria -- NPC: Alphollon C Meriard -- Type: Purifies cursed items with their corresponding abjurations. -- @zone: 231 -- @pos 98.108 -1 137.999 ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ---------------...
gpl-3.0
wizardbottttt/Unknown8765
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
DoktorAmir/Test
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
Gwynthell/FFDB
scripts/globals/abilities/violent_flourish.lua
1
2926
----------------------------------- -- Ability: Violent Flourish ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/status"); require("scripts/globals/weaponskills"); require("scripts/globals/magic"); ----------------------------------- -- OnUseAbility ------------------...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/globals/weaponskills/ruinator.lua
30
1646
----------------------------------- -- Ruinator -- Axe weapon skill -- Skill level: 357 -- Description: Delivers a four-hit attack. params.accuracy varies with TP -- In order to obtain Ruinator, the quest Martial Mastery must be completed. -- This Weapon Skill's first hit params.ftp is duplicated for all addition...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Quicksand_Caves/npcs/HomePoint#1.lua
3
1717
----------------------------------- -- Area: Quicksand_Caves -- NPC: HomePoint#1 -- @pos -984 17 -289 208 ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Quicksan...
gpl-3.0
Gwynthell/FFDB
scripts/globals/items/pipin_hot_popoto.lua
3
1179
----------------------------------------- -- ID: 4282 -- Item: pipin_hot_popoto -- Food Effect: 60Min, All Races ----------------------------------------- -- HP 25 -- Vitality 3 -- HP recovered while healing 1 ----------------------------------------- require("scripts/globals/status"); -------------------------------...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Northern_San_dOria/npcs/Arlenne.lua
36
2044
----------------------------------- -- Area: Northern San d'Oria -- NPC: Arlenne -- Standard Merchant NPC ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/shop...
gpl-3.0
Vivitarut/darkstar
scripts/commands/addeffect.lua
7
1728
--------------------------------------------------------------------------------------------------- -- func: addeffect -- auth: Lautan -- desc: Adds the given effect to the given player. --------------------------------------------------------------------------------------------------- cmdprops = { permiss...
gpl-3.0
Gwynthell/FFDB
scripts/zones/Aydeewa_Subterrane/npcs/qm1.lua
15
1185
----------------------------------- -- Area: Aydeewa Subterrane -- NPC: ??? (Spawn Nosferatu(ZNM T3)) -- @pos -199 8 -62 68 ----------------------------------- package.loaded["scripts/zones/Aydeewa_Subterrane/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aydeewa_Subterrane/TextIDs"); -...
gpl-3.0
cristiana214/cristianachavez214-cristianachavez
lua/luasocket/test/testclnt.lua
50
20248
local socket = require"socket" host = host or "localhost" port = port or "8383" function pass(...) local s = string.format(unpack(arg)) io.stderr:write(s, "\n") end function fail(...) local s = string.format(unpack(arg)) io.stderr:write("ERROR: ", s, "!\n") socket.sleep(3) os.exit() end function...
apache-2.0
kepler155c/opus-apps
turtle/obsidian.lua
1
2099
local Point = require('opus.point') local Util = require('opus.util') local os = _G.os local turtle = _G.turtle local checkedNodes, nodes local function addNode(node) for i = 0, 3 do local hi = turtle.getHeadingInfo(i) local testNode = { x = node.x + hi.xd, z = node.z + hi.zd } local key = table.concat...
mit
masterkorp/Vicious
contrib/rss.lua
18
1741
--------------------------------------------------- -- Licensed under the GNU General Public License v2 -- * (c) 2009, olcc -- -- This is now a standalone RSS reader for awesome: -- * http://github.com/olcc/aware --------------------------------------------------- -- {{{ Grab environment local pairs = pairs local io...
gpl-2.0
asgty/teleashraf
plugins/TeleBoss1.lua
1
1932
--[[ ▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ BY MOHAMMED HISHAM ▀▄ ▄▀ ▀▄ ▄▀ BY MOHAMMEDHISHAM (@TH3BOSS) ▀▄ ▄▀ ▀▄ ▄▀ JUST WRITED BY MOHAMMED HISHAM ▀▄ ▄▀ ▀▄ ▄▀ مساعدة 1 ...
gpl-2.0
Vivitarut/darkstar
scripts/zones/Windurst_Waters_[S]/npcs/Ragyaya.lua
38
1043
----------------------------------- -- Area: Windurst Waters (S) -- NPC: Ragyaya -- Type: Standard NPC -- @zone: 94 -- @pos -95.376 -3 60.795 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Waters_[S]/TextIDs"] = nil; ------...
gpl-3.0
sammyt291/wire
lua/entities/gmod_wire_teleporter.lua
6
10949
AddCSLuaFile() DEFINE_BASECLASS( "base_wire_entity" ) ENT.PrintName = "Wire Teleporter" ENT.WireDebugName = "Teleporter" ENT.Author = "Divran" if CLIENT then return end -- No more client CreateConVar("wire_teleporter_cooldown","1",{FCVAR_ARCHIVE,FCVAR_NOTIFY}) function ENT:Initialize() self:PhysicsInit( SOLID_V...
apache-2.0
Vivitarut/darkstar
scripts/globals/weaponskills/pyrrhic_kleos.lua
4
4863
----------------------------------- -- Pyrrhic Kleos -- Dagger weapon skill -- Skill level: N/A -- Description: Delivers a fourfold attack that lowers target's evasion. Duration of effect varies with TP. Terpsichore: Aftermath effect varies with TP. -- Available only after completing the Unlocking a Myth (D...
gpl-3.0
Gwynthell/FFDB
scripts/zones/Quicksand_Caves/Zone.lua
1
5323
----------------------------------- -- -- Zone: Quicksand_Caves (208) -- ----------------------------------- package.loaded["scripts/zones/Quicksand_Caves/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems"); require("scripts/zones/Quicksand_Cave...
gpl-3.0
claudelee/vlc
share/lua/playlist/youtube.lua
22
14739
--[[ $Id$ Copyright © 2007-2013 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. This program is dist...
gpl-2.0
Joeyjohjjo/Johjjodarkfork
scripts/globals/spells/bluemagic/cimicine_discharge.lua
10
1407
----------------------------------------- -- Spell: Cimicine Discharge -- Reduces the attack speed of enemies within range -- Spell cost: 32 MP -- Monster Type: Vermin -- Spell Type: Magical (Earth) -- Blue Magic Points: 3 -- Stat Bonus: DEX+1, AGI+2 -- Level: 78 -- Casting Time: 3 seconds -- Recast Time: 20...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Aht_Urhgan_Whitegate/npcs/Hadahda.lua
37
1033
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Hadahda -- Type: Standard NPC -- @pos -112.029 -6.999 -66.114 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Aht_Urhgan_W...
gpl-3.0
jdhk94/DarkRP
entities/entities/darkrp_billboard/shared.lua
7
2771
ENT.Type = "anim" ENT.Base = "base_gmodentity" ENT.PrintName = "DarkRP billboard" ENT.Instructions = "Shows advertisements." ENT.Author = "FPtje" ENT.Spawnable = false ENT.Editable = true ENT.IsDarkRPBillboard = true cleanup.Register("advert_billboards") function ENT:SetupDataTables() self:NetworkVar("String", 0...
mit
Vivitarut/darkstar
scripts/zones/Windurst_Walls/npcs/Orudoba-Sondeba.lua
38
1044
----------------------------------- -- Area: Windurst Walls -- NPC: Orudoba-Sondeba -- Type: Standard NPC -- @zone: 239 -- @pos 70.086 -3.503 -69.939 -- -- Auto-Script: Requires Verification (Verfied by Brawndo) ----------------------------------- package.loaded["scripts/zones/Windurst_Walls/TextIDs"] = nil; -----...
gpl-3.0
Gwynthell/FFDB
scripts/globals/spells/slow_ii.lua
1
1548
----------------------------------------- -- Spell: Slow -- Spell accuracy is most highly affected by Enfeebling Magic Skill, Magic Accuracy, and MND. -- Slow's potency is calculated with the formula (150 + dMND*2)/1024, and caps at 300/1024 (~29.3%). -- And MND of 75 is neccessary to reach the hardcap of Slow. -------...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Northern_San_dOria/npcs/Shomo_Pochachilo.lua
38
1288
----------------------------------- -- Area: Northern San d'Oria -- NPC: Shomo Pochachilo -- Type: Standard Info NPC -- @zone: 231 -- @pos 28.369 -0.199 30.061 ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Sealions_Den/Zone.lua
15
2028
----------------------------------- -- -- Zone: Sealions_Den (32) -- ----------------------------------- package.loaded["scripts/zones/Sealions_Den/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/zones/Sealions_Den/TextIDs"); ----------------------...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Norg/npcs/Vuliaie.lua
19
1256
----------------------------------- -- Area: Norg -- NPC: Vuliaie -- Type: Tenshodo Merchant -- @pos -24.259 0.891 -19.556 252 ----------------------------------- package.loaded["scripts/zones/Norg/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/sh...
gpl-3.0
Gwynthell/FFDB
scripts/zones/Port_Bastok/npcs/Sawyer.lua
17
1551
----------------------------------- -- Area: Port Bastok -- NPC: Sawyer -- Standard Merchant NPC -- Confirmed shop stock, August 2013 ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Port_Bastok/TextIDs"] = nil; require("scripts/zones/Port_Bastok/TextIDs"); ----------...
gpl-3.0
Gwynthell/FFDB
scripts/globals/spells/bluemagic/cannonball.lua
4
1055
require("scripts/globals/magic"); require("scripts/globals/status"); require("scripts/globals/bluemagic"); ----------------------------------------- -- OnSpellCast ----------------------------------------- function OnMagicCastingCheck(caster,target,spell) return 0; end; function onSpellCast(caster,target,spell) ...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Western_Altepa_Desert/npcs/Cermet_Headstone.lua
17
2670
----------------------------------- -- Area: Western Altepa Desert -- NPC: Cermet Headstone -- Involved in Mission: ZM5 Headstone Pilgrimage (Earth Fragment) -- @pos -108 10 -216 125 ----------------------------------- package.loaded["scripts/zones/Western_Altepa_Desert/TextIDs"] = nil; ------------------------...
gpl-3.0
olax/prosody-modules
mod_http_muc_log/mod_http_muc_log.lua
15
8601
local mt = require"util.multitable"; local datetime = require"util.datetime"; local jid_split = require"util.jid".split; local nodeprep = require"util.encodings".stringprep.nodeprep; local uuid = require"util.uuid".generate; local it = require"util.iterators"; local gettime = require"socket".gettime; local url = requir...
mit
UPenn-RoboCup/UPennalizers
Player/Motion/keyframes/km_NaoV4_StandupFromBack.lua
1
8353
local mot={}; mot.servos={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,}; mot.keyframes={ { angles={--1 -0.15497589111328,0.443284034729,1.7272421121597,0.15949392318726,-0.618243932724,-0.022968053817749,-0.22238802909851,-0.032171964645386,0.23627805709839,0.032171964645386,0.14262008666992,4.1961669...
gpl-3.0
ezibyte/EziSocial-PhotoExample
Cocos2dx-3x/PhotoExample/cocos2d/cocos/scripting/lua-bindings/auto/api/Animate3D.lua
6
1692
-------------------------------- -- @module Animate3D -- @extend ActionInterval -- @parent_module cc -------------------------------- -- @function [parent=#Animate3D] setSpeed -- @param self -- @param #float float -------------------------------- -- @function [parent=#Animate3D] setWeight -- @param self --...
apache-2.0
3scale/nginx-oauth-templates
oauth2/authorization-code-flow/no-token-generation/nginx.lua
1
11330
-- -*- mode: lua; -*- -- Version: -- Error Messages per service local _M = {} service_CHANGE_ME_SERVICE_ID = { error_auth_failed = 'Authentication failed', error_auth_missing = 'Authentication parameters missing', auth_failed_headers = 'text/plain; charset=us-ascii', auth_missing_headers = 'text/plain; charset...
mit
Gwynthell/FFDB
scripts/zones/Windurst_Woods/npcs/Kopuro-Popuro.lua
19
6247
----------------------------------- -- 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
Vivitarut/darkstar
scripts/zones/Upper_Jeuno/npcs/Rhea_Myuliah.lua
16
1658
----------------------------------- -- Area: Upper Jeuno -- NPC: Rhea Myuliah -- Type: Standard NPC -- @zone: 244 -- @pos -56.220 -1 101.805 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Upper_Jeuno/TextIDs"] = nil; ---------------...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Kazham/Zone.lua
4
1612
----------------------------------- -- -- Zone: Kazham (250) -- ----------------------------------- ----------------------------------- -- onInitialize ----------------------------------- function onInitialize(zone) end; ----------------------------------- -- onConquestUpdate ---------------------...
gpl-3.0
Gwynthell/FFDB
scripts/zones/Apollyon/mobs/Water_Elemental.lua
14
2337
----------------------------------- -- Area: Apollyon SW -- NPC: elemental ----------------------------------- package.loaded["scripts/zones/Apollyon/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Apollyon/TextIDs"); ----------------------------------- ...
gpl-3.0
Gwynthell/FFDB
scripts/zones/Selbina/npcs/Gabwaleid.lua
2
1452
----------------------------------- -- Area: Selbina -- NPC: Gabwaleid -- Involved in Quest: Riding on the Clouds -- @pos -17 -7 11 248 ----------------------------------- package.loaded["scripts/zones/Selbina/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Selbina/TextIDs"); require("scrip...
gpl-3.0
metakirby5/.dots
base/.config/mpv/scripts/seek-to.lua
2
3426
local assdraw = require 'mp.assdraw' local active = false local current_time = {} for i = 1, 9 do current_time[i] = 0 end local cursor_position = 1 local time_scale = {60*60*10, 60*60, 60*10, 60, 10, 1, 0.1, 0.01, 0.001} local ass_begin = mp.get_property("osd-ass-cc/0") local ass_end = mp.get_property("osd-ass-cc/...
mit
crazyhamedboy/crazyboyboy
plugins/id.lua
226
4260
local function user_print_name(user) if user.print_name then return user.print_name end local text = '' if user.first_name then text = user.last_name..' ' end if user.lastname then text = text..user.last_name end return text end local function returnids(cb_extra, success, result) local re...
gpl-2.0
Gwynthell/FFDB
scripts/zones/Windurst_Waters/npcs/Orn.lua
4
1594
----------------------------------- -- Area: Windurst Waters -- NPC: Orn -- @pos -68 -9 30 238 ----------------------------------- require("scripts/globals/settings"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(player,npc,trade) end; -----------------...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Attohwa_Chasm/npcs/HomePoint#1.lua
12
1183
----------------------------------- -- Area: Attohwa Chasm -- NPC: HomePoint#2 -- @pos ----------------------------------- package.loaded["scripts/zones/Attohwa_Chasm/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Attohwa_Chasm/TextIDs"); require("scripts/globals/homepoint"); ----...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Windurst_Woods/npcs/Peshi_Yohnts.lua
44
2158
----------------------------------- -- Area: Windurst Woods -- NPC: Peshi Yohnts -- Type: Bonecraft Guild Master -- @pos -6.175 -6.249 -144.667 241 ----------------------------------- package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil; ----------------------------------- require("scripts/globals/status"); r...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Aht_Urhgan_Whitegate/npcs/Saluhwa.lua
34
1475
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Saluhwa -- Standard Merchant NPC ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/globals/shop"); require("scripts/zones/Aht_Urh...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/King_Ranperres_Tomb/mobs/Vrtra.lua
10
2098
----------------------------------- -- Area: King Ranperre's Tomb -- NPC: Vrtra ----------------------------------- require("scripts/globals/status"); require("scripts/globals/titles"); local offsets = {1, 3, 5, 2, 4, 6}; ----------------------------------- -- OnMobInitialize Action --------------------...
gpl-3.0
Vivitarut/darkstar
scripts/zones/Windurst_Woods/npcs/Hae_Jakkya.lua
19
1330
----------------------------------- -- Area: Windurst Woods -- NPC: Hae Jakkya -- Working 100% ----------------------------------- require("scripts/globals/settings"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(player,npc,trade) end; --...
gpl-3.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Port_San_dOria/npcs/Pomilla.lua
17
1693
----------------------------------- -- Area: Port San d'Oria -- NPC: Pomilla -- Involved in Quest: Lure of the Wildcat (San d'Oria) -- @pos -38 -4 -55 232 ----------------------------------- package.loaded["scripts/zones/Port_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/glo...
gpl-3.0
Gwynthell/FFDB
scripts/globals/abilities/pets/blizzard_iv.lua
4
1124
--------------------------------------------------- -- Aero 2 --------------------------------------------------- require("/scripts/globals/settings"); require("/scripts/globals/status"); require("/scripts/globals/monstertpmoves"); require("/scripts/globals/magic"); ---------------------------------------------------...
gpl-3.0
Gwynthell/FFDB
scripts/zones/Carpenters_Landing/npcs/Beugungel.lua
19
1189
----------------------------------- -- Area: Carpenters' Landing -- NPC: Beugungel -- Type: Guild Merchant NPC (Woodworking Guild) -- @pos -333.729, -5.512, 475.647 2 ----------------------------------- package.loaded["scripts/zones/Carpenters_Landing/TextIDs"] = nil; ----------------------------------- require("...
gpl-3.0
Vivitarut/darkstar
scripts/zones/North_Gustaberg/Zone.lua
2
2008
----------------------------------- -- -- Zone: North_Gustaberg (106) -- ----------------------------------- package.loaded["scripts/zones/North_Gustaberg/TextIDs"] = nil; ----------------------------------- require("scripts/zones/North_Gustaberg/TextIDs"); require( "scripts/globals/icanheararainbow"); ---...
gpl-3.0
nanomsg/luajit-nanomsg
examples/pipeline.lua
1
1267
-- Pipeline -- Ported from: https://github.com/dysinger/nanomsg-examples local usage = [[ USAGE: luajit pipeline.lua node0 <URL> luajit pipeline.lua node1 <URL> <MSG> EXAMPLE: luajit pipeline.lua node0 'ipc:///tmp/pipeline.ipc' & node0=$! && sleep 1 luajit pipeline.lua node1 'ipc:///tmp/pipeline.ipc' 'Hello, W...
mit
Vivitarut/darkstar
scripts/zones/Al_Zahbi/npcs/Numaaf.lua
12
2250
----------------------------------- -- Area: Al Zahbi -- NPC: Numaaf -- Type: Cooking Normal/Adv. Image Support -- @pos 54.966 -7 8.328 48 ----------------------------------- package.loaded["scripts/zones/Al_Zahbi/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Al_Zahbi/TextIDs"); requ...
gpl-3.0
vobject/kinect-experiments
external/vlc-1.1.11/lua/playlist/canalplus.lua
113
3501
--[[ $Id: $ Copyright (c) 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. This program is distr...
gpl-2.0
Joeyjohjjo/Johjjodarkfork
scripts/zones/Spire_of_Mea/npcs/Radiant_Aureole.lua
17
1077
----------------------------------- -- Area: Spire of Mea -- NPC: Radiant Aureole ----------------------------------- package.loaded["scripts/zones/Spire_of_Mea/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Spire_of_Mea/TextIDs"); ----------------------------------- -- onTrade...
gpl-3.0
BurmistrovJ/prosody-modules
mod_auth_ldap/mod_auth_ldap.lua
31
3900
-- mod_auth_ldap local new_sasl = require "util.sasl".new; local lualdap = require "lualdap"; local function ldap_filter_escape(s) return (s:gsub("[*()\\%z]", function(c) return ("\\%02x"):format(c:byte()) end)); end -- Config options local ldap_server = module:get_option_string("ldap_server", "localhost"); local lda...
mit
aminsa2000/nod32
plugins/location.lua
93
1704
-- Implement a command !loc [area] which uses -- the static map API to get a location image -- Not sure if this is the proper way -- Intent: get_latlong is in time.lua, we need it here -- loadfile "time.lua" -- Globals -- If you have a google api key for the geocoding/timezone api do local api_key = nil local base_...
gpl-2.0
Vivitarut/darkstar
scripts/globals/spells/meteor.lua
4
2160
----------------------------------------- -- Spell: Meteor -- Deals non-elemental damage to an enemy. ----------------------------------------- require("/scripts/globals/settings"); require("scripts/globals/magic"); require("scripts/globals/status"); require("/scripts/globals/monstertpmoves"); ---------------...
gpl-3.0
sammyt291/wire
lua/wire/client/sound_browser.lua
2
27136
// A sound browser for the sound emitter and the expression 2 editor. // Made by Grocel. local max_char_count = 200 //File length limit local max_char_chat_count = 110 // chat has a ~128 char limit, varies depending on char wide. local Disabled_Gray = Color(140, 140, 140, 255) local SoundBrowserPanel = nil local Tab...
apache-2.0