-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupermod.xml
66 lines (60 loc) · 3.26 KB
/
supermod.xml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0"?>
<mod name="RoguelikePayday">
<hooks script_path="lua/" hook_id="lib/">
<post script_path="init.lua" :hook_id="managers/menumanager"/>
<group :script_path="managers/" :hook_id="managers/">
<post :script_path="blackmarketmanager.lua" :hook_id="blackmarketmanager"/>
<post :script_path="crimenetmanager.lua" :hook_id="crimenetmanager"/>
<post :script_path="dlcmanager.lua" :hook_id="dlcmanager"/>
<post :script_path="featuremanager.lua" :hook_id="featuremanager"/>
<post :script_path="jobmanager.lua" :hook_id="jobmanager"/>
<post :script_path="localizationmanager.lua" :hook_id="localizationmanager"/>
<post :script_path="menumanager.lua" :hook_id="menumanager"/>
<post :script_path="savefilemanager.lua" :hook_id="savefilemanager"/>
<post :script_path="storymissionsmanager.lua" :hook_id="storymissionsmanager"/>
<group :script_path="hud/" :hook_id="hud/">
<post :script_path="hudlootscreen.lua" :hook_id="hudlootscreen"/>
</group>
<group :script_path="menu/" :hook_id="menu/">
<post :script_path="blackmarketgui.lua" :hook_id="blackmarketgui"/>
<post :script_path="extendeduielemets.lua" :hook_id="extendeduielemets"/>
<post :script_path="menunodegui.lua" :hook_id="menunodegui"/>
<post :script_path="playerinventorygui.lua" :hook_id="playerinventorygui"/>
<post :script_path="specializationguinew.lua" :hook_id="specializationguinew"/>
<post :script_path="storymissionsgui.lua" :hook_id="storymissionsgui"/>
</group>
<group :script_path="mission/" :hook_id="mission/">
<post :script_path="elementjobstagealternative.lua" :hook_id="elementjobstagealternative"/>
</group>
</group>
<group :script_path="network/" :hook_id="network/">
<group :script_path="base/" :hook_id="base/">
<post :script_path="networkmanager.lua" :hook_id="networkmanager"/>
<group :script_path="handlers/" :hook_id="handlers/">
<post :script_path="connectionnetworkhandler.lua" :hook_id="connectionnetworkhandler"/>
</group>
</group>
</group>
<group :script_path="roguelike/">
<post :script_path="roguelikemanager.lua" :hook_id="setups/setup"/>
<post :script_path="rogueliketweakdata.lua" :hook_id="tweak_data/weapontweakdata"/>
</group>
<group :script_path="setups/" :hook_id="setups/">
<post :script_path="setup.lua" :hook_id="setup"/>
</group>
<group :script_path="states/" :hook_id="states/">
<post :script_path="ingamelobbymenu.lua" :hook_id="ingamelobbymenu"/>
<post :script_path="gameoverstate.lua" :hook_id="gameoverstate"/>
</group>
<group :script_path="tweak_data/" :hook_id="tweak_data/">
<post :script_path="guitweakdata.lua" :hook_id="guitweakdata"/>
<post :script_path="narrativetweakdata.lua" :hook_id="tweakdata"/>
<post :script_path="skilltreetweakdata.lua" :hook_id="skilltreetweakdata"/>
<post :script_path="storymissionstweakdata.lua" :hook_id="storymissionstweakdata"/>
</group>
<group :script_path="units/" :hook_id="units/">
<post :script_path="playerstandard.lua" :hook_id="beings/player/states/playerstandard"/>
</group>
</hooks>
<tweak definition="tweaks/network_settings.xml"/>
</mod>