KF2-Server-Extension/ServerExt/Classes/Ext_TraitSWATEnforcer.uc

29 lines
808 B
Ucode
Raw Normal View History

2017-10-19 21:00:49 -05:00
Class Ext_TraitSWATEnforcer extends Ext_TraitBase;
2020-11-28 23:04:55 +03:00
static function ApplyEffectOn(KFPawn_Human Player, Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-19 21:00:49 -05:00
{
2020-11-28 23:12:58 +03:00
if (ExtHumanPawn(Player)!=None)
2017-10-19 21:00:49 -05:00
ExtHumanPawn(Player).bMovesFastInZedTime = true;
}
2020-11-29 00:54:57 +03:00
2020-11-28 23:04:55 +03:00
static function CancelEffectOn(KFPawn_Human Player, Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-19 21:00:49 -05:00
{
2020-11-28 23:12:58 +03:00
if (ExtHumanPawn(Player)!=None)
2017-10-19 21:00:49 -05:00
ExtHumanPawn(Player).bMovesFastInZedTime = false;
}
2020-11-29 00:54:57 +03:00
2020-11-28 23:04:55 +03:00
static function TraitActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-19 21:00:49 -05:00
{
Perk.bHasSWATEnforcer = true;
}
2020-11-29 00:54:57 +03:00
2020-11-28 23:04:55 +03:00
static function TraitDeActivate(Ext_PerkBase Perk, byte Level, optional Ext_TraitDataStore Data)
2017-10-19 21:00:49 -05:00
{
Perk.bHasSWATEnforcer = false;
}
defaultproperties
{
TraitGroup=class'Ext_TGroupZEDTime'
2017-10-19 21:00:49 -05:00
DefLevelCosts(0)=50
}