Skip to content

Commit cf1ce82

Browse files
authored
Initial push to git
0 parents  commit cf1ce82

File tree

6 files changed

+613
-0
lines changed

6 files changed

+613
-0
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Kyodan
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

mod.config.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "CustomizinContainers",
3+
"author": "Kyodan",
4+
"version": "1.1.0",
5+
"license": "MIT",
6+
"src": {
7+
"src/Customizin.js": "CacheModLoad"
8+
}
9+
}

readme.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
Customizin' Containers (for JET v1.1.0)
2+
----------------
3+
Version 1.1.0 (03.11.2021)
4+
By Kyodan
5+
6+
This mod allows you to resize all containers in the game (including pockets), and can remove restrictions from backpacks and secure cases!
7+
8+
## Info
9+
10+
- By default, this mod changes the following:
11+
* Two pockets will be 2 units tall
12+
* Junk Box will be 12x16 (easier to see inventory)
13+
* Mag Case will be 6x8
14+
* Weapons Case will be 6x10
15+
* Item restrictions in backpacks and secure cases will be ON
16+
17+
## Installation
18+
19+
1. Extract archive to your `server folder/user/mods` folder
20+
* Folder structure should look like `server folder/user/mods/Kyodan-CustomizinContainers-X.X.X`
21+
2. Close your server (if it's running)
22+
3. Edit `settings.json` in your preferred text editor/IDE, review/modify any settings, then save and close
23+
4. Delete your `server folder/user/cache` folder
24+
5. Run your server (it should generate a new cache)
25+
26+
* If you change a setting in `settings.json`, repeat steps 2-5 above
27+
* `settings_default.json` is a backup file that contains default container settings from Live
28+
29+
## Settings
30+
31+
- Below are the flags for each setting:
32+
* `customizinContainers` (true|false) - determines if this script is enabled/disabled
33+
* `removeRestrictions` (true|false) - determines if restrictions are removed from secure cases
34+
* `width` (number) - determines how many units wide the container will be
35+
(recommend to set less than 28)
36+
* `height` (number) - determines how many units tall the container will be
37+
(recommend to set less than 16)
38+
39+
## Files
40+
41+
- If any of the files below are missing/misplaced, you may have to redownload/reinstall this archive:
42+
* src/Customizin.js
43+
* mod.config.json
44+
* settings.json
45+
* settings_default.json
46+
* readme.md
47+
48+
## Need help?
49+
50+
1. Join the EmuTarkov Discord: https://discord.gg/33r4FPp
51+
2. @ me in the #support channel which script + version, what the issue is, and a picture/log of that issue (if possible)
52+
53+
## Disclaimer
54+
55+
I am not responsible for any data loss in relation to the use of this mod (including, but not limited to game/profile data and/or content loss, damage caused to your software, computer, or mobile device). I encourage you to back up your server/profile data before using this mod.
56+
57+
## Changelog
58+
59+
- 02.28.21
60+
* Made compatible with JET 1.1.0
61+
* Added `removeRestrictions` option for backpacks and secure cases
62+
63+
- 02.05.21
64+
* Fixed Kappa case sizing incorrectly to Gamma variables

settings.json

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"containers": {
3+
"customizinContainers": true,
4+
"removeRestrictions": false,
5+
"pockets": {
6+
"one": {
7+
"width": 1,
8+
"height": 2
9+
},
10+
"two": {
11+
"width": 1,
12+
"height": 2
13+
},
14+
"three": {
15+
"width": 1,
16+
"height": 1
17+
},
18+
"four": {
19+
"width": 1,
20+
"height": 1
21+
}
22+
},
23+
"secure": {
24+
"alpha": {
25+
"width": 2,
26+
"height": 2
27+
},
28+
"beta": {
29+
"width": 3,
30+
"height": 2
31+
},
32+
"epsilon": {
33+
"width": 4,
34+
"height": 2
35+
},
36+
"gamma": {
37+
"width": 3,
38+
"height": 3
39+
},
40+
"kappa": {
41+
"width": 3,
42+
"height": 4
43+
}
44+
},
45+
"ammo": {
46+
"width": 7,
47+
"height": 7
48+
},
49+
"docs": {
50+
"width": 4,
51+
"height": 4
52+
},
53+
"dogtag": {
54+
"width": 10,
55+
"height": 10
56+
},
57+
"grenade": {
58+
"width": 8,
59+
"height": 8
60+
},
61+
"items": {
62+
"width": 8,
63+
"height": 8
64+
},
65+
"items_thicc": {
66+
"width": 14,
67+
"height": 14
68+
},
69+
"junk": {
70+
"width": 12,
71+
"height": 16
72+
},
73+
"keytool": {
74+
"width": 4,
75+
"height": 4
76+
},
77+
"mag": {
78+
"width": 6,
79+
"height": 8
80+
},
81+
"meds": {
82+
"width": 7,
83+
"height": 7
84+
},
85+
"money": {
86+
"width": 7,
87+
"height": 7
88+
},
89+
"pistol": {
90+
"width": 4,
91+
"height": 3
92+
},
93+
"sicc": {
94+
"width": 5,
95+
"height": 5
96+
},
97+
"thermal": {
98+
"width": 8,
99+
"height": 8
100+
},
101+
"wallet": {
102+
"width": 2,
103+
"height": 2
104+
},
105+
"weapons": {
106+
"width": 6,
107+
"height": 10
108+
},
109+
"weapons_thicc": {
110+
"width": 6,
111+
"height": 15
112+
}
113+
}
114+
}

