mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 11:35:22 +09:00
Removed versions from requires
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Module = require('Module@>X.Y.Z')
|
||||
local SubModule = require('Collection.Submodule@^X.Y.Z')
|
||||
local Module = require('Module')
|
||||
local SubModule = require('Collection.Submodule')
|
||||
local OptModule -- OptModule@^X.Y.Z
|
||||
|
||||
-- Local Varibles
|
||||
@@ -15,8 +15,8 @@ local OptModule -- OptModule@^X.Y.Z
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function(self)
|
||||
if loaded_modules['OptModule@^X.Y.Z'] then OptModule = require('OptModule@^X.Y.Z') end
|
||||
if loaded_modules['OptModule2@^X.Y.Z'] then require(module_path..'/src/module2',{self=self}) end
|
||||
if loaded_modules['OptModule'] then OptModule = require('OptModule') end
|
||||
if loaded_modules['OptModule2'] then require(module_path..'/src/module2',{self=self}) end
|
||||
--code
|
||||
end,
|
||||
on_post=function()
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ChatPopup
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
|
||||
local ChatPopup = {}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
-- @alais DamagePopup
|
||||
|
||||
-- Module Require
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
|
||||
local DamagePopup = {}
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
local Admin -- ExpGamingAdmin.AdminLib@^4.0.0
|
||||
|
||||
@@ -14,8 +14,8 @@ local Admin -- ExpGamingAdmin.AdminLib@^4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingAdmin.AdminLib@^4.0.0'] then Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingAdmin.AdminLib'] then Admin = require('ExpGamingAdmin.AdminLib') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
-- @alais Admin
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -13,9 +13,9 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
local module_verbose = false
|
||||
local Admin = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then require('ExpGamingCore.Server@^4.0.0').add_module_to_interface('Admin','ExpGamingAdmin.AdminLib') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['ExpGamingCore.Server'] then require('ExpGamingCore.Server') end
|
||||
end,
|
||||
actions={},
|
||||
action_functions={},
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color -- FactorioStdLib.Color@^0.8.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
|
||||
--- Used to clear all parts of a player, removing warnings, reports, jail and temp ban
|
||||
-- @command clear-all
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
local Admin = self
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
|
||||
--- Used to jail a player which stops them from moving
|
||||
-- @command jail
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
local Admin = self
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
--- Reports a player
|
||||
-- @command report
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
local Admin = self
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
|
||||
--- Gives a warning to a player
|
||||
-- @command warn
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
-- @alais AdminGui
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local playerInfo -- ExpGamingPlayer.playerInfo@^4.0.0
|
||||
local mod_gui = require('mod-gui')
|
||||
|
||||
@@ -16,7 +16,7 @@ local mod_gui = require('mod-gui')
|
||||
local module_verbose = false
|
||||
local AdminGui = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingPlayer.playerInfo@^4.0.0'] then playerInfo = require('ExpGamingPlayer@^4.0.0')
|
||||
if loaded_modules['ExpGamingPlayer.playerInfo'] then playerInfo = require('ExpGamingPlayer')
|
||||
else playerInfo = function(player,frame)
|
||||
frame.add{
|
||||
type='label',
|
||||
|
||||
@@ -5,11 +5,11 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color -- FactorioStdLib.Color@^0.8.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -17,8 +17,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color -- FactorioStdLib.Color@^0.8.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
|
||||
end
|
||||
}
|
||||
-- Function Define
|
||||
|
||||
@@ -5,11 +5,11 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color -- FactorioStdLib.Color@^0.8.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -17,8 +17,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local AdminGui = require('ExpGamingAdmin.Gui')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color -- FactorioStdLib.Color@^0.8.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color -- FactorioStdLib.Color@^0.8.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -37,9 +37,9 @@ local punishments = {
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end
|
||||
if loaded_modules['ExpGamingAdmin.Reports@^4.0.0'] then
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
|
||||
if loaded_modules['ExpGamingAdmin.Reports'] then
|
||||
take_action = take_action + 1
|
||||
table.insert(punishments,take_action,{'report',{'ExpGamingAdmin-Warnings.reported'},defines.textcolor.med})
|
||||
end
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
|
||||
-- Local Varibles
|
||||
@@ -121,7 +121,7 @@ local commands = {
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@4.0.0
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
end,
|
||||
on_post=function()
|
||||
--code
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Sync = require('ExpGamingCore.Sync@^4.0.0')
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Sync = require('ExpGamingCore.Sync')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local global = global{}
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- these are the settings which are changed with scale being as +100%
|
||||
local settings = {
|
||||
@@ -54,8 +54,8 @@ end)
|
||||
|
||||
return {
|
||||
on_init= function(self)
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
if loaded_modules['ExpGamingCore.Role'] then
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
-- instant respawn
|
||||
script.on_event(defines.events.on_pre_player_died,function(event)
|
||||
local player = Game.get_player(event)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local global = global{}
|
||||
|
||||
--- Sets the home for a player
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
--- Kills a player of a lower rank
|
||||
-- @command kill
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
|
||||
-- Set an item to true to disallow it from being repaired
|
||||
local disallow = {
|
||||
@@ -24,7 +24,7 @@ local repairDisallow
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init = function(self)
|
||||
if loaded_modules['ExpGamingAdmin.TempBan@^4.0.0'] then verbose('ExpGamingAdmin.TempBan is installed; Loading tempban src') repairDisallow = require(module_path..'/src/tempban') end
|
||||
if loaded_modules['ExpGamingAdmin.TempBan'] then verbose('ExpGamingAdmin.TempBan is installed; Loading tempban src') repairDisallow = require(module_path..'/src/tempban') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
-- not_luadoc=true
|
||||
local temp_ban = require('ExpGamingAdmin.AdminLib@^4.0.0').temp_ban
|
||||
local temp_ban = require('ExpGamingAdmin.AdminLib').temp_ban
|
||||
return function(player,entity)
|
||||
player_return('You have repaired: '..entity.name..' this item is not allowed.',defines.textcolor.crit,player)
|
||||
temp_ban(player,'<server>','Attempt To Repair A Banned Item')
|
||||
|
||||
@@ -3,14 +3,14 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
|
||||
--- Teleports the user to the player given
|
||||
-- @command go-to
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
-- @alias commands
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
|
||||
--- Used as an error constant for validation
|
||||
-- @field commands.error
|
||||
|
||||
@@ -23,7 +23,7 @@ local Group = {
|
||||
end
|
||||
}),
|
||||
on_init = function()
|
||||
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then require('ExpGamingCore.Server@^4.0.0').add_module_to_interface('Group','ExpGamingCore.Group') end
|
||||
if loaded_modules['ExpGamingCore.Server'] then require('ExpGamingCore.Server') end
|
||||
end,
|
||||
on_post = function(self)
|
||||
-- creats a root role that the server can use
|
||||
|
||||
@@ -173,8 +173,8 @@ script.on_event('on_player_respawned',function(event)
|
||||
end)
|
||||
|
||||
function Gui:on_init()
|
||||
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then
|
||||
Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
if loaded_modules['ExpGamingCore.Server'] then
|
||||
Server = require('ExpGamingCore.Server')
|
||||
verbose('ExpGamingCore.Server is installed; Loading server src')
|
||||
script.on_init(require(module_path..'/src/server',{Gui=self}))
|
||||
end
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
--- This file will be loaded when ExpGamingCore.Server is present
|
||||
-- @function _comment
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
|
||||
Server.add_module_to_interface('ExpGui','ExpGamingCore.Gui')
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
--- This is a submodule of ExpGamingCore.Gui but for ldoc reasons it is under its own module
|
||||
-- @function _comment
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Gui = Gui -- this is to force gui to remain in the ENV
|
||||
local mod_gui = require("mod-gui")
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais Role
|
||||
|
||||
-- Module Require
|
||||
local Group = require('ExpGamingCore.Group@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Group = require('ExpGamingCore.Group')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Local Varibles
|
||||
local role_change_event_id = script.generate_event_name('on_role_change')
|
||||
@@ -28,9 +28,9 @@ local Role = {
|
||||
end
|
||||
}),
|
||||
on_init=function(self)
|
||||
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then require('ExpGamingCore.Server@^4.0.0').add_module_to_interface('Role','ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingCore.Command@^4.0.0'] then require(module_path..'/src/commands',{self=self}) end
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then require(module_path..'/src/sync',{self=self,RoleGlobal=RoleGlobal}) end
|
||||
if loaded_modules['ExpGamingCore.Server'] then require('ExpGamingCore.Server') end
|
||||
if loaded_modules['ExpGamingCore.Command'] then require(module_path..'/src/commands',{self=self}) end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then require(module_path..'/src/sync',{self=self,RoleGlobal=RoleGlobal}) end
|
||||
end,
|
||||
on_post=function(self)
|
||||
-- creates a server role with root access
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
local Role = self
|
||||
local RoleGlobal = RoleGlobal
|
||||
local Sync = require('ExpGamingCore.Sync@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Sync = require('ExpGamingCore.Sync')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
|
||||
-- just to hard reset the role sync
|
||||
function Sync.set_roles(...)
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
|
||||
local Sync = {}
|
||||
local Sync_updates = {}
|
||||
@@ -317,8 +317,8 @@ script.on_event('on_pre_player_left_game',Sync.emit_update)
|
||||
script.on_event('on_rocket_launched',Sync.emit_update)
|
||||
|
||||
function Sync:on_init()
|
||||
if loaded_modules['ExpGamingCore.Gui@^4.0.0'] then verbose('ExpGamingCore.Gui is installed; Loading gui src') require(module_path..'/src/gui',{Sync=Sync,module_path=module_path}) end
|
||||
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then require('ExpGamingCore.Server@^4.0.0').add_module_to_interface('Sync','ExpGamingCore.Sync') end
|
||||
if loaded_modules['ExpGamingCore.Gui'] then verbose('ExpGamingCore.Gui is installed; Loading gui src') require(module_path..'/src/gui',{Sync=Sync,module_path=module_path}) end
|
||||
if loaded_modules['ExpGamingCore.Server'] then require('ExpGamingCore.Server') end
|
||||
end
|
||||
|
||||
function Sync:on_post()
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
--- This file will be loaded when ExpGamingCore.Gui is present
|
||||
-- @function _comment
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Sync = Sync -- this is to force sync to remain in the ENV
|
||||
|
||||
local Sync_gui_functions = {}
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then require(module_path..'/src/sync') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then require(module_path..'/src/sync') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
local Sync = require('ExpGamingCore.Sync@^4.0.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Sync = require('ExpGamingCore.Sync')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
|
||||
Sync.add_to_gui(Gui.inputs.add_button('readme-sync-guildlines','View Guildlines','View the guildlines in the readme',function(player,element)
|
||||
Gui.center.open_tab(player,'readme','guildlines')
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
local Sync = require('ExpGamingCore.Sync@^4.0.0')
|
||||
local global = global['ExpGamingInfo.Rockets@^4.0.0']
|
||||
local Sync = require('ExpGamingCore.Sync')
|
||||
local global = global['ExpGamingInfo.Rockets']
|
||||
|
||||
Sync.add_update('rockets',function()
|
||||
local _return = {}
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Local Varibles
|
||||
local science_packs = {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
local Sync = require('ExpGamingCore.Sync@^4.0.0')
|
||||
local data = global['ExpGamingInfo.Science@^4.0.0']
|
||||
local Sync = require('ExpGamingCore.Sync')
|
||||
local data = global['ExpGamingInfo.Science']
|
||||
|
||||
Sync.add_update('science',function()
|
||||
local _return = {}
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
local Sync -- ExpGamingCore.Sync@^4.0.0
|
||||
|
||||
@@ -30,8 +30,8 @@ end)
|
||||
return setmetatable({
|
||||
get_allowed_afk_time=get_allowed_afk_time,
|
||||
on_init=function(self)
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then require(module_path..'/src/server',Sync,self) end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
|
||||
if loaded_modules['ExpGamingCore.Server'] then require(module_path..'/src/server',Sync,self) end
|
||||
end
|
||||
},{__call=function(self,...) self.get_allowed_afk_time(...) end})
|
||||
@@ -1,6 +1,6 @@
|
||||
local Sync = Sync
|
||||
local get_allowed_afk_time = self
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
Event[defines.events.on_tick] = nil
|
||||
|
||||
script.on_init(function(event)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Admin = require('ExpGamingAdmin.AdminLib')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
|
||||
-- Local Varibles
|
||||
@@ -48,7 +48,7 @@ local _root_tree = {low_items=low_items,med_items=med_items,high_items=high_item
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
local Group -- ExpGamingCore.Group@^4.0.0
|
||||
|
||||
@@ -50,8 +50,8 @@ end
|
||||
return setmetatable({
|
||||
get_player_info=get_player_info,
|
||||
on_init=function(self)
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Group@^4.0.0'] then Group = require('ExpGamingCore.Group@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingCore.Group'] then Group = require('ExpGamingCore.Group') end
|
||||
end
|
||||
},{
|
||||
__call=function(self,...) self.get_player_info(...) end
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
-- @author Cooldude2606
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Admin -- ExpGamingAdmin.AdminLib@^4.0.0
|
||||
local AdminGui -- ExpGamingAdmin.Gui@^4.0.0
|
||||
|
||||
@@ -30,9 +30,9 @@ local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function(self)
|
||||
if loaded_modules['ExpGamingPlayer.playerInfo'] then playerInfo = require('ExpGamingPlayer.playerInfo') end
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then getPlayers = require(module_path..'/src/ranking',{self=self}) end
|
||||
if loaded_modules['ExpGamingAdmin.AdminLib@^4.0.0'] then Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') end
|
||||
if loaded_modules['ExpGamingAdmin.Gui@^4.0.0'] then AdminGui = require('ExpGamingAdmin.Gui@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then getPlayers = require(module_path..'/src/ranking',{self=self}) end
|
||||
if loaded_modules['ExpGamingAdmin.AdminLib'] then Admin = require('ExpGamingAdmin.AdminLib') end
|
||||
if loaded_modules['ExpGamingAdmin.Gui'] then AdminGui = require('ExpGamingAdmin.Gui') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
|
||||
script.on_event(defines.events.on_role_change,self.update)
|
||||
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
-- Module Require
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Role -- ExpGamingCore.Server@^4.0.0
|
||||
|
||||
-- Local Varibles
|
||||
@@ -15,7 +15,7 @@ local poll_time_out = 90 -- In seconds
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function()
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
|
||||
|
||||
-- Module Require
|
||||
local Server = require('ExpGamingCore.Server@^4.0.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Server = require('ExpGamingCore.Server')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
|
||||
-- Local Varibles
|
||||
--{type='slider',object='',key='',name='',min=x,max=y}
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
-- maybe make this not require Role and have it optinal
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Role = require('ExpGamingCore.Role@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Role = require('ExpGamingCore.Role')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Color = require('FactorioStdLib.Color@^0.8.0')
|
||||
local Color = require('FactorioStdLib.Color')
|
||||
|
||||
-- Module Define
|
||||
local module_verbose = false
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Local Varibles
|
||||
local turret_enabled = true
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Gui = require('ExpGamingCore.Gui@^4.0.0')
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Gui = require('ExpGamingCore.Gui')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
local Role -- ExpGamingCore.Role@^4.0.0
|
||||
|
||||
-- Local Varibles
|
||||
@@ -27,8 +27,8 @@ local global
|
||||
local module_verbose = false
|
||||
local ThisModule = {
|
||||
on_init=function(self)
|
||||
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then Role = require('ExpGamingCore.Role@^4.0.0') end
|
||||
if loaded_modules['ExpGamingCore.Command@^4.0.0'] then require(module_path..'/src/commands',{self=self,warps=global,warp_min_distance=warp_min_distance}) end
|
||||
if loaded_modules['ExpGamingCore.Role'] then Role = require('ExpGamingCore.Role') end
|
||||
if loaded_modules['ExpGamingCore.Command'] then require(module_path..'/src/commands',{self=self,warps=global,warp_min_distance=warp_min_distance}) end
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
-- @alais ThisModule
|
||||
|
||||
-- Module Require
|
||||
local Game = require('FactorioStdLib.Game@^0.8.0')
|
||||
local Game = require('FactorioStdLib.Game')
|
||||
|
||||
-- Local Varibles
|
||||
local entites = require(module_path..'/src/entites')
|
||||
|
||||
@@ -1,80 +1,80 @@
|
||||
-- not_luadoc=true
|
||||
--- Used to index the files to be loaded
|
||||
return {
|
||||
['FactorioStdLib.String@^0.8.0']='./modules/FactorioStdLib/String',
|
||||
['FactorioStdLib.String@0.8.0']='./modules/FactorioStdLib/String',
|
||||
['FactorioStdLib.Table@^0.8.0']='./modules/FactorioStdLib/Table',
|
||||
['FactorioStdLib.Table@0.8.0']='./modules/FactorioStdLib/Table',
|
||||
['FactorioStdLib.Game@^0.8.0']='./modules/FactorioStdLib/Game',
|
||||
['DeathMarkers@4.0.0']='./modules/DeathMarkers',
|
||||
['FactorioStdLib.Color@^0.8.0']='./modules/FactorioStdLib/Color',
|
||||
['FactorioStdLib.Color@0.8.0']='./modules/FactorioStdLib/Color',
|
||||
['PlayerAutoColor@4.0.0']='./modules/PlayerAutoColor',
|
||||
['DamagePopup@4.0.0']='./modules/DamagePopup',
|
||||
['FactorioStdLib.Game@0.8.0']='./modules/FactorioStdLib/Game',
|
||||
['WornPaths@4.0.0']='./modules/WornPaths',
|
||||
['SpawnArea@4.0.0']='./modules/SpawnArea',
|
||||
['FactorioStdLib@^0.8.0']='./modules/FactorioStdLib',
|
||||
['FactorioStdLib@0.8.0']='./modules/FactorioStdLib',
|
||||
['ExpGamingLib@^4.0.0']='./modules/ExpGamingLib',
|
||||
['ExpGamingLib@4.0.0']='./modules/ExpGamingLib',
|
||||
['ExpGamingCore.Command@^4.0.0']='./modules/ExpGamingCore/Command',
|
||||
['ExpGamingCore.Server@^4.0.0']='./modules/ExpGamingCore/Server',
|
||||
['ExpGamingCore.Command@4.0.0']='./modules/ExpGamingCore/Command',
|
||||
['ExpGamingCommands.home@4.0.0']='./modules/ExpGamingCommands/home',
|
||||
['ExpGamingCommands.cheatMode@4.0.0']='./modules/ExpGamingCommands/cheatMode',
|
||||
['ExpGamingCore.Server@4.0.0']='./modules/ExpGamingCore/Server',
|
||||
['ExpGamingCore.Group@^4.0.0']='./modules/ExpGamingCore/Group',
|
||||
['ExpGamingCore.Group@4.0.0']='./modules/ExpGamingCore/Group',
|
||||
['ExpGamingCore.Role@^4.0.0']='./modules/ExpGamingCore/Role',
|
||||
['ExpGamingCore.Role@4.0.0']='./modules/ExpGamingCore/Role',
|
||||
['ExpGamingCommands.tags@4.0.0']='./modules/ExpGamingCommands/tags',
|
||||
['ExpGamingCommands.kill@4.0.0']='./modules/ExpGamingCommands/kill',
|
||||
['ExpGamingCommands.bonus@4.0.0']='./modules/ExpGamingCommands/bonus',
|
||||
['ExpGamingBot.autoChat@4.0.0']='./modules/ExpGamingBot/autoChat',
|
||||
['ExpGamingCore.Gui@^4.0.0']='./modules/ExpGamingCore/Gui',
|
||||
['ExpGamingCore.Gui@4.0.0']='./modules/ExpGamingCore/Gui',
|
||||
['WarpPoints@4.0.0']='./modules/WarpPoints',
|
||||
['GuiAnnouncements@4.0.0']='./modules/GuiAnnouncements',
|
||||
['GameSettingsGui@4.0.0']='./modules/GameSettingsGui',
|
||||
['ExpGamingInfo.Tasklist@4.0.0']='./modules/ExpGamingInfo/Tasklist',
|
||||
['ExpGamingCore.Sync@^4.0.0']='./modules/ExpGamingCore/Sync',
|
||||
['ExpGamingPlayer.polls@4.0.0']='./modules/ExpGamingPlayer/polls',
|
||||
['ExpGamingPlayer.playerInfo@4.0.0']='./modules/ExpGamingPlayer/playerInfo',
|
||||
['ExpGamingPlayer.afkKick@4.0.0']='./modules/ExpGamingPlayer/afkKick',
|
||||
['ExpGamingCore.Sync@4.0.0']='./modules/ExpGamingCore/Sync',
|
||||
['ExpGamingInfo.Science@4.0.0']='./modules/ExpGamingInfo/Science',
|
||||
['ExpGamingInfo.Rockets@4.0.0']='./modules/ExpGamingInfo/Rockets',
|
||||
['ExpGamingInfo.Readme@4.0.0']='./modules/ExpGamingInfo/Readme',
|
||||
['ExpGamingInfo@4.0.0']='./modules/ExpGamingInfo',
|
||||
['ExpGamingCore@4.0.0']='./modules/ExpGamingCore',
|
||||
['ExpGamingBot.discordAlerts@4.0.0']='./modules/ExpGamingBot/discordAlerts',
|
||||
['ExpGamingBot.autoMessage@4.0.0']='./modules/ExpGamingBot/autoMessage',
|
||||
['ExpGamingBot@4.0.0']='./modules/ExpGamingBot',
|
||||
['ExpGamingAdmin.AdminLib@^4.0.0']='./modules/ExpGamingAdmin/AdminLib',
|
||||
['ExpGamingAdmin.AdminLib@4.0.0']='./modules/ExpGamingAdmin/AdminLib',
|
||||
['ExpGamingAdmin.TempBan@^4.0.0']='./modules/ExpGamingAdmin/TempBan',
|
||||
['ExpGamingAdmin.ClearInventory@4.0.0']='./modules/ExpGamingAdmin/ClearInventory',
|
||||
['ExpGamingAdmin.TempBan@4.0.0']='./modules/ExpGamingAdmin/TempBan',
|
||||
['ExpGamingCommands.repair@4.0.0']='./modules/ExpGamingCommands/repair',
|
||||
['ExpGamingPlayer.playerList@4.0.0']='./modules/ExpGamingPlayer/playerList',
|
||||
['ExpGamingAdmin.Reports@4.0.0']='./modules/ExpGamingAdmin/Reports',
|
||||
['ExpGamingAdmin.Warnings@^4.0.0']='./modules/ExpGamingAdmin/Warnings',
|
||||
['ExpGamingAdmin.Warnings@4.0.0']='./modules/ExpGamingAdmin/Warnings',
|
||||
['ExpGamingPlayer.inventorySearch@4.0.0']='./modules/ExpGamingPlayer/inventorySearch',
|
||||
['ExpGamingPlayer@4.0.0']='./modules/ExpGamingPlayer',
|
||||
['ExpGamingAdmin.Gui@^4.0.0']='./modules/ExpGamingAdmin/Gui',
|
||||
['ExpGamingAdmin.Gui@4.0.0']='./modules/ExpGamingAdmin/Gui',
|
||||
['ExpGamingAdmin.Teleport@^4.0.0']='./modules/ExpGamingAdmin/Teleport',
|
||||
['ExpGamingAdmin.Teleport@4.0.0']='./modules/ExpGamingAdmin/Teleport',
|
||||
['ExpGamingCommands.teleport@4.0.0']='./modules/ExpGamingCommands/teleport',
|
||||
['ExpGamingCommands@4.0.0']='./modules/ExpGamingCommands',
|
||||
['ExpGamingAdmin.Kick@4.0.0']='./modules/ExpGamingAdmin/Kick',
|
||||
['ExpGamingAdmin.Jail@4.0.0']='./modules/ExpGamingAdmin/Jail',
|
||||
['ExpGamingAdmin.Commands@4.0.0']='./modules/ExpGamingAdmin/Commands',
|
||||
['ExpGamingAdmin.Ban@4.0.0']='./modules/ExpGamingAdmin/Ban',
|
||||
['ExpGamingAdmin@4.0.0']='./modules/ExpGamingAdmin',
|
||||
['DeconControl@4.0.0']='./modules/DeconControl',
|
||||
['ChatPopup@4.0.0']='./modules/ChatPopup',
|
||||
['AdvancedStartingItems@4.0.0']='./modules/AdvancedStartingItems',
|
||||
['FactorioStdLib.String']='./modules/FactorioStdLib/String',
|
||||
['FactorioStdLib.String']='./modules/FactorioStdLib/String',
|
||||
['FactorioStdLib.Table']='./modules/FactorioStdLib/Table',
|
||||
['FactorioStdLib.Table']='./modules/FactorioStdLib/Table',
|
||||
['FactorioStdLib.Game']='./modules/FactorioStdLib/Game',
|
||||
['DeathMarkers']='./modules/DeathMarkers',
|
||||
['FactorioStdLib.Color']='./modules/FactorioStdLib/Color',
|
||||
['FactorioStdLib.Color']='./modules/FactorioStdLib/Color',
|
||||
['PlayerAutoColor']='./modules/PlayerAutoColor',
|
||||
['DamagePopup']='./modules/DamagePopup',
|
||||
['FactorioStdLib.Game']='./modules/FactorioStdLib/Game',
|
||||
['WornPaths']='./modules/WornPaths',
|
||||
['SpawnArea']='./modules/SpawnArea',
|
||||
['FactorioStdLib']='./modules/FactorioStdLib',
|
||||
['FactorioStdLib']='./modules/FactorioStdLib',
|
||||
['ExpGamingLib']='./modules/ExpGamingLib',
|
||||
['ExpGamingLib']='./modules/ExpGamingLib',
|
||||
['ExpGamingCore.Command']='./modules/ExpGamingCore/Command',
|
||||
['ExpGamingCore.Server']='./modules/ExpGamingCore/Server',
|
||||
['ExpGamingCore.Command']='./modules/ExpGamingCore/Command',
|
||||
['ExpGamingCommands.home']='./modules/ExpGamingCommands/home',
|
||||
['ExpGamingCommands.cheatMode']='./modules/ExpGamingCommands/cheatMode',
|
||||
['ExpGamingCore.Server']='./modules/ExpGamingCore/Server',
|
||||
['ExpGamingCore.Group']='./modules/ExpGamingCore/Group',
|
||||
['ExpGamingCore.Group']='./modules/ExpGamingCore/Group',
|
||||
['ExpGamingCore.Role']='./modules/ExpGamingCore/Role',
|
||||
['ExpGamingCore.Role']='./modules/ExpGamingCore/Role',
|
||||
['ExpGamingCommands.tags']='./modules/ExpGamingCommands/tags',
|
||||
['ExpGamingCommands.kill']='./modules/ExpGamingCommands/kill',
|
||||
['ExpGamingCommands.bonus']='./modules/ExpGamingCommands/bonus',
|
||||
['ExpGamingBot.autoChat']='./modules/ExpGamingBot/autoChat',
|
||||
['ExpGamingCore.Gui']='./modules/ExpGamingCore/Gui',
|
||||
['ExpGamingCore.Gui']='./modules/ExpGamingCore/Gui',
|
||||
['WarpPoints']='./modules/WarpPoints',
|
||||
['GuiAnnouncements']='./modules/GuiAnnouncements',
|
||||
['GameSettingsGui']='./modules/GameSettingsGui',
|
||||
['ExpGamingInfo.Tasklist']='./modules/ExpGamingInfo/Tasklist',
|
||||
['ExpGamingCore.Sync']='./modules/ExpGamingCore/Sync',
|
||||
['ExpGamingPlayer.polls']='./modules/ExpGamingPlayer/polls',
|
||||
['ExpGamingPlayer.playerInfo']='./modules/ExpGamingPlayer/playerInfo',
|
||||
['ExpGamingPlayer.afkKick']='./modules/ExpGamingPlayer/afkKick',
|
||||
['ExpGamingCore.Sync']='./modules/ExpGamingCore/Sync',
|
||||
['ExpGamingInfo.Science']='./modules/ExpGamingInfo/Science',
|
||||
['ExpGamingInfo.Rockets']='./modules/ExpGamingInfo/Rockets',
|
||||
['ExpGamingInfo.Readme']='./modules/ExpGamingInfo/Readme',
|
||||
['ExpGamingInfo']='./modules/ExpGamingInfo',
|
||||
['ExpGamingCore']='./modules/ExpGamingCore',
|
||||
['ExpGamingBot.discordAlerts']='./modules/ExpGamingBot/discordAlerts',
|
||||
['ExpGamingBot.autoMessage']='./modules/ExpGamingBot/autoMessage',
|
||||
['ExpGamingBot']='./modules/ExpGamingBot',
|
||||
['ExpGamingAdmin.AdminLib']='./modules/ExpGamingAdmin/AdminLib',
|
||||
['ExpGamingAdmin.AdminLib']='./modules/ExpGamingAdmin/AdminLib',
|
||||
['ExpGamingAdmin.TempBan']='./modules/ExpGamingAdmin/TempBan',
|
||||
['ExpGamingAdmin.ClearInventory']='./modules/ExpGamingAdmin/ClearInventory',
|
||||
['ExpGamingAdmin.TempBan']='./modules/ExpGamingAdmin/TempBan',
|
||||
['ExpGamingCommands.repair']='./modules/ExpGamingCommands/repair',
|
||||
['ExpGamingPlayer.playerList']='./modules/ExpGamingPlayer/playerList',
|
||||
['ExpGamingAdmin.Reports']='./modules/ExpGamingAdmin/Reports',
|
||||
['ExpGamingAdmin.Warnings']='./modules/ExpGamingAdmin/Warnings',
|
||||
['ExpGamingAdmin.Warnings']='./modules/ExpGamingAdmin/Warnings',
|
||||
['ExpGamingPlayer.inventorySearch']='./modules/ExpGamingPlayer/inventorySearch',
|
||||
['ExpGamingPlayer']='./modules/ExpGamingPlayer',
|
||||
['ExpGamingAdmin.Gui']='./modules/ExpGamingAdmin/Gui',
|
||||
['ExpGamingAdmin.Gui']='./modules/ExpGamingAdmin/Gui',
|
||||
['ExpGamingAdmin.Teleport']='./modules/ExpGamingAdmin/Teleport',
|
||||
['ExpGamingAdmin.Teleport']='./modules/ExpGamingAdmin/Teleport',
|
||||
['ExpGamingCommands.teleport']='./modules/ExpGamingCommands/teleport',
|
||||
['ExpGamingCommands']='./modules/ExpGamingCommands',
|
||||
['ExpGamingAdmin.Kick']='./modules/ExpGamingAdmin/Kick',
|
||||
['ExpGamingAdmin.Jail']='./modules/ExpGamingAdmin/Jail',
|
||||
['ExpGamingAdmin.Commands']='./modules/ExpGamingAdmin/Commands',
|
||||
['ExpGamingAdmin.Ban']='./modules/ExpGamingAdmin/Ban',
|
||||
['ExpGamingAdmin']='./modules/ExpGamingAdmin',
|
||||
['DeconControl']='./modules/DeconControl',
|
||||
['ChatPopup']='./modules/ChatPopup',
|
||||
['AdvancedStartingItems']='./modules/AdvancedStartingItems',
|
||||
}
|
||||
Reference in New Issue
Block a user