Removed versions from requires

This commit is contained in:
Cooldude2606
2018-12-09 16:23:35 +00:00
parent 56ad7f987c
commit 85efbd5cf8
58 changed files with 236 additions and 236 deletions

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Module = require('Module@>X.Y.Z') local Module = require('Module')
local SubModule = require('Collection.Submodule@^X.Y.Z') local SubModule = require('Collection.Submodule')
local OptModule -- OptModule@^X.Y.Z local OptModule -- OptModule@^X.Y.Z
-- Local Varibles -- Local Varibles
@@ -15,8 +15,8 @@ local OptModule -- OptModule@^X.Y.Z
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function(self) on_init=function(self)
if loaded_modules['OptModule@^X.Y.Z'] then OptModule = require('OptModule@^X.Y.Z') end if loaded_modules['OptModule'] then OptModule = require('OptModule') end
if loaded_modules['OptModule2@^X.Y.Z'] then require(module_path..'/src/module2',{self=self}) end if loaded_modules['OptModule2'] then require(module_path..'/src/module2',{self=self}) end
--code --code
end, end,
on_post=function() on_post=function()

View File

@@ -5,8 +5,8 @@
-- @alais ChatPopup -- @alais ChatPopup
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
local ChatPopup = {} local ChatPopup = {}

View File

@@ -5,7 +5,7 @@
-- @alais DamagePopup -- @alais DamagePopup
-- Module Require -- Module Require
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
local DamagePopup = {} local DamagePopup = {}

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Role -- ExpGamingCore.Role@^4.0.0 local Role -- ExpGamingCore.Role@^4.0.0
local Admin -- ExpGamingAdmin.AdminLib@^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 module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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
if loaded_modules['ExpGamingAdmin.AdminLib@^4.0.0'] then Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') end if loaded_modules['ExpGamingAdmin.AdminLib'] then Admin = require('ExpGamingAdmin.AdminLib') end
end end
} }

View File

@@ -5,7 +5,7 @@
-- @alais Admin -- @alais Admin
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Role -- ExpGamingCore.Role@^4.0.0 local Role -- ExpGamingCore.Role@^4.0.0
local Sync -- ExpGamingCore.Sync@^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 module_verbose = false
local Admin = { local Admin = {
on_init=function() 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
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') 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.Server'] then require('ExpGamingCore.Server') end
end, end,
actions={}, actions={},
action_functions={}, action_functions={},

View File

@@ -5,10 +5,10 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0') local AdminGui = require('ExpGamingAdmin.Gui')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color -- FactorioStdLib.Color@^0.8.0 local Color -- FactorioStdLib.Color@^0.8.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() on_init=function()
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
end end
} }

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -3,7 +3,7 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @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 --- Used to clear all parts of a player, removing warnings, reports, jail and temp ban
-- @command clear-all -- @command clear-all

View File

@@ -1,5 +1,5 @@
local Admin = self 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 --- Used to jail a player which stops them from moving
-- @command jail -- @command jail

View File

@@ -1,6 +1,6 @@
local Admin = self local Admin = self
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
--- Reports a player --- Reports a player
-- @command report -- @command report

View File

@@ -1,5 +1,5 @@
local Admin = self local Admin = self
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
--- Gives a warning to a player --- Gives a warning to a player
-- @command warn -- @command warn

View File

@@ -5,10 +5,10 @@
-- @alais AdminGui -- @alais AdminGui
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local playerInfo -- ExpGamingPlayer.playerInfo@^4.0.0 local playerInfo -- ExpGamingPlayer.playerInfo@^4.0.0
local mod_gui = require('mod-gui') local mod_gui = require('mod-gui')
@@ -16,7 +16,7 @@ local mod_gui = require('mod-gui')
local module_verbose = false local module_verbose = false
local AdminGui = { local AdminGui = {
on_init=function() 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) else playerInfo = function(player,frame)
frame.add{ frame.add{
type='label', type='label',

View File

@@ -5,11 +5,11 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0') local AdminGui = require('ExpGamingAdmin.Gui')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color -- FactorioStdLib.Color@^0.8.0 local Color -- FactorioStdLib.Color@^0.8.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -17,8 +17,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() on_init=function()
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
end end
} }

View File

@@ -5,10 +5,10 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0') local AdminGui = require('ExpGamingAdmin.Gui')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color -- FactorioStdLib.Color@^0.8.0 local Color -- FactorioStdLib.Color@^0.8.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() on_init=function()
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
end end
} }
-- Function Define -- Function Define

