-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
Class MutLoaderObject extends Object PerObjectConfig Config(MutLoaderV2); | ||
|
||
// List of Mutators | ||
var config array<string> Mutator; | ||
var config string GameTypeName; | ||
var config float GameDifficulty; | ||
var config string ServerName; | ||
// GameType | ||
var config string sGameTypeName; | ||
// Game Difficulty | ||
var config float fGameDifficulty; | ||
// Custom Server Name with every MapVote | ||
var config string sServerName; | ||
// ServerName Features | ||
var config bool bAppendFaked, bUpdateServerName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
[MutLoaderV2.MutLoader] | ||
|
||
[Settings1 MutLoaderObject] | ||
GameTypeName=KFGameType # Can be any gametype you want | ||
GameDifficulty=4.0 # Important if you want to make 2 configs of the same GameType, with different difficulties | ||
ServerName=This is a test server - Diff 4.0 # ServerName will change to this | ||
sGameTypeName=KFGameType # Can be any gametype you want | ||
fGameDifficulty=4.0 # Important if you want to make 2 configs of the same GameType, with different difficulties | ||
bAppendFaked=false # Adds 1F, 2F, 3F etc... if true & FakedPlus mutator is enabled | ||
bUpdateServerName=true # If true, updates server name to sServerName below | ||
sServerName=This is a test server - Diff 4.0 # ServerName will change to this if bUpdateServerName is true | ||
Mutator=Mut1.Mut1 | ||
Mutator=Mut1.Mut2 | ||
Mutator=Mut1.Mut3 | ||
|
||
[Settings2 MutLoaderObject] | ||
GameTypeName=KFGameType | ||
GameDifficulty=7.0 | ||
ServerName=This is a test server - Diff 7.0 | ||
sGameTypeName=KFGameType | ||
fGameDifficulty=7.0 | ||
bAppendFaked=false # Adds 1F, 2F, 3F etc... if true & FakedPlus mutator is enabled | ||
bUpdateServerName=true # If true, updates server name to sServerName below | ||
sServerName=This is a test server - Diff 7.0 | ||
Mutator=Mut1.Mut1 | ||
Mutator=Mut1.Mut2 | ||
Mutator=Mut1.Mut3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters