Skip to content

Commit

Permalink
[release] v1.0 Public Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vel-San authored Jul 1, 2020
1 parent bfff682 commit 2a9be05
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 23 deletions.
40 changes: 40 additions & 0 deletions KFHusksOnly/Classes/KFHusksOnly.uc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
//==================================================================================================================
// Base Changes by Vel-San, base mutator by TripWire Interactive - Contact on Steam using the following Profile Link
// for more information, feedback, questions or requests please contact
// httpssteamcommunity.comidVel-San
//==================================================================================================================

class KFHusksOnly extends Mutator;

function PostBeginPlay()
{
SetTimer(0.1,False);
}
function Timer()
{
local KFGameType KF;
local byte i;
local class<KFMonster> MC;
local int MSquadLength;

KF = KFGameType(Level.Game);
MC = Class<KFMonster>(DynamicLoadObject(KF.GetEventHuskClassName(),Class'Class'));
if ( KF!=None && MC!=None )
{
// groups of monsters that will be spawned
KF.InitSquads.Length = 1;
MSquadLength = Min( 10, KF.MaxZombiesOnce );
KF.InitSquads[0].MSquad.Length = MSquadLength;
for( i=0; i<MSquadLength; i++ )
KF.InitSquads[0].MSquad[i] = MC;
}
Destroy();
}

DefaultProperties
{
GroupName="KF-HusksOnly"
FriendlyName="Husks Only Mut"
Description="Experience 'Neo' from the Matrix, try to evade husks all game! CAUTION: This is considered to be extreme hardcore as it scales with the game difficulty, you should be kiting almost all game! - By Vel-San"
}

42 changes: 21 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License

Copyright (c) 2020 Vel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License
Copyright (c) 2020 Vel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
# KF-HusksOnly
A mutator that spawns HUSKs only all game
# KF-HusksOnly

Mutator that replaces all ZEDs with HUSKs. You think you're tough enough to face their wraith ?

## Features to be added

- None ATM

## Usage

- Download the release from github (Or subscribe via the WorkShop)
- Enable the Mut in-game
- Done!

## Links

Visit my steam [WorkShop](https://steamcommunity.com/id/Vel-San/myworkshopfiles/)

or simply download it from the release section here
36 changes: 36 additions & 0 deletions Steam_WorkShop_Description/Workshop-Text
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
- Mutator that replaces all ZEDs with HUSKs. You think you're tough enough to face their wraith ?

This is an extension to TripWire's mutators. If you need a 'Scrake' version I can do that as well.

[b][u]Features that might be added[/u][/b]

- None ATM

[b][u]Number Of Files[/u][/b]

- 2

[b][u]File Names[/u][/b]

- \System\KFHusksOnly.u
- \System\KFHusksOnly.ucl

[b][u]Usage[/u][/b]

1- Subscribe or download manually (recommended)
2- Launch the game and wait to see 'Completed'
3- Restart the game and you can see the mutators in your list

[b][u]Class Names[/u][/b]

- Mut: KFHusksOnly.KFHusksOnly

[b][u]Known Bugs[/u][/b]

You Tell Me.

[b][u]Manual Download Links (Recommended)[/u][/b]

You can find it under 'Not Whitelisted' folder named 'KF-HusksOnly-v1.0'

MEGA Link: https://mega DOT nz/folder/YDoEmKiC#s6FGAtgh40-TvB4bHsLaMQ

0 comments on commit 2a9be05

Please sign in to comment.