Revision Difference
Global.include#528967
<function name="include" parent="Global" type="libraryfunc">
<description>
Executes a Lua script.
<note>Addon files (.gma files) do not support relative parent folders (`..` notation).</note>
<warning>The file you are attempting to include MUST NOT be empty or the include will fail. Files over a certain size may fail as well.</warning>
<warning>If the file you are including is clientside or shared, it **must** be <page>Global.AddCSLuaFile</page>'d or this function will error saying the file doesn't exist.</warning>
<note>This function will try to load local client file if `sv_allowcslua` is **1**.</note>
<bug issue="1976"><page>Global.pcall</page>ing this function will break autorefresh.</bug>
</description>
<realm>Shared and Menu</realm>
<args>
<arg name="fileName" type="string">The name of the script to be executed. The path must be either relative to the current file, or be an absolute path (relative to and excluding the **lua/** folder).
<note>Please make sure your file names are unique, the filesystem is shared across all addons, so a file named `lua/config.lua` in your addon may be overwritten by the same file in another addon.</note></arg>
</args>
<rets>
<ret name="" type="vararg">Anything that the executed Lua script returns.</ret>
</rets>
</function>
<example>
<description>Demonstrates correct and incorrect usage.</description>
<code>
-- Correct usage:
-- Will look for "lua/myLuaFolder/myLuaFile.lua" in all addons and then the base game **lua/** folder.
include( "myLuaFolder/myLuaFile.lua" )
-- This is incorrect, and will NOT work.
include( "lua/myLuaFolder/myLuaFile.lua" )
include( "addons/lua/myLuaFolder/myLuaFile.lua" )
include( "addons/MyAddon/lua/myLuaFolder/myLuaFile.lua" )
include( "MyAddon/lua/myLuaFolder/myLuaFile.lua" )
</code>
</example>⤶
⤶
<example>⤶
<description>Specify a base folder and recursively include cl, sh and sv files without having to specify them.</description>⤶
<code>⤶
local rootDir = "vac-events"⤶
⤶
local function AddFile(File, dir)⤶
local fileSide = string.lower(string.Left(File , 3))⤶
⤶
if SERVER and fileSide == "sv_" then⤶
include(dir..File)⤶
print("[AUTOLOAD] SV INCLUDE: " .. File)⤶
elseif fileSide == "sh_" then⤶
if SERVER then ⤶
AddCSLuaFile(dir..File)⤶
print("[AUTOLOAD] SH ADDCS: " .. File)⤶
end⤶
include(dir..File)⤶
print("[AUTOLOAD] SH INCLUDE: " .. File)⤶
elseif fileSide == "cl_" then⤶
if SERVER then ⤶
AddCSLuaFile(dir..File)⤶
print("[AUTOLOAD] CL ADDCS: " .. File)⤶
elseif CLIENT then⤶
include(dir..File)⤶
print("[AUTOLOAD] CL INCLUDE: " .. File)⤶
end⤶
end⤶
end⤶
⤶
local function IncludeDir(dir)⤶
dir = dir .. "/"⤶
local File, Directory = file.Find(dir.."*", "LUA")⤶
⤶
for k, v in ipairs(File) do⤶
if string.EndsWith(v, ".lua") then⤶
AddFile(v, dir)⤶
end⤶
end⤶
⤶
for k, v in ipairs(Directory) do⤶
print("[AUTOLOAD] Directory: " .. v)⤶
IncludeDir(dir..v)⤶
end⤶
⤶
end⤶
IncludeDir(rootDir)⤶
</code>⤶
</example>