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
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/chemistry/medpack_poison_health_c.lua
2
3730
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/component/armor/deflector_shield_ion_feed_unit.lua
3
2308
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kevinmel2000/sl4a
lua/luasocket/samples/cddb.lua
56
1415
local socket = require("socket") local http = require("socket.http") if not arg or not arg[1] or not arg[2] then print("luasocket cddb.lua <category> <disc-id> [<server>]") os.exit(1) end local server = arg[3] or "http://freedb.freedb.org/~cddb/cddb.cgi" function parse(body) local lines = string.gfind(bo...
apache-2.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/furniture/furniture_lamp_table_s01_on.lua
2
3279
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/building/poi/tatooine_valariangang_large2.lua
1
2252
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/poi/objects.lua
165
2016
--Copyright (C) 2009 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/deed/naboo/objects.lua
165
2016
--Copyright (C) 2009 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/npc/objects.lua
165
2016
--Copyright (C) 2009 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/building/faction_perk/objects.lua
165
2016
--Copyright (C) 2009 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
Fighter19/cuberite
Server/Plugins/APIDump/Classes/Plugins.lua
4
23130
return { cPlugin = { Desc = [[cPlugin describes a Lua plugin. This page is dedicated to new-style plugins and contain their functions. Each plugin has its own Plugin object. ]], Functions = { GetDirectory = { Return = "string", Notes = "<b>OBSOLETE</b>, use GetFolderName() instead!" }, GetFolderName = { P...
apache-2.0
kidaa/Awakening-Core3
bin/scripts/object/static/item/item_security_scanner.lua
3
2220
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/weapon/ranged/grenade/grenade_fragmentation_light.lua
1
6079
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
Death15/SuperSwatchTG
plugins/stats.lua
458
4098
-- Saves the number of messages from a user -- Can check the number of messages with !stats do local NUM_MSG_MAX = 5 local TIME_CHECK = 4 -- seconds 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....
gpl-2.0
Whit3Tig3R/telegrambot2
plugins/stats.lua
458
4098
-- Saves the number of messages from a user -- Can check the number of messages with !stats do local NUM_MSG_MAX = 5 local TIME_CHECK = 4 -- seconds 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....
gpl-2.0
assassinbo/assassinboy
plugins/stats.lua
458
4098
-- Saves the number of messages from a user -- Can check the number of messages with !stats do local NUM_MSG_MAX = 5 local TIME_CHECK = 4 -- seconds 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....
gpl-2.0
norman/tlua
tlua/tasks.lua
1
1057
local tablex = require "pl.tablex" module("tlua.tasks", package.seeall) local function print_tasks(descs) local keys = tablex.keys(descs) table.sort(keys) local longest = 0 tablex.foreach(keys, function(v) local len = v:len() if len > longest then longest = len end end) local format = "%-" .. long...
mit
kidaa/Awakening-Core3
bin/scripts/mobile/faction/imperial/coa2_imperial_coordinator.lua
1
1181
coa2_imperial_coordinator = Creature:new { objectName = "@mob/creature_names:coa2_imperial_coordinator", socialGroup = "imperial", pvpFaction = "imperial", faction = "imperial", level = 25, chanceHit = 0.36, damageMin = 240, damageMax = 250, baseXp = 2443, baseHAM = 7200, baseHAMmax = 8800, armor = 0, resi...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_selonian_m_09.lua
3
2200
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
eraffxi/darkstar
scripts/zones/Temenos/mobs/Beli.lua
2
1195
----------------------------------- -- Area: Temenos N T -- NPC: Beli ----------------------------------- package.loaded["scripts/zones/Temenos/TextIDs"] = nil; ----------------------------------- require("scripts/globals/limbus"); require("scripts/zones/Temenos/TextIDs"); ----------------------------------- -- onMo...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/wearables/jacket/jacket_s13.lua
3
5184
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
RJ/ketama
lua_ketama/test.lua
2
1378
--[[ Copyright (c) 2009, Phoenix Sol - http://github.com/phoenixsol Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE...
bsd-2-clause
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/bio_engineer/creature/creature_mawgax.lua
1
3343
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/dungeon/corellian_corvette/corvette_search_rebel_destroy_03.lua
3
2360
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/commands/retreat.lua
4
2200
--Copyright (C) 2007 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/ship/components/weapon/wpn_subpro_tripleblaster_mark3.lua
3
2336
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/droid/droid_mse.lua
2
3414
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
houqp/koreader
frontend/ui/data/keyboardlayouts/en_keyboard.lua
1
6650
local en_popup = require("ui/data/keyboardlayouts/keypopup/en_popup") local com = en_popup.com -- comma (,) local prd = en_popup.prd -- period (.) local _at = en_popup._at local _eq = en_popup._eq -- equals sign (=) local _A_ = en_popup._A_ local _a_ = en_popup._a_ local _B_ = en_popup._B_ local _b_ = en_popup._b_ loca...
agpl-3.0
bankiru/nginx-metrix
nginx-metrix/logger.lua
2
1147
local inspect = require 'inspect' local log = function(level, msg, ...) if type(msg) ~= 'string' then msg = inspect(msg) end if length({ ... }) > 0 then msg = msg .. ' :: ' .. inspect({ ... }) end ngx.log(level, '[metrix] ' .. msg) end local stderr = function(...) log(ngx.STD...
mit
eraffxi/darkstar
scripts/zones/Castle_Zvahl_Baileys/Zone.lua
1
2887
----------------------------------- -- -- Zone: Castle_Zvahl_Baileys (161) -- ----------------------------------- package.loaded["scripts/zones/Castle_Zvahl_Baileys/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Castle_Zvahl_Baileys/TextIDs"); require("scripts/zones/Castle_Zvahl_Baileys/Mob...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/vendor/vendor_terminal_small.lua
3
2236
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
hartmark/OpenRA
mods/cnc/maps/nod03a/nod03a.lua
3
2082
--[[ Copyright 2007-2020 The OpenRA Developers (see AUTHORS) This file is part of OpenRA, which is free software. It is made available to you under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later vers...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/terminal/terminal_space.lua
3
2216
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
meshr-net/meshr_tomato-RT-N
usr/lib/lua/luci/model/cbi/luci_statistics/exec.lua
7
2838
--[[ Luci configuration model for statistics - collectd exec plugin configuration (c) 2008 Freifunk Leipzig / Jo-Philipp Wich <xm@leipzig.freifunk.net> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License ...
apache-2.0
eraffxi/darkstar
scripts/zones/Qufim_Island/npcs/Tsonga-Hoponga_WW.lua
2
2942
----------------------------------- -- Area: Qufim Island -- NPC: Tsonga-Hoponga, W.W. -- Type: Outpost Conquest Guards -- !pos -245.366 -20.344 299.502 126 ----------------------------------- package.loaded["scripts/zones/Qufim_Island/TextIDs"] = nil; ----------------------------------- require("scripts/globals/conqu...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_noble_fat_human_female_02.lua
3
2248
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/ship/components/weapon/serverobjects.lua
3
13283
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
eraffxi/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Koyol-Futenol.lua
2
4215
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Koyol-Futenol -- Title Change NPC -- !pos -129 2 -20 50 ----------------------------------- require("scripts/globals/titles"); local title2 = { dsp.title.DARK_RESISTANT , dsp.title.BEARER_OF_THE_MARK_OF_ZAHAK , dsp.title.SEAGULL_PHRATRIE_CREW_...
gpl-3.0
eraffxi/darkstar
scripts/zones/Bhaflau_Thickets/npcs/Runic_Portal.lua
2
1291
----------------------------------- -- Area: Bhaflau Thickets -- NPC: Runic Portal -- Mamook Ja Teleporter Back to Aht Urgan Whitegate -- !pos -211 -11 -818 52 ----------------------------------- package.loaded["scripts/zones/Bhaflau_Thickets/TextIDs"] = nil; ----------------------------------- require("scripts/zones/...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/space/chassis/z95_wing_l.lua
3
2248
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_commoner_naboo_human_male_03.lua
3
2260
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/furniture/furniture_corellia_flagpole.lua
3
2300
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/building/general/bunker_imperial_prison_01.lua
3
2256
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/building/player/construction/construction_player_house_generic_large_style_02.lua
3
2418
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
widelands/widelands
data/tribes/buildings/productionsites/amazons/gold_digger_dwelling/init.lua
1
1865
push_textdomain("tribes") dirname = path.dirname(__file__) wl.Descriptions():new_productionsite_type { name = "amazons_gold_digger_dwelling", -- TRANSLATORS: This is a building name used in lists of buildings descname = pgettext("amazons_building", "Gold Digger Dwelling"), icon = dirname .. "menu.png", ...
gpl-2.0
kidaa/Awakening-Core3
bin/scripts/commands/chargeShot2.lua
1
2674
--Copyright (C) 2007 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/wearables/ithorian/ith_bandolier_s08.lua
3
2474
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_commoner_tatooine_devaronian_male_04.lua
3
2292
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
NezzKryptic/Wire
lua/entities/gmod_wire_datasocket.lua
3
3005
AddCSLuaFile() DEFINE_BASECLASS( "gmod_wire_socket" ) ENT.PrintName = "Wire Data Socket" ENT.WireDebugName = "Socket" function ENT:GetPlugClass() return "gmod_wire_dataplug" end if CLIENT then hook.Add("HUDPaint","Wire_DataSocket_DrawLinkHelperLine",function() local sockets = ents.FindByClass("gmod_wire_datasock...
apache-2.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/deed/event_perk/corsec_2x10_honorguard_deed.lua
1
2296
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/lair/base/poi_all_lair_mound_small_fog_red.lua
2
2344
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
tectronics/saitohud
src/SaitoHUD/lua/saitohud/modules/e2_extensions.lua
3
9007
-- SaitoHUD -- Copyright (c) 2009-2010 sk89q <http://www.sk89q.com> -- Copyright (c) 2010 BoJaN -- -- 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 ...
gpl-2.0
lordtg/jalebduni
plugins/anti_fosh.lua
14
1450
local function run(msg, matches) if is_owner(msg) then return end local data = load_data(_config.moderation.data) if data[tostring(msg.to.id)] then if data[tostring(msg.to.id)]['settings'] then if data[tostring(msg.to.id)]['settings']['antifosh'] then lock_fos...
gpl-2.0
eraffxi/darkstar
scripts/zones/Ifrits_Cauldron/Zone.lua
2
1406
----------------------------------- -- -- Zone: Ifrits_Cauldron (205) -- ----------------------------------- package.loaded["scripts/zones/Ifrits_Cauldron/TextIDs"] = nil; ----------------------------------- require("scripts/zones/Ifrits_Cauldron/TextIDs"); require("scripts/zones/Ifrits_Cauldron/MobIDs"); require("scri...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/mission/quest_item/wald_q2_needed.lua
3
2256
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
eraffxi/darkstar
scripts/zones/Quicksand_Caves/npcs/qm5.lua
2
2079
----------------------------------- -- Area: Quicksand Caves -- NPC: ??? (qm5) -- Involved in Quest: The Missing Piece -- positions: -- 1: !pos 770 0 -419 -- 2: !pos 657 0 -537 -- 3: !pos 749 0 -573 -- 4: !pos 451 -16 -739 -- 5: !pos 787 -16 -819 -- spawn in npc_list is 770 0 -419 ----------------------------------- p...
gpl-3.0
hayword/tfatf_epgp
modules/loot.lua
4
3125
local mod = EPGP:NewModule("loot", "AceEvent-3.0") local L = LibStub("AceLocale-3.0"):GetLocale("EPGP") local LLN = LibStub("LibLootNotify-1.0") local Coroutine = LibStub("LibCoroutine-1.0") local DLG = LibStub("LibDialog-1.0") local ignored_items = { [20725] = true, -- Nexus Crystal [22450] = true, -- Void Cryst...
bsd-3-clause
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_imperial_red_f.lua
3
2204
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/building/poi/creature_lair_boar_wolf.lua
1
2232
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/ship/components/weapon/wpn_generic.lua
3
2260
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/furniture/city/streetlamp_large_red_01.lua
3
2329
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/weapon/melee/2h_sword/crafted_saber/sword_lightsaber_two_handed_s1_gen3.lua
1
6211
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_brigade_marine_trandoshan_female_01.lua
3
2288
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_corvette_imperial_velso.lua
3
2240
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
houqp/koreader
plugins/newsdownloader.koplugin/internaldownloadbackend.lua
5
1755
local http = require("socket.http") local https = require("ssl.https") local logger = require("logger") local ltn12 = require("ltn12") local socket = require('socket') local socket_url = require("socket.url") local InternalDownloadBackend = {} local max_redirects = 5; --prevent infinite redirects function InternalDow...
agpl-3.0
mohammad1212/robot12240
plugins/face.lua
641
3073
local https = require("ssl.https") local ltn12 = require "ltn12" -- Edit data/mashape.lua with your Mashape API key -- http://docs.mashape.com/api-keys local mashape = load_from_file('data/mashape.lua', { api_key = '' }) local function request(imageUrl) local api_key = mashape.api_key if api_key:isempt...
gpl-2.0
eraffxi/darkstar
scripts/globals/items/chunk_of_homemade_cheese.lua
2
1596
----------------------------------------- -- ID: 5225 -- Item: chunk_of_homemade_cheese -- Food Effect: 30Min, All Races ----------------------------------------- -- Health 10 -- Accuracy +12% (cap 80) -- Attack +10% (cap 40) -- Ranged Accuracy +12% (cap 80) -- Ranged Attack +10% (cap 40) ------------------------------...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/food/dish_exo_protein_wafers.lua
2
3257
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/battlefield_marker/battlefield_marker_256m.lua
3
2256
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/loot/loot_schematic/cantina_chair_schematic.lua
2
2606
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/intangible/pet/pet_deed.lua
3
2180
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
LuaDist2/lrexlib-oniguruma
test/gnu_sets.lua
9
1574
-- See Copyright Notice in the file LICENSE local luatest = require "luatest" local N = luatest.NT local unpack = unpack or table.unpack local function norm(a) return a==nil and N or a end local function set_f_gmatch (lib, flg) local downcase = {} for i = 0, 255 do -- 255 == UCHAR_MAX downcase[i] = string.gs...
mit
kidaa/Awakening-Core3
bin/scripts/object/tangible/medicine/crafted/medpack_disease_area_health_c.lua
1
3382
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/vrelt.lua
3
2136
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
houqp/koreader
frontend/ui/data/koptoptions.lua
1
12687
local Device = require("device") local S = require("ui/data/strings") local optionsutil = require("ui/data/optionsutil") local _ = require("gettext") local Screen = Device.screen local KoptOptions = { prefix = 'kopt', needs_redraw_on_change = true, { icon = "resources/icons/appbar.transform.rotate....
agpl-3.0
eraffxi/darkstar
scripts/zones/Aydeewa_Subterrane/npcs/16.lua
2
1146
----------------------------------- -- Area: Aydeewa Subterrane -- NPC: Blank (TOAU-20 Cutscene, TOAU-27 Cutscene) -- !pos -298 36 -38 68 ----------------------------------- package.loaded["scripts/zones/Aydeewa_Subterrane/TextIDs"] = nil; ----------------------------------- require("scripts/globals/missions"); requir...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/mobile/dressed_aakuan_sentinal_rodian_male_01.lua
3
2268
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/ship/components/weapon/wpn_mandal_super_mangler.lua
3
2312
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/wearables/wookiee/objects.lua
3
43262
--Copyright (C) 2009 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/commands/eat.lua
4
2102
--Copyright (C) 2007 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/static/item/item_tool_droid_toolkit.lua
3
2228
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
eraffxi/darkstar
scripts/zones/Mount_Zhayolm/npcs/_1p3.lua
2
3039
----------------------------------- -- Area: Mount Zhayolm -- Door: Runic Seal -- !pos 703 -18 382 61 ----------------------------------- package.loaded["scripts/zones/Mount_Zhayolm/TextIDs"] = nil; ----------------------------------- require("scripts/globals/keyitems"); require("scripts/globals/missions"); require("sc...
gpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/scout/item_camp_luxury.lua
2
3178
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/component/armor/armor_layer_restraint.lua
3
2272
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/lair/kima/objects.lua
3
7188
--Copyright (C) 2009 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later version. ...
lgpl-3.0
LuaDist2/luasocket
test/ftptest.lua
26
3156
local socket = require("socket") local ftp = require("socket.ftp") local url = require("socket.url") local ltn12 = require("ltn12") -- override protection to make sure we see all errors --socket.protect = function(s) return s end dofile("testsupport.lua") local host, port, index_file, index, back, err, ret local t ...
mit
kidaa/Awakening-Core3
bin/scripts/object/static/creature/droids_r2.lua
3
2188
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/furniture/all/frn_all_decorative_lg_s2.lua
3
2276
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/vehicle/military/starship_impl_tie_b.lua
3
2296
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/static/test/test_static_sandcrawler.lua
3
2228
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/tangible/ship/crafted/chassis/chassis_z95_wing_l.lua
3
2280
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
RoMBotCommunity/RoMBot
bot.lua
1
42649
BOT_VERSION = 3.29; local handle = io.popen("SubWCRev \""..getExecutionPath().."\"") local result = handle:read("*a") handle:close() BOT_REVISION = string.match(result,"Updated to revision (%d*)") or "<UNKNOWN>" --[[ BOT_REVISION = "<UNKNOWN>" -- Check version 1.7 style svn folder. local fname = getExecutionPath() ....
gpl-2.0
eraffxi/darkstar
scripts/zones/Windurst_Woods/npcs/Anillah.lua
2
1376
----------------------------------- -- Area: Windurst Woods -- NPC: Anillah -- Type: Clothcraft Image Support -- !pos -34.800 -2.25 -119.950 241 ----------------------------------- package.loaded["scripts/zones/Windurst_Woods/TextIDs"] = nil; ----------------------------------- require("scripts/globals/status"); requi...
gpl-3.0
chpatton013/business-team
libs/hump/timer.lua
27
6224
--[[ Copyright (c) 2010-2013 Matthias Richter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, dis...
apache-2.0
palmettos/cnLuCI
libs/nixio/docsrc/nixio.bit.lua
171
2044
--- Bitfield operators and mainpulation functions. -- Can be used as a drop-in replacement for bitlib. module "nixio.bit" --- Bitwise OR several numbers. -- @class function -- @name bor -- @param oper1 First Operand -- @param oper2 Second Operand -- @param ... More Operands -- @return number --- Invert given number. ...
apache-2.0
kidaa/Awakening-Core3
bin/scripts/object/weapon/melee/sword/crafted_saber/sword_lightsaber_one_handed_gen3.lua
1
6183
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
meshr-net/meshr_tomato-RT-N
usr/lib/lua/luci/model/cbi/admin_system/backupfiles.lua
8
2706
--[[ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2011 Jo-Philipp Wich <xm@subsignal.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://w...
apache-2.0
upsoft/avbot
extension/luascript/libs/lua_libraries/json/encode/output_utility.lua
9
1783
--[[ Licensed according to the included 'LICENSE' document Author: Thomas Harning Jr <harningt@gmail.com> ]] local setmetatable = setmetatable local assert, loadstring = assert, loadstring or load local _ENV = nil -- Key == weak, if main key goes away, then cache cleared local outputCache = setmetatable({}, {__mode...
agpl-3.0
kidaa/Awakening-Core3
bin/scripts/object/draft_schematic/space/reverse_engineering/serverobjects.lua
3
2867
--Copyright (C) 2010 <SWGEmu> --This File is part of Core3. --This program 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 2 of the License, --or (at your option) any later versio...
lgpl-3.0
palmettos/cnLuCI
applications/luci-asterisk/luasrc/model/cbi/asterisk-mod-codec.lua
80
2172
--[[ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth <steven@midlink.org> Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at h...
apache-2.0
ForbiddenJ/minetest_game
mods/vessels/init.lua
3
6178
-- Minetest 0.4 mod: vessels -- See README.txt for licensing and other information. local vessels_shelf_formspec = "size[8,7;]" .. default.gui_bg .. default.gui_bg_img .. default.gui_slots .. "list[context;vessels;0,0.3;8,2;]" .. "list[current_player;main;0,2.85;8,1;]" .. "list[current_player;main;0,4.08;8,3;8]...
lgpl-2.1