-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathmods.js
43 lines (42 loc) · 1.41 KB
/
mods.js
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
zipMods = [
['halva_en.zip', 'Half-Life EN (MENU LAGS) (214M)', 214283501, 21, 10485760],
['opposing_force_en.zip', 'Opposing Force EN (BUGGED (old ver) + MENU LAGS) (221M)', 221191140, 22, 10485760],
['halva_rus.zip', 'Half-Life RUS (304M)', 303881453, 29, 10485760, 10485760],
['opposing_force_rus.zip', 'Opposing Force RUS (BUGGED (old ver)) (224M)', 223479923, 22, 10485760]
];
pkgMods = [
];
var selectZip=document.getElementById('selectZip');
var iArgs=document.getElementById('iArgs');
selectZip.addEventListener('change', function(){
if(selectZip.value=="halva_en.zip")
{
//alert('Bugs: menu lagging.');
iArgs.value="-dev 1 -game valve";
}
else if(selectZip.value=="blue_shift_en.zip")
{
//alert('Bugs: Sometimes needs noclip, because you can\'t pick armor');
iArgs.value="-dev 1 -game valve";
}
else if(selectZip.value=="opposing_force_en.zip")
{
//alert('Bugs: Menu lagging, doesn\'t spawn NPCs (because old xash version).');
iArgs.value="-dev 1 -game gearbox";
}
else if(selectZip.value=="halva_rus.zip")
{
//alert('Bugs: No bugs.');
iArgs.value="-dev 1 -game valve";
}
else if(selectZip.value=="blue_shift_rus.zip")
{
//alert('Bugs: Sometimes needs noclip, because you can\'t pick armor');
iArgs.value="-dev 1 -game valve";
}
else if(selectZip.value=="opposing_force_rus.zip")
{
//alert('Bugs: Doesn\'t spawn NPCs (because old xash version).');
iArgs.value="-dev 1 -game valve";
}
});