repo_name
stringlengths
6
69
path
stringlengths
6
178
copies
stringclasses
278 values
size
stringlengths
4
7
content
stringlengths
671
917k
license
stringclasses
15 values
lichtl/darkstar
scripts/zones/Southern_San_dOria/npcs/Esmallegue.lua
14
1536
----------------------------------- -- Area: Southern San d'Oria -- NPC: Esmallegue -- General Info NPC -- @zone 230 -- @pos 0 2 -83 ------------------------------------- package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Southern_San_dOria/Tex...
gpl-3.0
DrYaling/eluna-trinitycore
src/server/scripts/Scripts-master/Blizzlike/EasternKingdoms/zone_eversong_woods.lua
1
4849
--[[ EmuDevs <http://emudevs.com/forum.php> Eluna Lua Engine <https://github.com/ElunaLuaEngine/Eluna> Eluna Scripts <https://github.com/ElunaLuaEngine/Scripts> Eluna Wiki <http://wiki.emudevs.com/doku.php?id=eluna> -= Script Information =- * Zone: Eversong Woods * QuestId: 8488 / 8490 ...
gpl-2.0
LuaDist2/luchia
src/luchia/utilities.lua
2
2734
--- High-level utilities class. -- -- Contains all high-level utility methods. This module should be used instead -- of the core modules when possible. -- -- See the @{utilities.lua} example for more detail. -- -- @classmod luchia.utilities -- @author Chad Phillips -- @copyright 2011-2015 Chad Phillips require "luchia...
bsd-3-clause
meepdarknessmeep/hash.js
plugins/lua/sand_modules/hook.lua
2
2004
local persist = true local javascript_call = true local override_callstate = true local persistHooks = {} local hooks = {} local function Add( event, id, callback ) if ( type( callback ) ~= "function" ) then error( "bad argument #3 to 'Add' (function expected, got " .. type( callback ) .. ")", 2 ) end if persi...
cc0-1.0
lichtl/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Sorrowful_Sage.lua
14
2481
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Sorrowful Sage -- Type: Assault Mission Giver -- @pos 134.096 0.161 -30.401 50 ----------------------------------- package.loaded["scripts/zones/Aht_Urhgan_Whitegate/TextIDs"] = nil; ----------------------------------- require("scripts/globa...
gpl-3.0
OctoEnigma/shiny-octo-system
gamemodes/terrortown/entities/entities/ttt_hat_deerstalker.lua
2
3484
AddCSLuaFile() ENT.Type = "anim" ENT.Base = "base_anim" ENT.Model = Model("models/ttt/deerstalker.mdl") ENT.CanHavePrints = false ENT.CanUseKey = true AccessorFuncDT(ENT, "worn", "BeingWorn") function ENT:SetupDataTables() self:DTVar("Bool", 0, "worn") end function ENT:Initialize() self:SetBeingWorn(true) ...
mit
lichtl/darkstar
scripts/globals/spells/sinewy_etude.lua
27
1843
----------------------------------------- -- Spell: Sinewy Etude -- Static STR Boost, BRD 24 ----------------------------------------- require("scripts/globals/status"); require("scripts/globals/magic"); ----------------------------------------- -- OnSpellCast ----------------------------------------- function onMag...
gpl-3.0
OctoEnigma/shiny-octo-system
gamemodes/darkrp/entities/entities/drug/cl_init.lua
12
1493
include("shared.lua") function ENT:Initialize() end function ENT:Draw() self:DrawModel() local Pos = self:GetPos() local Ang = self:GetAngles() local owner = self:Getowning_ent() owner = (IsValid(owner) and owner:Nick()) or DarkRP.getPhrase("unknown") surface.SetFont("HUDNumber5") local...
mit
RunAwayDSP/darkstar
scripts/zones/Bastok_Markets/npcs/Ciqala.lua
12
1058
----------------------------------- -- Area: Bastok Markets -- NPC: Ciqala -- Type: Merchant -- !pos -283.147 -11.319 -143.680 235 ----------------------------------- local ID = require("scripts/zones/Bastok_Markets/IDs") require("scripts/globals/shop") function onTrigger(player,npc) local stock = { 1...
gpl-3.0
AntiSpamTelegram/Anti
plugins/stats.lua
866
4001
do -- Returns a table with `name` and `msgs` 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_prin...
agpl-3.0
lichtl/darkstar
scripts/zones/Northern_San_dOria/npcs/Commojourt.lua
17
1568
----------------------------------- -- Area: Northern San d'Oria -- NPC: Commojourt -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Northern_San_dOria/TextIDs"); require("scripts/global...
gpl-3.0
Startg/permag
plugins/groupmanager-fa.lua
1
106896
local function modadd(msg) local hash = "gp_lang:"..msg.chat_id_ local lang = redis:get(hash) if not is_admin(msg) then if not lang then return '_You are not bot admin_' else return 'شما مدیر ربات نمیباشید😁' end end local data = load_data(_config.moderation.data) if data[tostring(msg.chat...
gpl-3.0
lichtl/darkstar
scripts/zones/Bastok-Jeuno_Airship/TextIDs.lua
22
1080
-- Variable TextID Description text -- General Texts ITEM_CANNOT_BE_OBTAINED = 6379; -- You cannot obtain the item <item> come back again after sorting your inventory ITEM_OBTAINED = 6384; -- Obtained: <item> GIL_OBTAINED = 6385; -- Obtained <number> gil KEYITEM_OBTAINED = 6387; -- Obtain...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Halvung/IDs.lua
8
1525
----------------------------------- -- Area: Halvung ----------------------------------- require("scripts/globals/zone") ----------------------------------- zones = zones or {} zones[dsp.zone.HALVUNG] = { text = { NOTHING_HAPPENS = 119, -- Nothing happens... ITEM_CANNOT_BE_OBTAINED = 6...
gpl-3.0
dani-sj/botevil
plugins/location.lua
185
1565
-- 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
sjznxd/lc-20130222
libs/nixio/docsrc/nixio.lua
151
15824
--- General POSIX IO library. module "nixio" --- Look up a hostname and service via DNS. -- @class function -- @name nixio.getaddrinfo -- @param host hostname to lookup (optional) -- @param family address family [<strong>"any"</strong>, "inet", "inet6"] -- @param service service name or port (optional) -- @return ...
apache-2.0
lichtl/darkstar
scripts/zones/Al_Zahbi/npcs/Danaaba.lua
14
1038
----------------------------------- -- Area: Al Zahbi -- NPC: Danaaba -- Type: Standard NPC -- @zone 48 -- @pos -17.375 -6.999 59.161 -- -- Auto-Script: Requires Verification (Verified by Brawndo) ----------------------------------- package.loaded["scripts/zones/Al_Zahbi/TextIDs"] = nil; --------------------------...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Riverne-Site_B01/npcs/Unstable_Displacement.lua
9
1230
----------------------------------- -- Area: Riverne Site #B01 -- NPC: Unstable Displacement ----------------------------------- local ID = require("scripts/zones/Riverne-Site_B01/IDs"); require("scripts/globals/settings") require("scripts/globals/quests") require("scripts/globals/status") require("scripts/globals/bcn...
gpl-3.0
taiha/luci
modules/luci-mod-admin-mini/luasrc/controller/mini/index.lua
74
1261
-- Copyright 2008 Steven Barth <steven@midlink.org> -- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. module("luci.controller.mini.index", package.seeall) function index() local root = node() if not root.lock then root.target = alias("mini") root.index =...
apache-2.0
we20/ping
plugins/id.lua
355
2795
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, resu...
gpl-2.0
punisherbot/he
plugins/id.lua
355
2795
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, resu...
gpl-2.0
RunAwayDSP/darkstar
scripts/zones/Port_San_dOria/npcs/Ceraulian.lua
9
5082
----------------------------------- -- Area: Port San d'Oria -- NPC: Ceraulian -- Involved in Quest: The Holy Crest -- !pos 0 -8 -122 232 ----------------------------------- require("scripts/globals/status"); require("scripts/globals/quests"); require("scripts/globals/settings"); require("scripts/globals/keyitems"); l...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/mobskills/hydro_canon.lua
11
1388
--------------------------------------------------- -- Hydro_Canon -- Description: -- Type: Magical -- additional effect : 40hp/tick Poison --------------------------------------------------- require("scripts/globals/settings") require("scripts/globals/status") require("scripts/globals/monstertpmoves") -----------...
gpl-3.0
Wiladams/LJIT2RenderingManager
DRMFrameBuffer.lua
4
4803
local ffi = require("ffi") local bit = require("bit") local bor, band, lshift, rshift = bit.bor, bit.band, bit.lshift, bit.rshift local xf86drmMode = require("xf86drmMode_ffi") local xf86drm = require("xf86drm_ffi") local drm = require("drm") local libc = require("libc") -- just a little mmap helper local function ...
mit
lichtl/darkstar
scripts/zones/Jugner_Forest/npcs/Alexius.lua
14
1619
----------------------------------- -- Area: Jugner Forest -- NPC: Alexius -- Involved in Quest: A purchase of Arms & Sin Hunting -- @pos 105 1 382 104 ----------------------------------- package.loaded["scripts/zones/Jugner_Forest/TextIDs"] = nil; ----------------------------------- require("scripts/globals/titl...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/The_Garden_of_RuHmet/npcs/Ebon_Panel.lua
9
3451
----------------------------------- -- Area: The Garden of RuHmet -- NPC: Ebon_Panel -- !pos 100.000 -5.180 -337.661 35 | Mithra Tower -- !pos 740.000 -5.180 -342.352 35 | Elvaan Tower -- !pos 257.650 -5.180 -699.999 35 | Tarutaru Tower -- !pos 577.648 -5.180 -700.000 35 | Galka Tower ---------------------------------...
gpl-3.0
batrick/lua-structure
structure.lua
1
6683
local math = require "math" local floor = math.floor local string = require "string" local format = string.format local table = require "table" local _G = _G local assert = assert local error = error local getmetatable = getmetatable local next = next local rawlen = rawlen local rawget = rawget local rawset = rawset...
mit
Zariel/bollo2
lib/AceGUI-3.0/widgets/AceGUIWidget-Keybinding.lua
1
5537
local AceGUI = LibStub("AceGUI-3.0") -------------------------- -- Keybinding -- -------------------------- do local Type = "Keybinding" local Version = 11 local ControlBackdrop = { bgFile = "Interface\\Tooltips\\UI-Tooltip-Background", edgeFile = "Interface\\Tooltips\\UI-Tooltip-Border", tile = tru...
bsd-3-clause
taiha/luci
modules/luci-base/luasrc/ltn12.lua
84
8954
--[[ LuaSocket 2.0.2 license Copyright � 2004-2007 Diego Nehab Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, me...
apache-2.0
hsmaniee/narsisbaby
plugins/rules.lua
43
2283
-------------------------------------------------- -- ____ ____ _____ -- -- | \| _ )_ _|___ ____ __ __ -- -- | |_ ) _ \ | |/ ·__| _ \_| \/ | -- -- |____/|____/ |_|\____/\_____|_/\/\_| -- -- -- --------------...
gpl-2.0
RunAwayDSP/darkstar
scripts/globals/spells/phalanx.lua
12
1147
----------------------------------------- -- Spell: PHALANX ----------------------------------------- require("scripts/globals/magic") require("scripts/globals/msg") require("scripts/globals/status") ----------------------------------------- function onMagicCastingCheck(caster, target, spell) return 0 end funct...
gpl-3.0
sirinsidiator/ESO-LibAddonMenu
LibAddonMenu-2.0/controls/custom.lua
1
1881
--[[customData = { type = "custom", reference = "MyAddonCustomControl", -- unique name for your control to use as reference (optional) createFunc = function(customControl) end, -- function to call when this custom control was created (optional) refreshFunc = function(customControl) end, -- function ...
artistic-2.0
lichtl/darkstar
scripts/zones/Northern_San_dOria/npcs/Matildie.lua
17
1749
----------------------------------- -- Area: Northern San d'Oria -- NPC: Matildie -- Adventurer's Assistant ------------------------------------- package.loaded["scripts/zones/Northern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Northern_San_dOria/TextIDs"); require("scripts/g...
gpl-3.0
lichtl/darkstar
scripts/zones/Phomiuna_Aqueducts/npcs/_ir9.lua
14
1790
----------------------------------- -- Area: Phomiuna_Aqueducts -- NPC: _ir9 (Iron Gate) -- @pos 70 -1.5 140 27 ----------------------------------- package.loaded["scripts/zones/Phomiuna_Aqueducts/TextIDs"] = nil; ----------------------------------- require("scripts/globals/status"); require("scripts/globals/missions...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Abyssea-Tahrongi/IDs.lua
12
5067
----------------------------------- -- Area: Abyssea-Tahrongi ----------------------------------- require("scripts/globals/keyitems") require("scripts/globals/zone") ----------------------------------- zones = zones or {} zones[dsp.zone.ABYSSEA_TAHRONGI] = { text = { ITEM_CANNOT_BE_OBTAINED = 6382, --...
gpl-3.0
bijanbina/Bijoux
Awesome/awesome/b_focus.lua
1
1645
local awful = require("awful") local naughty = require('naughty') -- debug local client = client local aclient = require("awful.client") local timer = require("gears.timer") local function filter_sticky(c) return not c.sticky and aclient.focus.filter(c) end --- Give focus when clients appear/disappear. -- -- @p...
gpl-3.0
punisherbot/he
plugins/minecraft.lua
624
2605
local usage = { "!mine [ip]: Searches Minecraft server on specified ip and sends info. Default port: 25565", "!mine [ip] [port]: Searches Minecraft server on specified ip and port and sends info.", } local ltn12 = require "ltn12" local function mineSearch(ip, port, receiver) --25565 local responseText = "" l...
gpl-2.0
qenter/vlc-android
vlc/share/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
NiLuJe/koreader
frontend/dump.lua
4
2394
--[[-- A simple serialization function which won't do uservalues, functions, or loops. If you need a more full-featured variant, serpent is available in ffi/serpent ;). ]] local insert = table.insert local indent_prefix = " " local function _serialize(what, outt, indent, max_lv, history, pairs_func) if not ma...
agpl-3.0
lichtl/darkstar
scripts/zones/Giddeus/npcs/HomePoint#1.lua
27
1248
----------------------------------- -- Area: Giddeus -- NPC: HomePoint#1 -- @pos -132 -3 -303 145 ----------------------------------- package.loaded["scripts/zones/Giddeus/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/Giddeus/TextIDs"); require("scripts/globals/homepoint"); ----------...
gpl-3.0
Levak/Anim-It
src/timer.lua
1
1439
----------------------------- -- Levak ©2014 -------------- -- http://levak.free.fr/ ---- -- levak92@gmail.com -------- ----------------------------- ---------- AnimIt : Timer extension -- Bootstrap of timer.start local _tstart = timer.start function timer.start(ms) if not timer.isRunning then _tstart(ms) ...
cc0-1.0
lichtl/darkstar
scripts/zones/Garlaige_Citadel/npcs/Mashira.lua
14
2139
----------------------------------- -- Area: Garlaige Citadel -- NPC: Mashira -- Involved in Quests: Rubbish day, Making Amens! -- @pos 141 -6 138 200 ----------------------------------- package.loaded["scripts/zones/Garlaige_Citadel/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settin...
gpl-3.0
lichtl/darkstar
scripts/zones/Kazham/npcs/Pahya_Lolohoiv.lua
17
1373
----------------------------------- -- Area: Kazham -- NPC: Pahya Lolohoiv -- Standard Merchant NPC ----------------------------------- require("scripts/globals/shop"); package.loaded["scripts/zones/Kazham/TextIDs"] = nil; require("scripts/zones/Kazham/TextIDs"); ----------------------------------- -- onTrade Action ...
gpl-3.0
lichtl/darkstar
scripts/zones/East_Ronfaure/npcs/Croteillard.lua
14
1043
----------------------------------- -- Area: East Ronfaure -- NPC: Croteillard -- Type: Gate Guard -- @pos 87.426 -62.999 266.709 101 ----------------------------------- package.loaded["scripts/zones/East_Ronfaure/TextIDs"] = nil; ----------------------------------- require("scripts/zones/East_Ronfaure/TextIDs"); ...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/abilities/pets/judgment_bolt.lua
11
1212
--------------------------------------------------- -- Judgment Bolt --------------------------------------------------- require("/scripts/globals/settings") require("/scripts/globals/status") require("/scripts/globals/monstertpmoves") require("/scripts/globals/magic") -------------------------------------------------...
gpl-3.0
lichtl/darkstar
scripts/globals/items/coeurl_sub_+1.lua
18
1925
----------------------------------------- -- ID: 5167 -- Item: coeurl_sub_+1 -- Food Effect: 60Min, All Races ----------------------------------------- -- Magic 15 -- Strength 6 -- Agility 1 -- Intelligence -2 -- Health Regen While Healing 1 -- Attack % 22 -- Attack Cap 80 -- Ranged ATT % 22 -- Ranged ATT Cap 80 -- Sle...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Waughroon_Shrine/mobs/Fee.lua
9
1964
----------------------------------- -- Area: Waughroon Shrine -- Mob: Fe'e -- BCNM: Up In Arms ----------------------------------- local ID = require("scripts/zones/Waughroon_Shrine/IDs") require("scripts/globals/status") ----------------------------------- function onMobInitialize(mob) mob:setMobMod(dsp.mobMod.M...
gpl-3.0
lichtl/darkstar
scripts/zones/Southern_San_dOria/npcs/Thadiene.lua
17
2118
----------------------------------- -- Area: Southern San d'Oria -- NPC: Thadiene -- Standard Merchant NPC ----------------------------------- package.loaded["scripts/zones/Southern_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/shop"); requ...
gpl-3.0
lichtl/darkstar
scripts/globals/items/plate_of_octopus_sushi_+1.lua
18
1324
----------------------------------------- -- ID: 5694 -- Item: plate_of_octopus_sushi_+1 -- Food Effect: 60Min, All Races ----------------------------------------- -- Strength 2 -- Accuracy % 17 (Unknown, assuming 1% more than NQ) ----------------------------------------- require("scripts/globals/status"); ----------...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/mobskills/crosswind.lua
11
1102
--------------------------------------------- -- Crosswind -- -- Description: Deals Wind damage to enemies within a fan-shaped area. Additional effect: Knockback -- Type: Breath -- Utsusemi/Blink absorb: Ignores shadows -- Range: Unknown cone -- Notes: --------------------------------------------- require("script...
gpl-3.0
NiLuJe/koreader
plugins/readtimer.koplugin/main.lua
4
8010
local DateTimeWidget = require("ui/widget/datetimewidget") local InfoMessage = require("ui/widget/infomessage") local UIManager = require("ui/uimanager") local WidgetContainer = require("ui/widget/container/widgetcontainer") local logger = require("logger") local util = require("util") local _ = require("gettext") loca...
agpl-3.0
RunAwayDSP/darkstar
scripts/zones/Chamber_of_Oracles/IDs.lua
8
2081
----------------------------------- -- Area: Chamber_of_Oracles ----------------------------------- require("scripts/globals/zone") ----------------------------------- zones = zones or {} zones[dsp.zone.CHAMBER_OF_ORACLES] = { text = { ITEM_CANNOT_BE_OBTAINED = 6382, -- You cannot obtain the ...
gpl-3.0
lichtl/darkstar
scripts/zones/Port_Bastok/npcs/Carmelo.lua
14
4833
----------------------------------- -- Area: Port Bastok -- NPC: Carmelo -- Start & Finishes Quest: Love and Ice, A Test of True Love -- Start Quest: Lovers in the Dusk -- Involved in Quest: The Siren's Tear -- @zone 236 -- @pos -146.476 -7.48 -10.889 ----------------------------------- require("scripts/globals/quests...
gpl-3.0
lichtl/darkstar
scripts/zones/The_Garden_of_RuHmet/bcnms/when_angels_fall.lua
30
2268
----------------------------------- -- Area: The_Garden_of_RuHmet -- Name: when_angels_fall ----------------------------------- package.loaded["scripts/zones/The_Garden_of_RuHmet/TextIDs"] = nil; ----------------------------------- require("scripts/globals/titles"); require("scripts/globals/keyitems"); require("script...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/items/bowl_of_oceanfin_soup.lua
11
1615
----------------------------------------- -- ID: 6070 -- Item: Bowl of Oceanfin Soup -- Food Effect: 4 Hrs, All Races ----------------------------------------- -- Accuracy % 15 Cap 95 -- Ranged Accuracy % 15 Cap 95 -- Attack % 19 Cap 85 -- Ranged Attack % 19 Cap 85 -- Amorph Killer 6 -----------------------------------...
gpl-3.0
thermofisherlsms/xcalibur-workbench
zPane.lua
1
7466
-- Copyright (c) 2016 Thermo Fisher Scientific -- -- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files -- (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, -- merge, ...
mit
lichtl/darkstar
scripts/zones/Bastok_Mines/npcs/Eulaphe.lua
27
1981
----------------------------------- -- Area: Bastok Mines -- NPC: Eulaphe -- Type: Chocobo Renter ----------------------------------- require("scripts/globals/chocobo"); require("scripts/globals/keyitems"); require("scripts/globals/settings"); require("scripts/globals/status"); ----------------------------------- --...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/items/dish_of_spaghetti_carbonara.lua
11
1545
----------------------------------------- -- ID: 5190 -- Item: dish_of_spaghetti_carbonara -- Food Effect: 30Min, All Races ----------------------------------------- -- Health % 14 -- Health Cap 175 -- Magic 10 -- Strength 4 -- Vitality 2 -- Intelligence -3 -- Attack % 17 -- Attack Cap 65 -- Store TP 6 ----------------...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Aydeewa_Subterrane/Zone.lua
9
2145
----------------------------------- -- -- Zone: Aydeewa_Subterrane (68) -- ----------------------------------- local ID = require("scripts/zones/Aydeewa_Subterrane/IDs") require("scripts/globals/keyitems") require("scripts/globals/missions") require("scripts/globals/npc_util") require("scripts/globals/quests") require(...
gpl-3.0
OctoEnigma/shiny-octo-system
addons/Screengrab-master/lua/autorun/sh_screengrab_v2.lua
1
18154
if SERVER then local sg = {} local NWStrings = { "ScreengrabRequest", "StartScreengrab", "ScreengrabInitCallback", "ScreengrabConfirmation", "ScreengrabSendPart", "SendPartBack", "ScreengrabFinished", "rtxappend", "rtxappend2", "Progress", "ScreengrabInterrupted" } for k, v in next, NWStrings ...
mit
lichtl/darkstar
scripts/zones/The_Boyahda_Tree/npcs/HomePoint#1.lua
27
1273
----------------------------------- -- Area: The Boyahda Tree -- NPC: HomePoint#1 -- @pos 88 -15 -217 153 ----------------------------------- package.loaded["scripts/zones/The_Boyahda_Tree/TextIDs"] = nil; require("scripts/globals/settings"); require("scripts/zones/The_Boyahda_Tree/TextIDs"); require("scripts/global...
gpl-3.0
Srynetix/luabind5.2
examples/glut/glut_bindings.lua
38
1543
quit = false function resize_func(w, h) local ratio = w / h print('====== resize') glMatrixMode(gl.PROJECTION) glLoadIdentity() glViewport(0,0,w,h) gluPerspective(45,ratio,1,1000) glMatrixMode(gl.MODELVIEW) glLoadIdentity() end angle = 0 angle2 = 0 previous_time = 0 function display_func() if quit the...
mit
scscgit/scsc_wildstar_addons
WildStarInstantMessenger/Libs/GeminiColor/GeminiColor.lua
7
26057
--================================================================================================ -- -- GeminiColor -- -- An Apollo Package for producing UI controls for picking colors, picking colors, -- and working with color data in multiple formats. -- --===============================================...
mit
yariplus/love-demos
love-controller/input/controller.lua
1
1602
local controller = {} local joystick = null local lastbutton = "none" function controller:update(dt) if not joystick then local joysticks = love.joystick.getJoysticks() joystick = joysticks[1] return end if joystick:isGamepadDown("dpleft") then position.x = position.x - speed * ...
cc0-1.0
taiha/luci
libs/luci-lib-nixio/root/usr/lib/lua/nixio/util.lua
179
5824
--[[ nixio - Linux I/O library for lua Copyright 2009 Steven Barth <steven@midlink.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 $Id$ ]]-- local...
apache-2.0
lichtl/darkstar
scripts/zones/Port_San_dOria/npcs/Artinien.lua
17
1401
----------------------------------- -- Area: Port San d'Oria -- NPC: Artinien -- Standard Info NPC ----------------------------------- package.loaded["scripts/zones/Port_San_dOria/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Port_San_dOria/TextIDs"); require("scripts/globals/quests"); --...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Port_San_dOria/npcs/Joulet.lua
9
3572
----------------------------------- -- Area: Port San d'Oria -- NPC: Joulet -- Starts The Competition -- !pos -18 -2 -45 232 ----------------------------------- local ID = require("scripts/zones/Port_San_dOria/IDs"); require("scripts/globals/npc_util"); require("scripts/globals/settings"); require("scripts/globals/ke...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Bastok_Markets/npcs/Salimah.lua
11
2867
----------------------------------- -- Area: Bastok Markets -- NPC: Salimah -- Notes: Start & Finishes Quest: Gourmet -- !pos -31.687 -6.824 -73.282 235 ----------------------------------- require("scripts/globals/quests"); require("scripts/globals/titles"); local ID = require("scripts/zones/Bastok_Markets/IDs"); requ...
gpl-3.0
taiha/luci
modules/luci-mod-admin-full/luasrc/model/cbi/admin_system/leds.lua
4
4050
-- Copyright 2008 Steven Barth <steven@midlink.org> -- Licensed to the public under the Apache License 2.0. m = Map("system", translate("<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration"), translate("Customizes the behaviour of the device <abbr title=\"Light Emitting Diode\">LED</abbr>s if possible.")) l...
apache-2.0
lichtl/darkstar
scripts/globals/weaponskills/bora_axe.lua
18
1772
----------------------------------- -- Bora Axe -- Axe weapon skill -- Skill level: 290 -- Delivers a single-hit ranged attack at a maximum distance of 15.7'. Chance of binding varies with TP -- Bind doesn't always break from hitting mob. -- This Weapon Skill's first hit params.ftp is duplicated for all additional hits...
gpl-3.0
PrimaStudios/ProjectPrima
src/libs/LOVEly-tiles-master/tmxloader.lua
3
11944
local path = (...):match('^.+[%.\\/]') or '' local grid = require(path..'grid') local atlas = require(path..'atlas') local mapdata = require(path..'mapdata') local map = require(path..'map') local isomap = require(path..'isomap') local drawlist = require(path..'drawlist') local xmlparser = req...
apache-2.0
ld-test/loop
lua/loop/debug/Viewer.lua
11
5744
-------------------------------------------------------------------------------- ---------------------- ## ##### ##### ###### ----------------------- ---------------------- ## ## ## ## ## ## ## ----------------------- ---------------------- ## ## ## ## ## ###### --------------------...
mit
lichtl/darkstar
scripts/zones/Apollyon/mobs/Ice_Elemental.lua
119
2740
----------------------------------- -- Area: Apollyon SW -- NPC: elemental ----------------------------------- package.loaded["scripts/zones/Apollyon/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Apollyon/TextIDs"); ----------------------------------- ...
gpl-3.0
lichtl/darkstar
scripts/zones/Apollyon/mobs/Fire_Elemental.lua
119
2740
----------------------------------- -- Area: Apollyon SW -- NPC: elemental ----------------------------------- package.loaded["scripts/zones/Apollyon/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Apollyon/TextIDs"); ----------------------------------- ...
gpl-3.0
lichtl/darkstar
scripts/zones/Apollyon/mobs/Water_Elemental.lua
119
2740
----------------------------------- -- Area: Apollyon SW -- NPC: elemental ----------------------------------- package.loaded["scripts/zones/Apollyon/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Apollyon/TextIDs"); ----------------------------------- ...
gpl-3.0
google-code/bitfighter
exe/scripts/datadumper.lua
1
7448
-- From http://lua-users.org/wiki/DataDumper --[[ DataDumper.lua Copyright (c) 2007 Olivetti-Engineering SA Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including ...
gpl-2.0
lichtl/darkstar
scripts/zones/Metalworks/npcs/Grohm.lua
14
3042
----------------------------------- -- Area: Metalworks -- NPC: Grohm -- Involved In Mission: Journey Abroad -- @pos -18 -11 -27 237 ----------------------------------- package.loaded["scripts/zones/Metalworks/TextIDs"] = nil; ----------------------------------- require("scripts/globals/missions"); require("scripts/z...
gpl-3.0
lichtl/darkstar
scripts/zones/La_Vaule_[S]/mobs/Lobison.lua
17
1812
----------------------------------- -- Area: La Vaule (S) -- NPC: Lobison ----------------------------------- ----------------------------------- -- onMobSpawn Action ----------------------------------- function onMobSpawn(mob) mob:setLocalVar("transformTime", os.time()) end; ----------------------------------...
gpl-3.0
dufferzafar/ShaR
v0.2.lua
1
2450
function Ravi_Encrypt(string, strength) tbl_RAVI = {"l","y","f","q","o","s","c","b","x","r","d","j","n","e","p","w","a","h","v","k","m","i","u","z","t","g"}; tbl_ALPHA = {"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"}; local string = String.Lower(s...
unlicense
lichtl/darkstar
scripts/zones/Abyssea-Attohwa/npcs/qm10.lua
9
1346
----------------------------------- -- Zone: Abyssea-Attohwa -- NPC: qm10 (???) -- Spawns Nightshade -- @pos ? ? ? 215 ----------------------------------- require("scripts/globals/status"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(player,npc,trade) --...
gpl-3.0
RunAwayDSP/darkstar
scripts/zones/Crawlers_Nest/npcs/qm8.lua
9
2229
----------------------------------- -- Area: Crawlers Nest -- NPC: ??? -- Involved in Quest: The Crimson Trial -- !pos 59 0.1 66 197 ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems"); require("scripts/globals/quests"); local ID = require("scripts/zones/Crawler...
gpl-3.0
sjznxd/lc-20130222
applications/luci-diag-devinfo/luasrc/model/cbi/luci_diag/netdiscover_devinfo_config.lua
80
1153
--[[ LuCI - Lua Configuration Interface (c) 2009 Daniel Dickinson Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 $Id$ ]]-- require("luci.controller.l...
apache-2.0
lichtl/darkstar
scripts/zones/Konschtat_Highlands/npcs/qm1.lua
14
1374
----------------------------------- -- Area: Konschtat Highlands -- NPC: qm1 (???) -- Continues Quests: Past Perfect -- @pos -201 16 80 108 ----------------------------------- package.loaded["scripts/zones/Konschtat_Highlands/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); requ...
gpl-3.0
lichtl/darkstar
scripts/zones/Gusgen_Mines/npcs/Clay.lua
14
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
lichtl/darkstar
scripts/globals/items/magma_steak_+1.lua
18
1597
----------------------------------------- -- ID: 6072 -- Item: Magma Steak +1 -- Food Effect: 240 Min, All Races ----------------------------------------- -- Strength +9 -- Attack +24% Cap 185 -- Ranged Attack +24% Cap 185 -- Vermin Killer +6 ----------------------------------------- require("scripts/globals/status");...
gpl-3.0
lichtl/darkstar
scripts/zones/North_Gustaberg/npcs/Cavernous_Maw.lua
29
1442
----------------------------------- -- Area: North Gustaberg -- NPC: Cavernous Maw -- @pos 466 0 479 106 -- Teleports Players to North Gustaberg [S] ----------------------------------- package.loaded["scripts/zones/North_Gustaberg/TextIDs"] = nil; ----------------------------------- require("scripts/globals/settings"...
gpl-3.0
lichtl/darkstar
scripts/zones/Abyssea-Tahrongi/npcs/qm2.lua
14
1343
----------------------------------- -- Zone: Abyssea-Tahrongi -- NPC: qm2 (???) -- Spawns Vetehinen -- @pos ? ? ? 45 ----------------------------------- require("scripts/globals/status"); ----------------------------------- -- onTrade Action ----------------------------------- function onTrade(player,npc,trade) --[[...
gpl-3.0
lichtl/darkstar
scripts/globals/items/hellsteak.lua
18
1722
----------------------------------------- -- ID: 5609 -- Item: hellsteak -- Food Effect: 180Min, 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
lichtl/darkstar
scripts/zones/Windurst_Walls/npcs/Naih_Arihmepp.lua
14
1471
----------------------------------- -- Area: Windurst Walls -- NPC: Naih Arihmepp -- Type: Standard NPC -- @pos -64.578 -13.465 202.147 239 ----------------------------------- package.loaded["scripts/zones/Windurst_Walls/TextIDs"] = nil; ----------------------------------- require("scripts/globals/quests"); requir...
gpl-3.0
sjznxd/lc-20130222
applications/luci-radvd/luasrc/model/cbi/radvd/interface.lua
78
7996
--[[ LuCI - Lua Configuration Interface Copyright 2010 Jo-Philipp Wich <xm@subsignal.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 $Id$ ]]-- lo...
apache-2.0
lichtl/darkstar
scripts/zones/Giddeus/npcs/Harvesting_Point.lua
17
1079
----------------------------------- -- Area: Giddeus -- NPC: Harvesting Point ----------------------------------- package.loaded["scripts/zones/Giddeus/TextIDs"] = nil; ------------------------------------- require("scripts/globals/harvesting"); require("scripts/zones/Giddeus/TextIDs"); ---------------------------...
gpl-3.0
NiLuJe/koreader
frontend/luasettings.lua
4
8151
--[[-- This module handles generic settings as well as KOReader's global settings system. ]] local dump = require("dump") local ffiutil = require("ffi/util") local lfs = require("libs/libkoreader-lfs") local logger = require("logger") local LuaSettings = {} function LuaSettings:extend(o) o = o or {} setmetat...
agpl-3.0
RunAwayDSP/darkstar
scripts/zones/RuAun_Gardens/Zone.lua
9
2491
----------------------------------- -- -- Zone: RuAun_Gardens (130) -- ----------------------------------- local ID = require("scripts/zones/RuAun_Gardens/IDs"); require("scripts/globals/missions"); require("scripts/globals/conquest"); require("scripts/globals/treasure") require("scripts/globals/status"); require("scri...
gpl-3.0
sdkbox/sdkbox-facebook-sample-v2
samples/Lua/TestLua/Resources/luaScript/EffectsAdvancedTest/EffectsAdvancedTest.lua
8
8894
local kTagTextLayer = 1 local kTagSprite1 = 1 local kTagSprite2 = 2 local kTagBackground = 1 local kTagLabel = 2 local originCreateLayer = createTestLayer local function createTestLayer(title, subtitle) local ret = originCreateLayer(title, subtitle) local bg = CCSprite:create("Images/background3.png") ret...
mit
conupefox/openwrt-d2o
package/my_package/mwan/mwan3-luci/files/usr/lib/lua/luci/model/cbi/mwan3/mwan3_interface.lua
9
9177
-- ------ extra functions ------ -- function iface_check() -- find issues with too many interfaces, reliability and metric uci.cursor():foreach("mwan3", "interface", function (section) local ifname = section[".name"] ifnum = ifnum+1 -- count number of mwan3 interfaces configured -- create list of metrics f...
gpl-2.0
lichtl/darkstar
scripts/zones/North_Gustaberg/npcs/Stone_Monument.lua
14
1295
----------------------------------- -- 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("scri...
gpl-3.0
qenter/vlc-android
vlc/share/lua/playlist/mpora.lua
97
2565
--[[ $Id$ Copyright © 2009 the VideoLAN team Authors: Konstantin Pavlov (thresh@videolan.org) 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 opt...
gpl-2.0
lichtl/darkstar
scripts/zones/Cloister_of_Tides/bcnms/trial-size_trial_by_water.lua
29
2207
----------------------------------- -- Area: Cloister of Tides -- BCNM: Trial by Water ----------------------------------- package.loaded["scripts/zones/Cloister_of_Tides/TextIDs"] = nil; ----------------------------------- require("scripts/globals/keyitems"); require("scripts/globals/shop"); require("scripts/globals/q...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/items/vongola_clam.lua
11
1432
----------------------------------------- -- ID: 5131 -- Item: Vongola Clam -- Food Effect: 5Min, Mithra only ----------------------------------------- -- Dexterity -5 -- Vitality 4 -- Defense +17% - 50 Cap -- HP 5% - 50 Cap ----------------------------------------- require("scripts/globals/status") require("scripts/gl...
gpl-3.0
RunAwayDSP/darkstar
scripts/globals/weaponskills/blade_ei.lua
10
1231
----------------------------------- -- Blade Ei -- Katana weapon skill -- Skill Level: 175 -- Delivers a dark elemental attack. Damage varies with TP. -- Aligned with the Shadow Gorget. -- Aligned with the Shadow Belt. -- Element: Dark -- Modifiers: STR:30% INT:30% -- 100%TP 200%TP 300%TP -- 1.00 1.50 ...
gpl-3.0