//============================================================================= // RevengeMod // // This mutator allows a server to configure the a bonus for killing a person // who has killed you previously. The more they have killed you the bigger your // bonus. // // Contact : bob.chatman@gmail.com // Website : www.gneu.org // License : Content is available under Creative Commons Attribution-ShareAlike // 3.0 License. //============================================================================= Class UTMutator_RevengeMod extends UTMutator Config( RevengeMod ); function InitMutator(string Options, out string ErrorMessage) { WorldInfo.Game.AddGameRules(Class'RevengeMod.UTGameRules_RevengeMod'); Super.InitMutator(Options, ErrorMessage); } function NotifyLogin(Controller NewPlayer) { local Info_RevengeMod I; if( UTPlayerController( NewPlayer ) != None ) { I = Spawn( Class'Info_RevengeMod', NewPlayer ); } Super.NotifyLogin(NewPlayer); } defaultproperties { }