View File

@@ -5,11 +5,11 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color -- FactorioStdLib.Color@^0.8.0 local Color -- FactorioStdLib.Color@^0.8.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -17,8 +17,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() on_init=function()
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
end end
} }

View File

@@ -5,9 +5,9 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local AdminGui = require('ExpGamingAdmin.Gui@^4.0.0') local AdminGui = require('ExpGamingAdmin.Gui')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -5,10 +5,10 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color -- FactorioStdLib.Color@^0.8.0 local Color -- FactorioStdLib.Color@^0.8.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@^4.0.0
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() on_init=function()
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
end end
} }

View File

@@ -5,10 +5,10 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color -- FactorioStdLib.Color@^0.8.0 local Color -- FactorioStdLib.Color@^0.8.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -37,9 +37,9 @@ local punishments = {
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() on_init=function()
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['FactorioStdLib.Color@^0.8.0'] then Color = require('FactorioStdLib.Color@^0.8.0') end if loaded_modules['FactorioStdLib.Color'] then Color = require('FactorioStdLib.Color') end
if loaded_modules['ExpGamingAdmin.Reports@^4.0.0'] then if loaded_modules['ExpGamingAdmin.Reports'] then
take_action = take_action + 1 take_action = take_action + 1
table.insert(punishments,take_action,{'report',{'ExpGamingAdmin-Warnings.reported'},defines.textcolor.med}) table.insert(punishments,take_action,{'report',{'ExpGamingAdmin-Warnings.reported'},defines.textcolor.med})
end end

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Role -- ExpGamingCore.Role@^4.0.0 local Role -- ExpGamingCore.Role@^4.0.0
-- Local Varibles -- Local Varibles
@@ -121,7 +121,7 @@ local commands = {
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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 end
} }

View File

@@ -16,8 +16,8 @@ local Sync -- ExpGamingCore.Sync@4.0.0
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
end, end,
on_post=function() on_post=function()
--code --code

View File

@@ -5,9 +5,9 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Sync = require('ExpGamingCore.Sync@^4.0.0') local Sync = require('ExpGamingCore.Sync')
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -4,7 +4,7 @@
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
local global = global{} 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% -- these are the settings which are changed with scale being as +100%
local settings = { local settings = {
@@ -54,8 +54,8 @@ end)
return { return {
on_init= function(self) on_init= function(self)
if loaded_modules['ExpGamingCore.Role@^4.0.0'] then if loaded_modules['ExpGamingCore.Role'] then
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
-- instant respawn -- instant respawn
script.on_event(defines.events.on_pre_player_died,function(event) script.on_event(defines.events.on_pre_player_died,function(event)
local player = Game.get_player(event) local player = Game.get_player(event)

View File

@@ -3,7 +3,7 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @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{} local global = global{}
--- Sets the home for a player --- Sets the home for a player

View File

@@ -3,7 +3,7 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @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 --- Kills a player of a lower rank
-- @command kill -- @command kill

View File

@@ -4,8 +4,8 @@
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
-- Set an item to true to disallow it from being repaired -- Set an item to true to disallow it from being repaired
local disallow = { local disallow = {
@@ -24,7 +24,7 @@ local repairDisallow
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init = function(self) 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 end
} }

View File

@@ -1,5 +1,5 @@
-- not_luadoc=true -- 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) return function(player,entity)
player_return('You have repaired: '..entity.name..' this item is not allowed.',defines.textcolor.crit,player) 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') temp_ban(player,'<server>','Attempt To Repair A Banned Item')

View File

@@ -3,14 +3,14 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @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 Role -- ExpGamingCore.Role@^4.0.0
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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 end
} }

View File

@@ -3,7 +3,7 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @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 --- Teleports the user to the player given
-- @command go-to -- @command go-to

View File

@@ -4,8 +4,8 @@
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
-- @alias commands -- @alias commands
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
--- Used as an error constant for validation --- Used as an error constant for validation
-- @field commands.error -- @field commands.error

View File

@@ -23,7 +23,7 @@ local Group = {
end end
}), }),
on_init = function() 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, end,
on_post = function(self) on_post = function(self)
-- creats a root role that the server can use -- creats a root role that the server can use

