-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
32 lines (26 loc) · 891 Bytes
/
Copy pathinit.lua
File metadata and controls
32 lines (26 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
local function metadata(self)
end
local function init(self, options)
json = require(self.resourcePath .. "lib/json")
require(self.scriptPath .. "helpers/randomizer_helper")
randomizer_helper.memedit = require(self.scriptPath .. "helpers/custom_memedit")
require(self.scriptPath .. "helpers/GameEvents")
self.ap_link = require(self.scriptPath .. "ap/ap_link")
require(self.scriptPath .. "unimplemented_units")
self.ap_link.init(self)
end
local function load(self, options, version)
LOG("Randomizer version " .. version .. " loaded")
LOG("Don't forget to makeitso if you didn't run the command once on this profile")
end
return {
id = "randomizer",
name = "Randomizer",
description = "AP randomizer",
version = "0.15.18",
modApiVersion = "2.9.3",
requirements = {},
metadata = metadata,
init = init,
load = load,
}