settings_defaults.json

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"containers": {
3+
"customizinContainers": true,
4+
"removeRestrictions": false,
5+
"pockets": {
6+
"one": {
7+
"width": 1,
8+
"height": 1
9+
},
10+
"two": {
11+
"width": 1,
12+
"height": 1
13+
},
14+
"three": {
15+
"width": 1,
16+
"height": 1
17+
},
18+
"four": {
19+
"width": 1,
20+
"height": 1
21+
}
22+
},
23+
"secure": {
24+
"alpha": {
25+
"width": 2,
26+
"height": 2
27+
},
28+
"beta": {
29+
"width": 3,
30+
"height": 2
31+
},
32+
"epsilon": {
33+
"width": 4,
34+
"height": 2
35+
},
36+
"gamma": {
37+
"width": 3,
38+
"height": 3
39+
},
40+
"kappa": {
41+
"width": 3,
42+
"height": 4
43+
}
44+
},
45+
"ammo": {
46+
"width": 7,
47+
"height": 7
48+
},
49+
"docs": {
50+
"width": 4,
51+
"height": 4
52+
},
53+
"dogtag": {
54+
"width": 10,
55+
"height": 10
56+
},
57+
"grenade": {
58+
"width": 8,
59+
"height": 8
60+
},
61+
"items": {
62+
"width": 8,
63+
"height": 8
64+
},
65+
"items_thicc": {
66+
"width": 14,
67+
"height": 14
68+
},
69+
"junk": {
70+
"width": 14,
71+
"height": 14
72+
},
73+
"keytool": {
74+
"width": 4,
75+
"height": 4
76+
},
77+
"mag": {
78+
"width": 7,
79+
"height": 7
80+
},
81+
"meds": {
82+
"width": 7,
83+
"height": 7
84+
},
85+
"money": {
86+
"width": 7,
87+
"height": 7
88+
},
89+
"pistol": {
90+
"width": 4,
91+
"height": 3
92+
},
93+
"sicc": {
94+
"width": 5,
95+
"height": 5
96+
},
97+
"thermal": {
98+
"width": 8,
99+
"height": 8
100+
},
101+
"wallet": {
102+
"width": 2,
103+
"height": 2
104+
},
105+
"weapons": {
106+
"width": 5,
107+
"height": 10
108+
},
109+
"weapons_thicc": {
110+
"width": 6,
111+
"height": 15
112+
}
113+
}
114+
}

0 commit comments

Comments
 (0)