• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

KF Need help with mut plz

rickyhorror

Grizzled Veteran
May 25, 2010
458
67
Seeing as I can't get an answer over in coding, maybe not enough traffic over there, I'm not sure, I'll try my question here.

Earlier in the day I made 1 mutator, and all went fine. Let's call this "KFMutOne". I did the obvious steps.

Code:
.../steamapps/common/killingfloor/KFMutOne/Classes/KFMutOne.uc
killingfloor.ini

Code:
EditPackages=KFMutOne
Desktop batch file

Code:
del "C:\Games\Steam\steamapps\common\killingfloor\System\KFMutOne.u"
"C:\Games\Steam\steamapps\common\killingfloor\System\UCC.exe" make
del "C:\Games\Steam\steamapps\common\killingfloor\System\steam_appid.txt"
pause
Like I said, all went fine, the mutator was made and works just fine. Didn't have any need to keep the source file around go i even removed /KFMutOne/Classes/KFMutOne.uc

So I started on, let's just call it, KFMutTwo. Same step, exact same.

Code:
.../steamapps/common/killingfloor/KFMutTwo/Classes/KFMutTwo.uc
killingfloor.ini

Code:
EditPackages=KFMutTwo
Desktop batch file

Code:
del "C:\Games\Steam\steamapps\common\killingfloor\System\KFMutTwo.u"
"C:\Games\Steam\steamapps\common\killingfloor\System\UCC.exe" make
del "C:\Games\Steam\steamapps\common\killingfloor\System\steam_appid.txt"
pause
Except, when I run the batch file, it still has the KFMutOne on the list (even though I removed all the source files and removed it from killingfloor.ini) and doesn't have the new one on the list. And just to clearify, they don't have similar names.

So here's my UCC log after trying to make KFMutTwo several times.

Code:
Log: Log file open, 08/09/14 07:08:04
Init: Name subsystem initialized
Init: Detected: Microsoft Windows NT 6.1 (Build: 7601)
Init: Version: 3339 (128.29)
Init: RO_VERSION: 1093
Init: KF_VERSION: 1060
Init: Compiled: Jul  3 2014 16:00:38
Init: Command line: 
Init: Character set: Unicode
Init: Base directory: C:\Games\Steam\steamapps\common\killingfloor\System\
Init: Ini:KillingFloor.ini   UserIni:User.ini
Init: Build label:  Build UT2004_Build_[2004-11-11_10.48]
Init: Object subsystem initialized
Heading: ----------------------------Core - Release----------------------------
Heading: ---------------------------Engine - Release---------------------------
Heading: ----------------------------Fire - Release----------------------------
Heading: ---------------------------Editor - Release---------------------------
Heading: --------------------------UnrealEd - Release--------------------------
Heading: ---------------------------IpDrv - Release----------------------------
Heading: ----------------------------UWeb - Release----------------------------
Heading: --------------------------GamePlay - Release--------------------------
Heading: -------------------------UnrealGame - Release-------------------------
Heading: ---------------------------XGame - Release----------------------------
Heading: -------------------------XInterface - Release-------------------------
Heading: ---------------------------XAdmin - Release---------------------------
Heading: -------------------------XWebAdmin - Release--------------------------
Heading: ---------------------------GUI2K4 - Release---------------------------
Heading: --------------------------xVoting - Release---------------------------
Heading: --------------------------UTV2004c - Release--------------------------
Heading: --------------------------UTV2004s - Release--------------------------
Heading: -------------------------ROEffects - Release--------------------------
Heading: --------------------------ROEngine - Release--------------------------
Heading: ------------------------ROInterface - Release-------------------------
Heading: ---------------------------Old2k4 - Release---------------------------
Heading: ---------------------------KFMod - Release----------------------------
Heading: ---------------------------KFChar - Release---------------------------
Heading: ---------------------------KFGui - Release----------------------------
Heading: -------------------------GoodKarma - Release--------------------------
Heading: -------------------------KFMutators - Release-------------------------
Heading: --------------------------KFMutOne - Release--------------------------
Exit: Preparing to exit.
Log: Purging garbage
Log: Unbound to Core.dll
Log: Unbound to Editor.dll
Log: Unbound to Engine.dll
Exit: Editor shut down
Log: Unbound to Fire.dll
Log: Unbound to IpDrv.dll
Log: Unbound to UWeb.dll
Log: Unbound to XGame.dll
Log: Unbound to XInterface.dll
Log: Unbound to ROEngine.dll
Log: Garbage: objects: 95828->0; refs: 0
Exit: Object subsystem successfully closed.
Exit: Exiting.
Log: FileManager: Reading 0 GByte 239 MByte 1010 KByte 355 Bytes from HD  took 1.761017 seconds (1.567017 reading, 0.194000 seeking).
Log: FileManager: 0.084000 seconds spent with misc. duties
Uninitialized: Name subsystem shut down
Uninitialized: Allocation checking disabled
Uninitialized: Log file closed, 08/09/14 07:08:13
Any ideas? Any help?