Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 |
class KFVetDemolitions extends KFVeterancyTypes abstract; static function float AddExtraAmmoFor(KFPlayerReplicationInfo KFPRI, Class<Ammunition> AmmoType) { if ( AmmoType == class'FragAmmo' ) { // Up to 6 extra Grenades return 1.0 + (0.20 * float(KFPRI.ClientVeteranSkillLevel)); } else if ( AmmoType == class'PipeBombAmmo' ) { // Up to 6 extra for a total of 8 Remote Explosive Devices return 1.0 + (0.5 * float(KFPRI.ClientVeteranSkillLevel)); } else if ( AmmoType == class'LAWAmmo' ) { // Modified in Balance Round 5 to be up to 100% extra ammo return 1.0 + (0.20 * float(KFPRI.ClientVeteranSkillLevel)); } return 1.0; } static function int AddDamage(KFPlayerReplicationInfo KFPRI, KFMonster Injured, KFPawn Instigator, int InDamage, class<DamageType> DmgType) { if ( class<DamTypeFrag>(DmgType) != none || class<DamTypePipeBomb>(DmgType) != none || class<DamTypeM79Grenade>(DmgType) != none || class<DamTypeM32Grenade>(DmgType) != none || class<DamTypeM203Grenade>(DmgType) != none || class<DamTypeRocketImpact>(DmgType) != none || class<DamTypeSPGrenade>(DmgType) != none || class<DamTypeSealSquealExplosion>(DmgType) != none || class<DamTypeSeekerSixRocket>(DmgType) != none) { if ( KFPRI.ClientVeteranSkillLevel == 0 ) { return float(InDamage) * 1.05; } return float(InDamage) * (1.0 + (0.10 * float(KFPRI.ClientVeteranSkillLevel))); // Up to 60% extra damage } return InDamage; } static function int ReduceDamage(KFPlayerReplicationInfo KFPRI, KFPawn Injured, Pawn Instigator, int InDamage, class<DamageType> DmgType) { if ( class<DamTypeFrag>(DmgType) != none || class<DamTypePipeBomb>(DmgType) != none || class<DamTypeM79Grenade>(DmgType) != none || class<DamTypeM32Grenade>(DmgType) != none || class<DamTypeM203Grenade>(DmgType) != none || class<DamTypeRocketImpact>(DmgType) != none || class<DamTypeSPGrenade>(DmgType) != none || class<DamTypeSealSquealExplosion>(DmgType) != none || class<DamTypeSeekerSixRocket>(DmgType) != none) { return float(InDamage) * (0.75 - (0.05 * float(KFPRI.ClientVeteranSkillLevel))); } return InDamage; } // Change the cost of particular items static function float GetCostScaling(KFPlayerReplicationInfo KFPRI, class<Pickup> Item) { if ( Item == class'PipeBombPickup' ) { // Todo, this won't need to be so extreme when we set up the system to only allow him to buy it perhaps return 0.5 - (0.04 * float(KFPRI.ClientVeteranSkillLevel)); // Up to 74% discount on PipeBomb(changed to 68% in Balance Round 1, upped to 74% in Round 4) } else if ( Item == class'M79Pickup' || Item == class 'M32Pickup' || Item == class 'LawPickup' || Item == class 'M4203Pickup' || Item == class'GoldenM79Pickup' || Item == class'SPGrenadePickup' || Item == class'CamoM32Pickup' || Item == class'SealSquealPickup' || Item == class'SeekerSixPickup' ) { return 0.90 - (0.10 * float(KFPRI.ClientVeteranSkillLevel)); // Up to 70% discount on M79/M32 } return 1.0; } // Change the cost of particular ammo static function float GetAmmoCostScaling(KFPlayerReplicationInfo KFPRI, class<Pickup> Item) { if ( Item == class'PipeBombPickup' ) { return 0.5 - (0.04 * float(KFPRI.ClientVeteranSkillLevel)); // Up to 74% discount on PipeBomb(changed to 68% in Balance Round 3, upped to 74% in Round 4) } else if ( Item == class'M79Pickup' || Item == class'M32Pickup' || Item == class'LAWPickup' || Item == class'M4203Pickup' || Item == class'GoldenM79Pickup' || Item == class'SPGrenadePickup' || Item == class'CamoM32Pickup' || Item == class'SealSquealPickup' || Item == class'SeekerSixPickup' ) { return 1.0 - (0.05 * float(KFPRI.ClientVeteranSkillLevel)); // Up to 30% discount on Grenade Launcher and LAW Ammo(Balance Round 5) } return 1.0; } // Give Extra Items as default static function AddDefaultInventory(KFPlayerReplicationInfo KFPRI, Pawn P) { // If Level 5, give them a pipe bomb if ( KFPRI.ClientVeteranSkillLevel == 5 ) { KFHumanPawn(P).CreateInventoryVeterancy("KFMod.PipeBombExplosive", default.StartingWeaponSellPriceLevel5); } // If Level 6, give them a M79Grenade launcher and pipe bomb if ( KFPRI.ClientVeteranSkillLevel == 6 ) { // use level 5 sell price for the pipe bombs so the demo doesn't start with two things he can sell KFHumanPawn(P).CreateInventoryVeterancy("KFMod.PipeBombExplosive", default.StartingWeaponSellPriceLevel5); KFHumanPawn(P).CreateInventoryVeterancy("KFMod.M79GrenadeLauncher", default.StartingWeaponSellPriceLevel6); } } defaultproperties { PerkIndex=6 StartingWeaponSellPriceLevel5=0.000000 OnHUDIcon=Texture'KillingFloor2HUD.Perk_Icons.Perk_Demolition' OnHUDGoldIcon=Texture'KillingFloor2HUD.Perk_Icons.Perk_Demolition_Gold' VeterancyName="Demolitions" Requirements(0)="Deal %x damage with the Explosives" LevelEffects(0)="5% extra Explosives damage|25% resistance to Explosives|10% discount on Explosives|50% off Remote Explosives" LevelEffects(1)="10% extra Explosives damage|30% resistance to Explosives|20% increase in grenade capacity|Can carry 3 Remote Explosives|20% discount on Explosives|54% off Remote Explosives" LevelEffects(2)="20% extra Explosives damage|35% resistance to Explosives|40% increase in grenade capacity|Can carry 4 Remote Explosives|30% discount on Explosives|58% off Remote Explosives" LevelEffects(3)="30% extra Explosives damage|40% resistance to Explosives|60% increase in grenade capacity|Can carry 5 Remote Explosives|40% discount on Explosives|62% off Remote Explosives" LevelEffects(4)="40% extra Explosives damage|45% resistance to Explosives|80% increase in grenade capacity|Can carry 6 Remote Explosives|50% discount on Explosives|66% off Remote Explosives" LevelEffects(5)="50% extra Explosives damage|50% resistance to Explosives|100% increase in grenade capacity|Can carry 7 Remote Explosives|60% discount on Explosives|70% off Remote Explosives|Spawn with a Pipe Bomb" LevelEffects(6)="60% extra Explosives damage|55% resistance to Explosives|120% increase in grenade capacity|Can carry 8 Remote Explosives|70% discount on Explosives|74% off Remote Explosives|Spawn with an M79 and Pipe Bomb" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |