You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MutLog("-----|| Using MutLoader Config # ["$i$"]; Total Configs Found: "$MutLoaderRecords.Length$" ||-----");
34
30
MutatorList=MutLoaderRecords[i].Mutator;
35
-
if (MutLoaderRecords[i].ServerName != "") sServerName = MutLoaderRecords[i].ServerName;
36
-
elsebKeepServerNameDefault = True;
31
+
MutLog("-----|| Adding ["$MutatorList.Length$"] Mutators found in MutLoader Config # ["$i$"]; Total Configs Found: "$MutLoaderRecords.Length$" ||-----");
32
+
if (MutLoaderRecords[i].bUpdateServerName)
33
+
{
34
+
sServerName = MutLoaderRecords[i].sServerName;
35
+
UpdateServerName = true;
36
+
}
37
+
if (MutLoaderRecords[i].bAppendFaked) AppendFaked = true;
Copy file name to clipboardExpand all lines: Steam_WorkShop_Description/Workshop-text
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
Optimized version of 'MutLoader' originally made by Flame & Essence, slightly modified by Vel-San;
1
+
Optimized version of 'MutLoader' originally made by Flame, Essence & Modified by Vel-San;
2
2
3
3
- If your server is crashing because your 'Server Launch Command' has a lot of mutators, or MapVoteV2 is crashing as well, then this mutator is for you
4
4
5
5
[b]Changes from the original version[/b]
6
6
7
7
- Better support with MapVoteV2
8
-
- ServerName change with every config
9
-
- If ServerName is given (not empty), Mutator will also check if you have Faked Mutator installed (1, 2, 3, 4, 5, Custom) and will automatically append XF to your server name
8
+
- ServerName change with every config (Optional)
9
+
- Detects FakedPlus mutator and adds prefix to ServerName (Optional)
10
10
11
11
[h1][b][u]Notes[/u][/b][/h1]
12
12
@@ -22,17 +22,21 @@ Optimized version of 'MutLoader' originally made by Flame & Essence, slightl
22
22
[MutLoaderV2.MutLoader]
23
23
24
24
[Settings1 MutLoaderObject]
25
-
GameTypeName=KFGameType # Can be any gametype you want
26
-
GameDifficulty=4.0 # Important if you want to make 2 configs of the same GameType, with different difficulties
27
-
ServerName=This is a test server - Diff 4.0 # ServerName will change to this, set to empty if you want to disable
25
+
sGameTypeName=KFGameType # Can be any gametype you want
26
+
fGameDifficulty=4.0 # Important if you want to make 2 configs of the same GameType, with different difficulties
27
+
bAppendFaked=false # Adds 1F, 2F, 3F etc... if true & FakedPlus mutator is enabled
28
+
bUpdateServerName=true # If true, updates server name to sServerName below
29
+
sServerName=This is a test server - Diff 4.0 # ServerName will change to this if bUpdateServerName is true
28
30
Mutator=Mut1.Mut1
29
31
Mutator=Mut1.Mut2
30
32
Mutator=Mut1.Mut3
31
33
32
34
[Settings2 MutLoaderObject]
33
-
GameTypeName=KFGameType
34
-
GameDifficulty=7.0
35
-
ServerName=This is a test server - Diff 7.0
35
+
sGameTypeName=KFGameType
36
+
fGameDifficulty=7.0
37
+
bAppendFaked=false # Adds 1F, 2F, 3F etc... if true & FakedPlus mutator is enabled
38
+
bUpdateServerName=true # If true, updates server name to sServerName below
39
+
sServerName=This is a test server - Diff 7.0
36
40
Mutator=Mut1.Mut1
37
41
Mutator=Mut1.Mut2
38
42
Mutator=Mut1.Mut3
@@ -65,8 +69,4 @@ No need to put any other mutators in the list of MapVoteV2. What's important is
0 commit comments