About This File
* This mutator will change the GameSpeed of the Renegade X game *
*
Version 1.0.0
Compatible with Renegade X v5.282
Mutator :
Rx_Mutator_GameSpeed.u (Download)
Source :
Spoiler
Rx_Mutator_GameSpeed.uc (Download)
Spoiler
/****************************************************************************** * Modified by Ukill, this can contain parts of code written by Jessica\Yosh * * This mutator will change the Renegade X gamespeed * ******************************************************************************* * Rx_Mutator_GameSpeed * ******************************************************************************/ class Rx_Mutator_GameSpeed extends UTMutator; var() float GameSpeed; function InitMutator(string Options, out string ErrorMessage) { WorldInfo.Game.SetGameSpeed(GameSpeed); Super.InitMutator(Options, ErrorMessage); } defaultproperties { GroupNames[0]="GAMESPEED" GameSpeed=0.8 //Default is 0 }