View File

@@ -173,8 +173,8 @@ script.on_event('on_player_respawned',function(event)
end) end)
function Gui:on_init() function Gui:on_init()
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then if loaded_modules['ExpGamingCore.Server'] then
Server = require('ExpGamingCore.Server@^4.0.0') Server = require('ExpGamingCore.Server')
verbose('ExpGamingCore.Server is installed; Loading server src') verbose('ExpGamingCore.Server is installed; Loading server src')
script.on_init(require(module_path..'/src/server',{Gui=self})) script.on_init(require(module_path..'/src/server',{Gui=self}))
end end

View File

@@ -1,8 +1,8 @@
--- This file will be loaded when ExpGamingCore.Server is present --- This file will be loaded when ExpGamingCore.Server is present
-- @function _comment -- @function _comment
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
Server.add_module_to_interface('ExpGui','ExpGamingCore.Gui') Server.add_module_to_interface('ExpGui','ExpGamingCore.Gui')

View File

@@ -6,7 +6,7 @@
--- This is a submodule of ExpGamingCore.Gui but for ldoc reasons it is under its own module --- This is a submodule of ExpGamingCore.Gui but for ldoc reasons it is under its own module
-- @function _comment -- @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 Gui = Gui -- this is to force gui to remain in the ENV
local mod_gui = require("mod-gui") local mod_gui = require("mod-gui")

View File

@@ -5,8 +5,8 @@
-- @alais Role -- @alais Role
-- Module Require -- Module Require
local Group = require('ExpGamingCore.Group@^4.0.0') local Group = require('ExpGamingCore.Group')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Local Varibles -- Local Varibles
local role_change_event_id = script.generate_event_name('on_role_change') local role_change_event_id = script.generate_event_name('on_role_change')
@@ -28,9 +28,9 @@ local Role = {
end end
}), }),
on_init=function(self) 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.Server'] then require('ExpGamingCore.Server') end
if loaded_modules['ExpGamingCore.Command@^4.0.0'] then require(module_path..'/src/commands',{self=self}) end if loaded_modules['ExpGamingCore.Command'] 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.Sync'] then require(module_path..'/src/sync',{self=self,RoleGlobal=RoleGlobal}) end
end, end,
on_post=function(self) on_post=function(self)
-- creates a server role with root access -- creates a server role with root access

View File

@@ -1,8 +1,8 @@
local Role = self local Role = self
local RoleGlobal = RoleGlobal local RoleGlobal = RoleGlobal
local Sync = require('ExpGamingCore.Sync@^4.0.0') local Sync = require('ExpGamingCore.Sync')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
-- just to hard reset the role sync -- just to hard reset the role sync
function Sync.set_roles(...) function Sync.set_roles(...)

View File

@@ -4,8 +4,8 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
local Sync = {} local Sync = {}
local Sync_updates = {} 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) script.on_event('on_rocket_launched',Sync.emit_update)
function Sync:on_init() 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.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@^4.0.0'] then require('ExpGamingCore.Server@^4.0.0').add_module_to_interface('Sync','ExpGamingCore.Sync') end if loaded_modules['ExpGamingCore.Server'] then require('ExpGamingCore.Server') end
end end
function Sync:on_post() function Sync:on_post()

View File

@@ -7,8 +7,8 @@
--- This file will be loaded when ExpGamingCore.Gui is present --- This file will be loaded when ExpGamingCore.Gui is present
-- @function _comment -- @function _comment
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Sync = Sync -- this is to force sync to remain in the ENV local Sync = Sync -- this is to force sync to remain in the ENV
local Sync_gui_functions = {} local Sync_gui_functions = {}

View File

@@ -5,14 +5,14 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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 end
} }

View File

