Initial commit - RefoselBots

This commit is contained in:
Refosel
2026-03-28 14:49:46 +03:00
commit 4ee71d6bcb
16 changed files with 1577 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
--if game.SinglePlayer() or SERVER then return end
-- Modules
local _, dir = file.Find("refoselbots/modules/*", "LUA")
for k, v in pairs(dir) do
local f = table.Add(file.Find("refoselbots/modules/" .. v .. "/cl_*.lua", "LUA"), file.Find("refoselbots/modules/" .. v .. "/sh_*.lua", "LUA"))
for i, o in pairs(f) do
local file = "refoselbots/modules/" .. v .. "/" .. o
include(file)
end
end