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
NielsH/FindYourHealers
Libs/GeminiGUI/GeminiGUI.lua
6
46270
----------------------------------------------------------------------------------------------------------------------- -- GeminiGUI -- Formerly DaiGUI -- @author daihenka -- GUI Widget Creation Library for WildStar. -------------------------------------------------------------------------------------------------------...
gpl-3.0
extreme01/extreme
libs/mimetype.lua
3662
2922
-- Thanks to https://github.com/catwell/lua-toolbox/blob/master/mime.types do local mimetype = {} -- TODO: Add more? local types = { ["text/html"] = "html", ["text/css"] = "css", ["text/xml"] = "xml", ["image/gif"] = "gif", ["image/jpeg"] = "jpg", ["application/x-javascript"] = "js", ["application/atom...
gpl-2.0
tehran980/tele_HSN2
libs/mimetype.lua
3662
2922
-- Thanks to https://github.com/catwell/lua-toolbox/blob/master/mime.types do local mimetype = {} -- TODO: Add more? local types = { ["text/html"] = "html", ["text/css"] = "css", ["text/xml"] = "xml", ["image/gif"] = "gif", ["image/jpeg"] = "jpg", ["application/x-javascript"] = "js", ["application/atom...
gpl-2.0
disslove85/MSS-BOT
libs/mimetype.lua
3662
2922
-- Thanks to https://github.com/catwell/lua-toolbox/blob/master/mime.types do local mimetype = {} -- TODO: Add more? local types = { ["text/html"] = "html", ["text/css"] = "css", ["text/xml"] = "xml", ["image/gif"] = "gif", ["image/jpeg"] = "jpg", ["application/x-javascript"] = "js", ["application/atom...
gpl-2.0
mc-server/Essentials
hooks.lua
2
6146
function OnTakeDamage(Receiver, TDI) --Avoid fall damage if player is flying if Receiver:IsPlayer() and Receiver:CanFly() and TDI.DamageType == dtFalling then return true end end function OnPlayerRightClick(Player, BlockX, BlockY, BlockZ, BlockFace, CursorX, CursorY, CursorZ) local World = Player:GetWorld() if ...
apache-2.0
dacrybabysuck/darkstar
scripts/globals/spells/vital_etude.lua
12
1611
----------------------------------------- -- Spell: Vital Etude -- Static VIT Boost, BRD 70 ----------------------------------------- require("scripts/globals/status") require("scripts/globals/magic") require("scripts/globals/msg") ----------------------------------------- function onMagicCastingCheck(caster,target,sp...
gpl-3.0
andeandr100/Crumbled-World
Lua/NPC/npc_skeletonReaperSpawn.lua
1
1798
require("NPC/npcBase.lua") require("NPC/state.lua") --this = SceneNode() local npcBase function destroy() npcBase.destroy() end function create() npcBase = NpcBase.new() npcBase.init("skeleton","npc_skeleton1.mym",0.25,0.6,0.90,2.0) npcBase.getSoul().enableBlood("BoneSplatterSphere",0.85,Vec3(0,0.3,0)) npcBase...
mit
nimaghorbani/dozdi1
plugins/sudo.lua
359
1878
function run_sh(msg) name = get_name(msg) text = '' -- if config.sh_enabled == false then -- text = '!sh command is disabled' -- else -- if is_sudo(msg) then -- bash = msg.text:sub(4,-1) -- text = run_bash(bash) -- else -- text = name .. ' yo...
gpl-2.0
fegimanam/uzrep
plugins/sudo.lua
359
1878
function run_sh(msg) name = get_name(msg) text = '' -- if config.sh_enabled == false then -- text = '!sh command is disabled' -- else -- if is_sudo(msg) then -- bash = msg.text:sub(4,-1) -- text = run_bash(bash) -- else -- text = name .. ' yo...
gpl-2.0
azdle/exosite-lua
exosite.lua
1
1705
local http = require 'socket.http' local json = require 'dkjson' local exosite = { _VERSION = "exosite-lua 0.1.0", _DESCRIPTION = "A Lua client library for the Exosite RPC API.", _AUTHOR = "Patrick Barrett <patrick@mkii.org>", _COPYRIGHT = "Copyright 2014 Patrick Barrett", _LICENSE = "http://o...
bsd-2-clause
dacrybabysuck/darkstar
scripts/globals/weaponskills/ascetics_fury.lua
10
1771
----------------------------------- -- Ascetics Fury -- Hand-to-Hand weapon skill -- Skill Level: N/A -- Chance of params.critical hit varies with TP. Glanzfaust: Aftermath effect varies with TP. -- Available only after completing the Unlocking a Myth (Monk) quest. -- Aligned with the Flame Gorget & Light Gorget. -- Al...
gpl-3.0
dacrybabysuck/darkstar
scripts/zones/Kazham/npcs/Roropp.lua
9
8419
----------------------------------- -- Area: Kazham -- NPC: Roropp -- Standard Info NPC ----------------------------------- require("scripts/globals/pathfind"); local path = { 16.031977, -8.000000, -106.132980, 16.257568, -8.000000, -105.056381, 16.488544, -8.000000, -103.993233, 16.736769, -8.000000,...
gpl-3.0
kikito/Algorithm-Implementations
Dijkstra_Search/Lua/Yonaba/point_graph_handler.lua
1
2409
-- A point graph handler -- This handler is devised for waypoints graphs. -- Waypoints are locations represented via labelled nodes -- and are connected with edges having a positive weight. -- It assumes edges are symmetric, that is if an edge exists -- between a and b, weight(a -> b) == weight(b -> a) -- Implements...
mit
dkogan/notion.xfttest
contrib/statusd/statusd_iwinfo.lua
6
2844
-- Authors: Relu Patrascu <ikoflexer@gmail.com> -- License: LGPL, version 2.1 or later -- Last Changed: 2004-11-17 -- -- statusd_iwinfo.lua -- -- Copyright (c) Relu Patrascu 2004. -- -- Ion is free software; you can redistribute it and/or modify it under -- the terms of the GNU Lesser General Public License as publishe...
lgpl-2.1
varunparkhe/Algorithm-Implementations
Bresenham_Line/Lua/Yonaba/bresenham_test.lua
27
1097
-- Tests for bresenham.lua local bresenham = require 'bresenham' local total, pass = 0, 0 local function dec(str, len) return #str < len and str .. (('.'):rep(len-#str)) or str:sub(1,len) end local function run(message, f) total = total + 1 local ok, err = pcall(f) if ok then pass = pass + 1 end local s...
mit
noscripter/google-diff-match-patch
lua/diff_match_patch_test.lua
264
39109
--[[ * Test Harness for Diff Match and Patch * * Copyright 2006 Google Inc. * http://code.google.com/p/google-diff-match-patch/ * * Based on the JavaScript implementation by Neil Fraser * Ported to Lua by Duncan Cross * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except...
apache-2.0
hjelmeland/luacrc32
test_crc32.lua
1
2308
#!/usr/bin/env lua local _G,arg,assert,getmetatable,package,require,string,type = _G,arg,assert,getmetatable,package,require,string,type local C32 = require'crc32' if arg[-1] ~= '-lcrc32' then -- work around debian dh_lua test calling with '-lcrc32', which sets _G.crc32 assert(_G.crc32==nil, 'do not pollute glo...
mit
birdbrainswagtrain/grid-sdk
src/engine/client/gui/radiobutton.lua
1
3322
--========= Copyright © 2013-2015, Planimeter, All rights reserved. ==========-- -- -- Purpose: Radio Button class -- --============================================================================-- class "radiobutton" ( gui.button ) function radiobutton:radiobutton( parent, name, text ) gui.button.button( self, par...
mit
dacrybabysuck/darkstar
scripts/globals/items/plate_of_shrimp_sushi.lua
11
1377
----------------------------------------- -- ID: 5691 -- Item: plate_of_shrimp_sushi -- Food Effect: 30Min, All Races ----------------------------------------- -- Vitality 1 -- Defense 5 -- Accuracy % 14 (cap 68) -- Ranged Accuracy % 14 (cap 68) -- Resist sleep +1 ----------------------------------------- require("scri...
gpl-3.0
dacrybabysuck/darkstar
scripts/globals/spells/carnage_elegy.lua
12
1782
----------------------------------------- -- Spell: Carnage Elegy ----------------------------------------- require("scripts/globals/status") require("scripts/globals/magic") require("scripts/globals/msg") ----------------------------------------- function onMagicCastingCheck(caster, target, spell) return 0 end f...
gpl-3.0
vekat/fis
src/rules.lua
1
2471
-- TODO: update file to use `./factory.lua` local propositions = require 'propositions' local rule_mt, cnt_mt local add_antecedent, add_consequent, get_activation_degree, get_output_set local function create_rule(weight) local rule = {weight = weight or 1.0} rule.add_antecedent = add_antecedent(rule) rule.add_...
mit
dacrybabysuck/darkstar
scripts/zones/Norg/npcs/Deigoff.lua
12
2807
----------------------------------- -- Area: Norg -- NPC: Deigoff -- Standard Info NPC ----------------------------------- require("scripts/globals/pathfind"); ----------------------------------- local path = { -15.048376, -1.476800, 30.425398, -15.526757, -1.225124, 29.480957, -14.723476, -1.423349, 30.1...
gpl-3.0
geminy/aidear
oss/qt/qt-everywhere-opensource-src-5.9.0/qtwebengine/src/3rdparty/chromium/third_party/skia/tools/lua/bbh_filter.lua
207
4407
-- bbh_filter.lua -- -- This script outputs info about 'interesting' skp files, -- where the definition of 'interesting' changes but is roughly: -- "Interesting for bounding box hierarchy benchmarks." -- -- Currently, the approach is to output, in equal ammounts, the names of the files that -- have most commands, and t...
gpl-3.0
juanchanco/lua-xcb
swig/ft/freetype.lua
1
1948
local ft = require("swig_freetype") local log_console = require"log4l.console" local logger = log_console() --TODO: is there a way to tell swig not to free() this? local FT_FaceRec_mt = getmetatable(ft.FT_FaceRec) FT_FaceRec_mt[".instance"].__gc = function(_) end local face_metatable = { __index = { setCharSiz...
mit
pSyChOoOo/TeleSeed
.luarocks/lib/luarocks/rocks/luaexpat/1.3.0-1/tests/test.lua
11
8696
#!/usr/local/bin/lua5.1 -- See Copyright Notice in license.html -- $Id: test.lua,v 1.6 2006/06/08 20:34:52 tomas Exp $ if string.find(_VERSION, " 5.0") then lxp = assert(loadlib("./lxp.so", "luaopen_lxp"))() else lxp = require"lxp" gcinfo = function () return collectgarbage"count" end end print (lxp._VERSION) asser...
gpl-2.0
akbooer/openLuup
openLuup/L_ShellyBridge.lua
1
15838
module(..., package.seeall) ABOUT = { NAME = "mqtt_shelly", VERSION = "2022.11.15", DESCRIPTION = "Shelly MQTT bridge", AUTHOR = "@akbooer", COPYRIGHT = "(c) 2020-2022 AKBooer", DOCUMENTATION = "", LICENSE = [[ Copyright 2013-2022 AK Booer Licensed under the Apache ...
apache-2.0
dacrybabysuck/darkstar
scripts/globals/mobskills/scratch.lua
11
1039
--------------------------------------------- -- Scratch -- -- Description: Strikes a single target in the face. Additional effect: Blind -- Type: Physical -- Utsusemi/Blink absorb: 1 shadow -- Range: Melee -- Notes: --------------------------------------------- require("scripts/globals/settings") require("script...
gpl-3.0
fiskio/dp
view/classview.lua
5
2144
------------------------------------------------------------------------ --[[ ClassView ]]-- -- A DataView holding a tensor of classes like training targets. -- Can also be used to host text where each word is represented as an -- integer. ------------------------------------------------------------------------ local...
bsd-3-clause
dacrybabysuck/darkstar
scripts/globals/gear_sets.lua
9
39254
----------------------------------- -- Gear sets -- Allows the use of gear sets with modifiers ----------------------------------- require("scripts/globals/status"); ----------------------------------- local matchtype = { any = 0, earring_weapon = 1, weapon_weapon = 2, ring_armor = 3 } ...
gpl-3.0
shultays/bloodworks
game/resources/guns/rifle/rifle.lua
1
1454
function Rifle.init(gun) gun.spreadAngle = 0.0 gun.crosshairDistance = 350.0 ShootTimer.initGun(gun, 0.75) SpreadHelper.initGun(gun) gun.data.maxSpread = 0.25 gun.data.spreadDecreaseStartTime = 0.35 gun.data.spreadDecreaseSpeed = 0.80 gun.data.spreadIncreasePerShoot = 0.03 gun....
gpl-3.0
dcourtois/premake-core
modules/gmake/tests/cs/test_response.lua
15
1997
-- -- tests/actions/make/cs/test_response.lua -- Validate the list of objects for a response file used by a makefile. -- Copyright (c) 2009-2013 Jason Perkins and the Premake project -- local p = premake local suite = test.declare("make_cs_response") local make = p.make -- -- Setup -- local wks, prj function ...
bsd-3-clause
dacrybabysuck/darkstar
scripts/globals/items/loaf_of_homemade_bread.lua
11
1601
----------------------------------------- -- ID: 5228 -- Item: loaf_of_homemade_bread -- Food Effect: 30Min, All Races ----------------------------------------- -- hMP +1 -- Accuracy +12% (cap 80) -- Attack +10% (cap 40) -- Ranged Accuracy +12% (cap 80) -- Ranged Attack +10% (cap 40) -----------------------------------...
gpl-3.0
dacrybabysuck/darkstar
scripts/globals/items/silken_spirit.lua
11
1126
----------------------------------------- -- ID: 5634 -- Item: Silken Spirit -- Food Effect: 4 Hrs, All Races ----------------------------------------- -- TODO: Group Effect -- MP +4% (cap 90) -- HP Recovered while healing +2 -- MP Recovered while healing +7 ----------------------------------------- require("scripts/gl...
gpl-3.0
CCAAHH/pm
plugins/antisquig.lua
27
1167
-- Put this at the very top of your plugin list, even before blacklist.lua. antisquig = {} local triggers = { '[\216-\219][\128-\191]' } local action = function(msg) local moddat = load_data('moderation.json') if not moddat[msg.chat.id_str] then return true end if moddat[msg.chat.id_str][msg.from.id_str] ...
gpl-2.0
andeandr100/Crumbled-World
Lua/Game/pathRender.lua
1
9184
require("Game/spirits.lua") require("Menu/settings.lua") --this = SceneNode() local ourRootNode function destroy() ourRootNode:destroy() end function init() if bilboard:exist("spawnPortals") then local buildNode = this:getPlayerNode():findNodeByTypeTowardsLeafe(NodeId.buildNode) local navMesh = th...
mit
fetchbot/nodemcu-firmware
lua_examples/ucglib/GT_triangle.lua
30
1112
local M, module = {}, ... _G[module] = M function M.run() -- make this a volatile module: package.loaded[module] = nil print("Running component triangle...") local m disp:setColor(0, 0, 80, 20) disp:setColor(1, 60, 80, 20) disp:setColor(2, 60, 120, 0) disp:setColor(3, 0, 140, 30) ...
mit
andeandr100/Crumbled-World
Lua/Camera/mainMenuCamera.lua
1
3705
require("Menu/settings.lua") --this = Camera() function create() if this:getNodeType() == NodeId.camera then rootNode = this:getRootNode() worldNode = SceneNode() localCameraNode = SceneNode() rootNode:addChild(worldNode) worldNode:addChild(localCameraNode) local localCameraPosition = Vec3(0,1...
mit
AbolDalton/Abolbot
plugins/azan.lua
2
3150
do function run_bash(str) local cmd = io.popen(str) local result = cmd:read('*all') return result end local api_key = nil local base_api = "https://maps.googleapis.com/maps/api" function get_latlong(area) local api = base_api .. "/geocode/json?" local parameters = "address=".. (URL.escape(area) or...
gpl-2.0
dacrybabysuck/darkstar
scripts/globals/mobskills/oblivion_smash.lua
11
1293
--------------------------------------------- -- Oblivion Smash -- -- Description: Deals damage to players within area of effect and inflicts blind, silence, bind, and weight. -- Type: Physical -- Utsusemi/Blink absorb: 2-3 shadows -- Range: Unknown radial --------------------------------------------- require("scripts...
gpl-3.0
hamed9898/xxbot
plugins/isup.lua
741
3095
do local socket = require("socket") local cronned = load_from_file('data/isup.lua') local function save_cron(msg, url, delete) local origin = get_receiver(msg) if not cronned[origin] then cronned[origin] = {} end if not delete then table.insert(cronned[origin], url) else for k,v in pairs(cronned[...
gpl-2.0
nimaghorbani/dozdi1
plugins/isup.lua
741
3095
do local socket = require("socket") local cronned = load_from_file('data/isup.lua') local function save_cron(msg, url, delete) local origin = get_receiver(msg) if not cronned[origin] then cronned[origin] = {} end if not delete then table.insert(cronned[origin], url) else for k,v in pairs(cronned[...
gpl-2.0
dacrybabysuck/darkstar
scripts/zones/Qulun_Dome/npcs/_441.lua
12
1157
----------------------------------- -- Area: Qulun Dome -- NPC: Door -- Involved in Mission: Limit Break 3 -- !pos 299.999 37.864 47.067 148 ----------------------------------- require("scripts/globals/keyitems"); local ID = require("scripts/zones/Qulun_Dome/IDs"); ----------------------------------- function onTrade...
gpl-3.0
mosy210/shadow-bot
plugins/service_entergroup.lua
355
3585
local add_user_cfg = load_from_file('data/add_user_cfg.lua') local function template_add_user(base, to_username, from_username, chat_name, chat_id) base = base or '' to_username = '@' .. (to_username or '') from_username = '@' .. (from_username or '') chat_name = string.gsub(chat_name, '_', ' ') or '' c...
gpl-2.0
nimaghorbani/dozdi1
plugins/service_entergroup.lua
355
3585
local add_user_cfg = load_from_file('data/add_user_cfg.lua') local function template_add_user(base, to_username, from_username, chat_name, chat_id) base = base or '' to_username = '@' .. (to_username or '') from_username = '@' .. (from_username or '') chat_name = string.gsub(chat_name, '_', ' ') or '' c...
gpl-2.0
dacrybabysuck/darkstar
scripts/zones/Bastok-Jeuno_Airship/npcs/Michele.lua
12
1783
----------------------------------- -- Area: Bastok-Jeuno Airship -- NPC: Michele -- Standard Info NPC ----------------------------------- local ID = require("scripts/zones/Bastok-Jeuno_Airship/IDs"); ----------------------------------- function onTrade(player,npc,trade) end; function onTrigger(player,npc) loca...
gpl-3.0
sowbug/nodemcu-firmware
lua_modules/email/imap.lua
81
6275
--- -- Working Example: https://www.youtube.com/watch?v=PDxTR_KJLhc -- IMPORTANT: run node.compile("imap.lua") after uploading this script -- to create a compiled module. Then run file.remove("imap.lua") -- @name imap -- @description An IMAP 4rev1 module that can be used to read email. -- Tested on NodeMCU 0.9.5 buil...
mit
andeandr100/Crumbled-World
Lua/Menu/WorkMonitor.lua
1
1386
--this = SceneNode() function destroy() if form then form:setVisible(false) form:destroy() form = nil end end function create() --Protection in multiplayer environment where multiple instances of this script is loaded local node = this:findNodeByTypeTowardsRoot(NodeId.playerNode) if ( node == nil and thi...
mit
hussian1997/hk-_bot
plugins/dowelcome.lua
8
2352
--[[ ▀▄ ▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀▄▀▄▄▀▀▄▄▀▀▄▄▀▀▄▄▀▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ BY(@AHMED_ALOBIDE) ▀▄ ▄▀ ▀▄ ▄▀ BY(@hussian_9) ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄ ▄▀ ▀▄▀...
gpl-2.0
myself1185/self
plugins/id.lua
20
5688
local function usernameinfo (user) if user.username then return '@'..user.username end 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 loca...
gpl-3.0
andeandr100/Crumbled-World
Lua/Menu/Campaign/campaignGameMenu.lua
1
19884
require("Menu/MainMenu/mainMenuStyle.lua") require("Game/mapInfo.lua") require("Menu/MainMenu/mapInformation.lua") require("Game/campaignData.lua") require("Menu/Campaign/shop.lua") require("Menu/MainMenu/settingsCombobox.lua") --this = SceneNode() CampaignGameMenu = {} function CampaignGameMenu.new(panel) local self...
mit
dacrybabysuck/darkstar
scripts/zones/Port_Jeuno/npcs/Squintrox_Dryeyes.lua
9
4526
----------------------------------- -- Area: Port Jeuno -- NPC: Squintrox Dryeyes -- Type: Addon Mission Merchant -- !pos -100.071 -1 11.869 246 ----------------------------------- require("scripts/globals/settings"); require("scripts/globals/keyitems"); require("scripts/globals/quests"); require("scripts/globals/mis...
gpl-3.0
nimaghorbani/dozdi1
plugins/torrent_search.lua
411
1622
--[[ NOT USED DUE TO SSL ERROR -- See https://getstrike.net/api/ local function strike_search(query) local strike_base = 'http://getstrike.net/api/v2/torrents/' local url = strike_base..'search/?phrase='..URL.escape(query) print(url) local b,c = http.request(url) print(b,c) local search = json:decode(b) v...
gpl-2.0
fegimanam/uzrep
plugins/torrent_search.lua
411
1622
--[[ NOT USED DUE TO SSL ERROR -- See https://getstrike.net/api/ local function strike_search(query) local strike_base = 'http://getstrike.net/api/v2/torrents/' local url = strike_base..'search/?phrase='..URL.escape(query) print(url) local b,c = http.request(url) print(b,c) local search = json:decode(b) v...
gpl-2.0
dacrybabysuck/darkstar
scripts/zones/Port_Bastok/npcs/Oggbi.lua
10
3503
----------------------------------- -- Area: Port Bastok (236) -- NPC: Oggbi -- Starts and Finishes: Ghosts of the Past, The First Meeting, The Walls of Your Mind -- !pos -159 -7 5 236 ----------------------------------- local ID = require("scripts/zones/Port_Bastok/IDs") require("scripts/globals/keyitems") require("sc...
gpl-3.0
dacrybabysuck/darkstar
scripts/zones/Aht_Urhgan_Whitegate/npcs/Qutiba.lua
9
1547
----------------------------------- -- Area: Aht Urhgan Whitegate -- NPC: Qutiba -- Type: Standard NPC -- !pos 92.341 -7.5 -129.980 50 ----------------------------------- require("scripts/globals/quests") require("scripts/globals/settings") require("scripts/globals/keyitems") require("scripts/globals/npc_util") local ...
gpl-3.0
dcourtois/premake-core
tests/config/test_linkinfo.lua
12
2230
-- -- tests/config/test_linkinfo.lua -- Test the config object's link target accessor. -- Copyright (c) 2012-2013 Jason Perkins and the Premake project -- local p = premake local suite = test.declare("config_linkinfo") local config = p.config -- -- Setup and teardown -- local wks, prj function suite.setup() ...
bsd-3-clause
dcourtois/premake-core
modules/xcode/xcode4_workspace.lua
7
2756
--- -- xcode/xcode4_workspace.lua -- Generate an Xcode workspace. -- Author Mihai Sebea -- Modified by Jason Perkins -- Copyright (c) 2014-2015 Jason Perkins and the Premake project --- local p = premake local m = p.modules.xcode local tree = p.tree --- -- Generate an Xcode contents.xcworkspacedata file. --- m....
bsd-3-clause
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/lair/gaping_spider/objects.lua
3
5620
--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. ...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/loot/items/wearables/necklace/necklace_s09.lua
4
1080
necklace_s09 = { -- Silver Pendant minimumLevel = 0, maximumLevel = -1, customObjectName = "", directObjectTemplate = "object/tangible/wearables/necklace/necklace_s09.iff", craftingValues = {}, skillMods = {}, customizationStringNames = {"/private/index_color_1","/private/index_color_2"}, ...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/static/naboo/whitewater_6meter.lua
3
2208
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/mobile/tatooine/darklighter_guard.lua
1
1166
darklighter_guard = Creature:new { objectName = "@mob/creature_names:darklighter_guard", randomNameType = NAME_GENERIC, randomNameTag = true, socialGroup = "darklighter", faction = "", level = 9, chanceHit = 0.27, damageMin = 80, damageMax = 90, baseXp = 292, baseHAM = 675, baseHAMmax = 825, armor = 0, re...
agpl-3.0
ashrafboss/V1_ASHRAF_EN_AR
data/config.lua
2
1337
do local _ = { about_text = "🔺Welcome to TeleBoss v3 For more information Subscribe to the channel @llDEV1lln\n https://github.com/moody2020/TeleBoss\n\n🔺Dev @TH3BOSS\n\n🔺 Dev Bot @ll60Kllbot\n\n🔺Dev channel @llDEV1ll", enabled_plugins = { "badword", "admin", "ingroup", "stats", "anti_spam",...
gpl-2.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/draft_schematic/structure/component/structural_module.lua
1
3275
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/wearables/ithorian/ith_jacket_s12.lua
3
3455
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/mobile/skeleton/acklay.lua
3
2176
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/deed/pet_deed/hermit_spider_deed.lua
2
2783
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/soundobject/soundobject_refrigeration_unit.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/static/item/item_edb_con_tato_cup_s2.lua
3
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...
agpl-3.0
wbqd/cqui
Assets/UI/Popups/techciviccompletedpopup.lua
3
15718
-- =========================================================================== -- Popups when a Tech or Civic are completed -- =========================================================================== include("TechAndCivicSupport"); -- (Already includes Civ6Common and InstanceManager) PopulateUnlockablesForTech, Po...
mit
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/building/player/player_house_tatooine_small_style_01.lua
1
4335
--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 version. ...
agpl-3.0
amirik22/tgcli
plugins/gnuplot.lua
622
1813
--[[ * Gnuplot plugin by psykomantis * dependencies: * - gnuplot 5.00 * - libgd2-xpm-dev (on Debian distr) for more info visit: https://libgd.github.io/pages/faq.html * ]] -- Gnuplot needs absolute path for the plot, so i run some commands to find where we are local outputFile = io.popen("pwd","r") io.input(outputFile...
gpl-2.0
istayping/istyping
plugins/gnuplot.lua
622
1813
--[[ * Gnuplot plugin by psykomantis * dependencies: * - gnuplot 5.00 * - libgd2-xpm-dev (on Debian distr) for more info visit: https://libgd.github.io/pages/faq.html * ]] -- Gnuplot needs absolute path for the plot, so i run some commands to find where we are local outputFile = io.popen("pwd","r") io.input(outputFile...
gpl-2.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/draft_schematic/structure/naboo_house_player_large.lua
1
3704
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/lair/base/lair_base.lua
1
2243
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/component/structure/regulator.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/lair/sharnaff/lair_sharnaff_forest.lua
1
2303
--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...
agpl-3.0
SpaceVim/SpaceVim
lua/spacevim/logger.lua
1
3494
--============================================================================= -- logger.lua --- logger implemented in lua -- Copyright (c) 2016-2019 Wang Shidong & Contributors -- Author: Wang Shidong < wsdjeg@outlook.com > -- URL: https://spacevim.org -- License: GPLv3 --=============================================...
gpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/mobile/lok/mercenary_destroyer.lua
1
1442
mercenary_destroyer = Creature:new { objectName = "@mob/creature_names:mercenary_destroyer", randomNameType = NAME_GENERIC, randomNameTag = true, socialGroup = "lok_mercenaries", faction = "lok_mercenaries", level = 40, chanceHit = 0.43, damageMin = 355, damageMax = 420, baseXp = 4006, baseHAM = 8700, baseH...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/weapon/melee/sword/sword_lightsaber_vader.lua
1
5133
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/mobile/quest/dantooine/ezawo_wagli.lua
1
1247
ezawo_wagli = Creature:new { objectName = "", customName = "Ezawo Wagli", socialGroup = "thug", faction = "thug", level = 100, chanceHit = 1, damageMin = 645, damageMax = 1000, baseXp = 9429, baseHAM = 24000, baseHAMmax = 30000, armor = 0, resists = {0,0,0,0,0,0,0,0,-1}, meatType = "", meatAmount = 0, h...
agpl-3.0
sprunk/Zero-K
effects/goo.lua
1
13997
-- queen_trail -- queen_trail_fire -- large_green_goo -- green_goo -- small_green_goo -- spire_trail -- blobber_goo -- lobber_goo -- small_red_goo -- red_goo return { ["queen_trail"] = { splashes = { air = true, class = [[CSimpleParticleSystem]], count =...
gpl-2.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/mission/quest_item/warren_evidence_s02.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/cell/serverobjects.lua
3
2120
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/ship/crafted/shields/shield_limiter_mk4.lua
2
2922
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/mobile/gronda.lua
3
2140
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/draft_schematic/clothing/clothing_jacket_field_10.lua
1
3475
--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...
agpl-3.0
TerraME/terrame
test/packages/build/tests/Tube.lua
30
1562
------------------------------------------------------------------------------------------- -- TerraME - a software platform for multiple scale spatially-explicit dynamic modeling. -- Copyright (C) 2001-2014 INPE and TerraLAB/UFOP. -- -- This code is part of the TerraME framework. -- This framework is free software; yo...
lgpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/loot/items/weapon/knife_janta.lua
1
1526
--Automatically generated by SWGEmu Spawn Tool v0.12 loot editor. knife_janta = { minimumLevel = 0, maximumLevel = -1, customObjectName = "", directObjectTemplate = "object/weapon/melee/knife/knife_janta.iff", craftingValues = { {"mindamage",14,26,0}, {"maxdamage",32,62,0}, {"attackspeed",3.9,2.7,1}, {"wo...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/hq_destructible/serverobjects.lua
3
2354
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/lair/base/poi_all_lair_leaf_large_fog_green.lua
1
2339
--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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/intangible/pet/pet_control.lua
3
2192
--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...
agpl-3.0
sigma/vicious
widgets/thermal.lua
12
1527
--------------------------------------------------- -- Licensed under the GNU General Public License v2 -- * (c) 2010, Adrian C. <anrxc@sysphere.org> --------------------------------------------------- -- {{{ Grab environment local type = type local tonumber = tonumber local setmetatable = setmetatable local string =...
gpl-2.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/installation/mining_liquid/mining_liquid_moisture_harvester_medium.lua
2
2744
--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...
agpl-3.0
sprunk/Zero-K
effects/gundam_beamimpact.lua
26
2553
-- beamimpact return { ["beamimpact"] = { groundflash = { air = true, alwaysvisible = true, circlealpha = 0.2, circlegrowth = 4, flashalpha = 0.5, flashsize = 110, ground = true, ttl = 10,...
gpl-2.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/component/weapon/galven_tube_circuits.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/mobile/dressed_sith_shadow_rodian_f_02.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/static/item/wp_mle_knife_survival.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/mobile/3po_protocol_droid_red.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...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/tangible/item/quest/force_sensitive/fs_craft_puzzle_analyzer.lua
1
2363
--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 version. ...
agpl-3.0
Tatwi/legend-of-hondo
MMOCoreORB/bin/scripts/object/draft_schematic/droid/component/crafting_module_clothing.lua
1
3295
--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...
agpl-3.0