@@ -1,5 +1,5 @@
local Sync = require('ExpGamingCore.Sync@^4.0.0') local Sync = require('ExpGamingCore.Sync')
local Gui = require('ExpGamingCore.Gui@^4.0.0') 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) 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') Gui.center.open_tab(player,'readme','guildlines')

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -1,5 +1,5 @@
local Sync = require('ExpGamingCore.Sync@^4.0.0') local Sync = require('ExpGamingCore.Sync')
local global = global['ExpGamingInfo.Rockets@^4.0.0'] local global = global['ExpGamingInfo.Rockets']
Sync.add_update('rockets',function() Sync.add_update('rockets',function()
local _return = {} local _return = {}

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Local Varibles -- Local Varibles
local science_packs = { local science_packs = {

View File

@@ -1,5 +1,5 @@
local Sync = require('ExpGamingCore.Sync@^4.0.0') local Sync = require('ExpGamingCore.Sync')
local data = global['ExpGamingInfo.Science@^4.0.0'] local data = global['ExpGamingInfo.Science']
Sync.add_update('science',function() Sync.add_update('science',function()
local _return = {} local _return = {}

View File

@@ -5,9 +5,9 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -3,7 +3,7 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @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 Role -- ExpGamingCore.Role@^4.0.0
local Sync -- ExpGamingCore.Sync@^4.0.0 local Sync -- ExpGamingCore.Sync@^4.0.0
@@ -30,8 +30,8 @@ end)
return setmetatable({ return setmetatable({
get_allowed_afk_time=get_allowed_afk_time, get_allowed_afk_time=get_allowed_afk_time,
on_init=function(self) 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.Role'] then Role = require('ExpGamingCore.Role') end
if loaded_modules['ExpGamingCore.Sync@^4.0.0'] then Sync = require('ExpGamingCore.Sync@^4.0.0') end if loaded_modules['ExpGamingCore.Sync'] then Sync = require('ExpGamingCore.Sync') end
if loaded_modules['ExpGamingCore.Server@^4.0.0'] then require(module_path..'/src/server',Sync,self) end if loaded_modules['ExpGamingCore.Server'] then require(module_path..'/src/server',Sync,self) end
end end
},{__call=function(self,...) self.get_allowed_afk_time(...) end}) },{__call=function(self,...) self.get_allowed_afk_time(...) end})

View File

@@ -1,6 +1,6 @@
local Sync = Sync local Sync = Sync
local get_allowed_afk_time = self 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 Event[defines.events.on_tick] = nil
script.on_init(function(event) script.on_init(function(event)

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Admin = require('ExpGamingAdmin.AdminLib@^4.0.0') local Admin = require('ExpGamingAdmin.AdminLib')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Role -- ExpGamingCore.Role@^4.0.0 local Role -- ExpGamingCore.Role@^4.0.0
-- Local Varibles -- 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 module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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 end
} }

View File

@@ -3,8 +3,8 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Role -- ExpGamingCore.Role@^4.0.0 local Role -- ExpGamingCore.Role@^4.0.0
local Group -- ExpGamingCore.Group@^4.0.0 local Group -- ExpGamingCore.Group@^4.0.0
@@ -50,8 +50,8 @@ end
return setmetatable({ return setmetatable({
get_player_info=get_player_info, get_player_info=get_player_info,
on_init=function(self) 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.Role'] then Role = require('ExpGamingCore.Role') end
if loaded_modules['ExpGamingCore.Group@^4.0.0'] then Group = require('ExpGamingCore.Group@^4.0.0') end if loaded_modules['ExpGamingCore.Group'] then Group = require('ExpGamingCore.Group') end
end end
},{ },{
__call=function(self,...) self.get_player_info(...) end __call=function(self,...) self.get_player_info(...) end

View File

@@ -3,8 +3,8 @@
-- @author Cooldude2606 -- @author Cooldude2606
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Admin -- ExpGamingAdmin.AdminLib@^4.0.0 local Admin -- ExpGamingAdmin.AdminLib@^4.0.0
local AdminGui -- ExpGamingAdmin.Gui@^4.0.0 local AdminGui -- ExpGamingAdmin.Gui@^4.0.0
@@ -30,9 +30,9 @@ local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function(self) on_init=function(self)
if loaded_modules['ExpGamingPlayer.playerInfo'] then playerInfo = require('ExpGamingPlayer.playerInfo') end 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['ExpGamingCore.Role'] 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.AdminLib'] then Admin = require('ExpGamingAdmin.AdminLib') end
if loaded_modules['ExpGamingAdmin.Gui@^4.0.0'] then AdminGui = require('ExpGamingAdmin.Gui@^4.0.0') end if loaded_modules['ExpGamingAdmin.Gui'] then AdminGui = require('ExpGamingAdmin.Gui') end
end end
} }

View File

@@ -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) script.on_event(defines.events.on_role_change,self.update)

View File

@@ -4,8 +4,8 @@
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
-- Module Require -- Module Require
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Role -- ExpGamingCore.Server@^4.0.0 local Role -- ExpGamingCore.Server@^4.0.0
-- Local Varibles -- Local Varibles
@@ -15,7 +15,7 @@ local poll_time_out = 90 -- In seconds
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function() 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 end
} }

View File

@@ -4,8 +4,8 @@
-- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE -- @license https://github.com/explosivegaming/scenario/blob/master/LICENSE
-- Module Require -- Module Require
local Server = require('ExpGamingCore.Server@^4.0.0') local Server = require('ExpGamingCore.Server')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
-- Local Varibles -- Local Varibles
--{type='slider',object='',key='',name='',min=x,max=y} --{type='slider',object='',key='',name='',min=x,max=y}

View File

@@ -7,9 +7,9 @@
-- maybe make this not require Role and have it optinal -- maybe make this not require Role and have it optinal
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Role = require('ExpGamingCore.Role@^4.0.0') local Role = require('ExpGamingCore.Role')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -5,7 +5,7 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Color = require('FactorioStdLib.Color@^0.8.0') local Color = require('FactorioStdLib.Color')
-- Module Define -- Module Define
local module_verbose = false local module_verbose = false

View File

@@ -5,7 +5,7 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Local Varibles -- Local Varibles
local turret_enabled = true local turret_enabled = true

View File

@@ -5,8 +5,8 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Gui = require('ExpGamingCore.Gui@^4.0.0') local Gui = require('ExpGamingCore.Gui')
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
local Role -- ExpGamingCore.Role@^4.0.0 local Role -- ExpGamingCore.Role@^4.0.0
-- Local Varibles -- Local Varibles
@@ -27,8 +27,8 @@ local global
local module_verbose = false local module_verbose = false
local ThisModule = { local ThisModule = {
on_init=function(self) 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.Role'] then Role = require('ExpGamingCore.Role') 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.Command'] then require(module_path..'/src/commands',{self=self,warps=global,warp_min_distance=warp_min_distance}) end
end end
} }

View File

@@ -5,7 +5,7 @@
-- @alais ThisModule -- @alais ThisModule
-- Module Require -- Module Require
local Game = require('FactorioStdLib.Game@^0.8.0') local Game = require('FactorioStdLib.Game')
-- Local Varibles -- Local Varibles
local entites = require(module_path..'/src/entites') local entites = require(module_path..'/src/entites')

View File

@@ -1,80 +1,80 @@
-- not_luadoc=true -- not_luadoc=true
--- Used to index the files to be loaded --- Used to index the files to be loaded
return { return {
['FactorioStdLib.String@^0.8.0']='./modules/FactorioStdLib/String', ['FactorioStdLib.String']='./modules/FactorioStdLib/String',
['FactorioStdLib.String@0.8.0']='./modules/FactorioStdLib/String', ['FactorioStdLib.String']='./modules/FactorioStdLib/String',
['FactorioStdLib.Table@^0.8.0']='./modules/FactorioStdLib/Table', ['FactorioStdLib.Table']='./modules/FactorioStdLib/Table',
['FactorioStdLib.Table@0.8.0']='./modules/FactorioStdLib/Table', ['FactorioStdLib.Table']='./modules/FactorioStdLib/Table',
['FactorioStdLib.Game@^0.8.0']='./modules/FactorioStdLib/Game', ['FactorioStdLib.Game']='./modules/FactorioStdLib/Game',
['DeathMarkers@4.0.0']='./modules/DeathMarkers', ['DeathMarkers']='./modules/DeathMarkers',
['FactorioStdLib.Color@^0.8.0']='./modules/FactorioStdLib/Color', ['FactorioStdLib.Color']='./modules/FactorioStdLib/Color',
['FactorioStdLib.Color@0.8.0']='./modules/FactorioStdLib/Color', ['FactorioStdLib.Color']='./modules/FactorioStdLib/Color',
['PlayerAutoColor@4.0.0']='./modules/PlayerAutoColor', ['PlayerAutoColor']='./modules/PlayerAutoColor',
['DamagePopup@4.0.0']='./modules/DamagePopup', ['DamagePopup']='./modules/DamagePopup',
['FactorioStdLib.Game@0.8.0']='./modules/FactorioStdLib/Game', ['FactorioStdLib.Game']='./modules/FactorioStdLib/Game',
['WornPaths@4.0.0']='./modules/WornPaths', ['WornPaths']='./modules/WornPaths',
['SpawnArea@4.0.0']='./modules/SpawnArea', ['SpawnArea']='./modules/SpawnArea',
['FactorioStdLib@^0.8.0']='./modules/FactorioStdLib', ['FactorioStdLib']='./modules/FactorioStdLib',
['FactorioStdLib@0.8.0']='./modules/FactorioStdLib', ['FactorioStdLib']='./modules/FactorioStdLib',
['ExpGamingLib@^4.0.0']='./modules/ExpGamingLib', ['ExpGamingLib']='./modules/ExpGamingLib',
['ExpGamingLib@4.0.0']='./modules/ExpGamingLib', ['ExpGamingLib']='./modules/ExpGamingLib',
['ExpGamingCore.Command@^4.0.0']='./modules/ExpGamingCore/Command', ['ExpGamingCore.Command']='./modules/ExpGamingCore/Command',
['ExpGamingCore.Server@^4.0.0']='./modules/ExpGamingCore/Server', ['ExpGamingCore.Server']='./modules/ExpGamingCore/Server',
['ExpGamingCore.Command@4.0.0']='./modules/ExpGamingCore/Command', ['ExpGamingCore.Command']='./modules/ExpGamingCore/Command',
['ExpGamingCommands.home@4.0.0']='./modules/ExpGamingCommands/home', ['ExpGamingCommands.home']='./modules/ExpGamingCommands/home',
['ExpGamingCommands.cheatMode@4.0.0']='./modules/ExpGamingCommands/cheatMode', ['ExpGamingCommands.cheatMode']='./modules/ExpGamingCommands/cheatMode',
['ExpGamingCore.Server@4.0.0']='./modules/ExpGamingCore/Server', ['ExpGamingCore.Server']='./modules/ExpGamingCore/Server',
['ExpGamingCore.Group@^4.0.0']='./modules/ExpGamingCore/Group', ['ExpGamingCore.Group']='./modules/ExpGamingCore/Group',
['ExpGamingCore.Group@4.0.0']='./modules/ExpGamingCore/Group', ['ExpGamingCore.Group']='./modules/ExpGamingCore/Group',
['ExpGamingCore.Role@^4.0.0']='./modules/ExpGamingCore/Role', ['ExpGamingCore.Role']='./modules/ExpGamingCore/Role',
['ExpGamingCore.Role@4.0.0']='./modules/ExpGamingCore/Role', ['ExpGamingCore.Role']='./modules/ExpGamingCore/Role',
['ExpGamingCommands.tags@4.0.0']='./modules/ExpGamingCommands/tags', ['ExpGamingCommands.tags']='./modules/ExpGamingCommands/tags',
['ExpGamingCommands.kill@4.0.0']='./modules/ExpGamingCommands/kill', ['ExpGamingCommands.kill']='./modules/ExpGamingCommands/kill',
['ExpGamingCommands.bonus@4.0.0']='./modules/ExpGamingCommands/bonus', ['ExpGamingCommands.bonus']='./modules/ExpGamingCommands/bonus',
['ExpGamingBot.autoChat@4.0.0']='./modules/ExpGamingBot/autoChat', ['ExpGamingBot.autoChat']='./modules/ExpGamingBot/autoChat',
['ExpGamingCore.Gui@^4.0.0']='./modules/ExpGamingCore/Gui', ['ExpGamingCore.Gui']='./modules/ExpGamingCore/Gui',
['ExpGamingCore.Gui@4.0.0']='./modules/ExpGamingCore/Gui', ['ExpGamingCore.Gui']='./modules/ExpGamingCore/Gui',
['WarpPoints@4.0.0']='./modules/WarpPoints', ['WarpPoints']='./modules/WarpPoints',
['GuiAnnouncements@4.0.0']='./modules/GuiAnnouncements', ['GuiAnnouncements']='./modules/GuiAnnouncements',
['GameSettingsGui@4.0.0']='./modules/GameSettingsGui', ['GameSettingsGui']='./modules/GameSettingsGui',
['ExpGamingInfo.Tasklist@4.0.0']='./modules/ExpGamingInfo/Tasklist', ['ExpGamingInfo.Tasklist']='./modules/ExpGamingInfo/Tasklist',
['ExpGamingCore.Sync@^4.0.0']='./modules/ExpGamingCore/Sync', ['ExpGamingCore.Sync']='./modules/ExpGamingCore/Sync',
['ExpGamingPlayer.polls@4.0.0']='./modules/ExpGamingPlayer/polls', ['ExpGamingPlayer.polls']='./modules/ExpGamingPlayer/polls',
['ExpGamingPlayer.playerInfo@4.0.0']='./modules/ExpGamingPlayer/playerInfo', ['ExpGamingPlayer.playerInfo']='./modules/ExpGamingPlayer/playerInfo',
['ExpGamingPlayer.afkKick@4.0.0']='./modules/ExpGamingPlayer/afkKick', ['ExpGamingPlayer.afkKick']='./modules/ExpGamingPlayer/afkKick',
['ExpGamingCore.Sync@4.0.0']='./modules/ExpGamingCore/Sync', ['ExpGamingCore.Sync']='./modules/ExpGamingCore/Sync',
['ExpGamingInfo.Science@4.0.0']='./modules/ExpGamingInfo/Science', ['ExpGamingInfo.Science']='./modules/ExpGamingInfo/Science',
['ExpGamingInfo.Rockets@4.0.0']='./modules/ExpGamingInfo/Rockets', ['ExpGamingInfo.Rockets']='./modules/ExpGamingInfo/Rockets',
['ExpGamingInfo.Readme@4.0.0']='./modules/ExpGamingInfo/Readme', ['ExpGamingInfo.Readme']='./modules/ExpGamingInfo/Readme',
['ExpGamingInfo@4.0.0']='./modules/ExpGamingInfo', ['ExpGamingInfo']='./modules/ExpGamingInfo',
['ExpGamingCore@4.0.0']='./modules/ExpGamingCore', ['ExpGamingCore']='./modules/ExpGamingCore',
['ExpGamingBot.discordAlerts@4.0.0']='./modules/ExpGamingBot/discordAlerts', ['ExpGamingBot.discordAlerts']='./modules/ExpGamingBot/discordAlerts',
['ExpGamingBot.autoMessage@4.0.0']='./modules/ExpGamingBot/autoMessage', ['ExpGamingBot.autoMessage']='./modules/ExpGamingBot/autoMessage',
['ExpGamingBot@4.0.0']='./modules/ExpGamingBot', ['ExpGamingBot']='./modules/ExpGamingBot',
['ExpGamingAdmin.AdminLib@^4.0.0']='./modules/ExpGamingAdmin/AdminLib', ['ExpGamingAdmin.AdminLib']='./modules/ExpGamingAdmin/AdminLib',
['ExpGamingAdmin.AdminLib@4.0.0']='./modules/ExpGamingAdmin/AdminLib', ['ExpGamingAdmin.AdminLib']='./modules/ExpGamingAdmin/AdminLib',
['ExpGamingAdmin.TempBan@^4.0.0']='./modules/ExpGamingAdmin/TempBan', ['ExpGamingAdmin.TempBan']='./modules/ExpGamingAdmin/TempBan',
['ExpGamingAdmin.ClearInventory@4.0.0']='./modules/ExpGamingAdmin/ClearInventory', ['ExpGamingAdmin.ClearInventory']='./modules/ExpGamingAdmin/ClearInventory',
['ExpGamingAdmin.TempBan@4.0.0']='./modules/ExpGamingAdmin/TempBan', ['ExpGamingAdmin.TempBan']='./modules/ExpGamingAdmin/TempBan',
['ExpGamingCommands.repair@4.0.0']='./modules/ExpGamingCommands/repair', ['ExpGamingCommands.repair']='./modules/ExpGamingCommands/repair',
['ExpGamingPlayer.playerList@4.0.0']='./modules/ExpGamingPlayer/playerList', ['ExpGamingPlayer.playerList']='./modules/ExpGamingPlayer/playerList',
['ExpGamingAdmin.Reports@4.0.0']='./modules/ExpGamingAdmin/Reports', ['ExpGamingAdmin.Reports']='./modules/ExpGamingAdmin/Reports',
['ExpGamingAdmin.Warnings@^4.0.0']='./modules/ExpGamingAdmin/Warnings', ['ExpGamingAdmin.Warnings']='./modules/ExpGamingAdmin/Warnings',
['ExpGamingAdmin.Warnings@4.0.0']='./modules/ExpGamingAdmin/Warnings', ['ExpGamingAdmin.Warnings']='./modules/ExpGamingAdmin/Warnings',
['ExpGamingPlayer.inventorySearch@4.0.0']='./modules/ExpGamingPlayer/inventorySearch', ['ExpGamingPlayer.inventorySearch']='./modules/ExpGamingPlayer/inventorySearch',
['ExpGamingPlayer@4.0.0']='./modules/ExpGamingPlayer', ['ExpGamingPlayer']='./modules/ExpGamingPlayer',
['ExpGamingAdmin.Gui@^4.0.0']='./modules/ExpGamingAdmin/Gui', ['ExpGamingAdmin.Gui']='./modules/ExpGamingAdmin/Gui',
['ExpGamingAdmin.Gui@4.0.0']='./modules/ExpGamingAdmin/Gui', ['ExpGamingAdmin.Gui']='./modules/ExpGamingAdmin/Gui',
['ExpGamingAdmin.Teleport@^4.0.0']='./modules/ExpGamingAdmin/Teleport', ['ExpGamingAdmin.Teleport']='./modules/ExpGamingAdmin/Teleport',
['ExpGamingAdmin.Teleport@4.0.0']='./modules/ExpGamingAdmin/Teleport', ['ExpGamingAdmin.Teleport']='./modules/ExpGamingAdmin/Teleport',
['ExpGamingCommands.teleport@4.0.0']='./modules/ExpGamingCommands/teleport', ['ExpGamingCommands.teleport']='./modules/ExpGamingCommands/teleport',
['ExpGamingCommands@4.0.0']='./modules/ExpGamingCommands', ['ExpGamingCommands']='./modules/ExpGamingCommands',
['ExpGamingAdmin.Kick@4.0.0']='./modules/ExpGamingAdmin/Kick', ['ExpGamingAdmin.Kick']='./modules/ExpGamingAdmin/Kick',
['ExpGamingAdmin.Jail@4.0.0']='./modules/ExpGamingAdmin/Jail', ['ExpGamingAdmin.Jail']='./modules/ExpGamingAdmin/Jail',
['ExpGamingAdmin.Commands@4.0.0']='./modules/ExpGamingAdmin/Commands', ['ExpGamingAdmin.Commands']='./modules/ExpGamingAdmin/Commands',
['ExpGamingAdmin.Ban@4.0.0']='./modules/ExpGamingAdmin/Ban', ['ExpGamingAdmin.Ban']='./modules/ExpGamingAdmin/Ban',
['ExpGamingAdmin@4.0.0']='./modules/ExpGamingAdmin', ['ExpGamingAdmin']='./modules/ExpGamingAdmin',
['DeconControl@4.0.0']='./modules/DeconControl', ['DeconControl']='./modules/DeconControl',
['ChatPopup@4.0.0']='./modules/ChatPopup', ['ChatPopup']='./modules/ChatPopup',
['AdvancedStartingItems@4.0.0']='./modules/AdvancedStartingItems', ['AdvancedStartingItems']='./modules/AdvancedStartingItems',
} }