From 4c9279ce0ee557e273c67796c0bf9e9d3c5709c6 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Fri, 8 Mar 2024 17:06:36 +0300 Subject: [PATCH] remove hardcoded package name --- .../WMAICommand_HuskOmegaFireBallBarrageAttack.uc | 2 +- CustomZeds/Classes/WMPawn_ZedClot_Slasher_Omega.uc | 2 +- CustomZeds/Classes/WMPawn_ZedCrawler_Big.uc | 4 ++-- CustomZeds/Classes/WMPawn_ZedCrawler_Huge.uc | 4 ++-- CustomZeds/Classes/WMPawn_ZedCrawler_Medium.uc | 2 +- CustomZeds/Classes/WMPawn_ZedCrawler_Mini.uc | 2 +- CustomZeds/Classes/WMPawn_ZedCrawler_Ultra.uc | 4 ++-- CustomZeds/Classes/WMPawn_ZedFleshpound_Omega.uc | 2 +- CustomZeds/Classes/WMPawn_ZedFleshpound_Predator.uc | 4 ++-- CustomZeds/Classes/WMPawn_ZedGorefast_Omega.uc | 6 +++--- CustomZeds/Classes/WMPawn_ZedHusk_Omega.uc | 10 +++++----- CustomZeds/Classes/WMPawn_ZedHusk_Tiny.uc | 2 +- CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Blue.uc | 2 +- CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Green.uc | 2 +- CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Pink.uc | 2 +- CustomZeds/Classes/WMPawn_ZedScrake_Emperor.uc | 4 ++-- CustomZeds/Classes/WMPawn_ZedScrake_Omega.uc | 2 +- CustomZeds/Classes/WMPawn_ZedScrake_Tiny.uc | 2 +- CustomZeds/Classes/WMPawn_ZedSiren_Omega.uc | 4 ++-- CustomZeds/Classes/WMPawn_ZedStalker_Omega.uc | 4 ++-- 20 files changed, 33 insertions(+), 33 deletions(-) diff --git a/CustomZeds/Classes/WMAICommand_HuskOmegaFireBallBarrageAttack.uc b/CustomZeds/Classes/WMAICommand_HuskOmegaFireBallBarrageAttack.uc index 3984c38..66192bc 100644 --- a/CustomZeds/Classes/WMAICommand_HuskOmegaFireBallBarrageAttack.uc +++ b/CustomZeds/Classes/WMAICommand_HuskOmegaFireBallBarrageAttack.uc @@ -44,7 +44,7 @@ function Popped() defaultproperties { - SpecialMoveClass=class'CustomZeds.WMSM_Husk_Omega_FireBallBarrageAttack' + SpecialMoveClass=class'WMSM_Husk_Omega_FireBallBarrageAttack' Name="Default__WMAICommand_HuskOmegaFireBallBarrageAttack" } diff --git a/CustomZeds/Classes/WMPawn_ZedClot_Slasher_Omega.uc b/CustomZeds/Classes/WMPawn_ZedClot_Slasher_Omega.uc index fecb96f..a8de7ad 100644 --- a/CustomZeds/Classes/WMPawn_ZedClot_Slasher_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedClot_Slasher_Omega.uc @@ -8,7 +8,7 @@ var const float ExtraAfflictionResistance, ExtraDamageResistance; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } simulated function PostBeginPlay() diff --git a/CustomZeds/Classes/WMPawn_ZedCrawler_Big.uc b/CustomZeds/Classes/WMPawn_ZedCrawler_Big.uc index d432671..9bd31af 100644 --- a/CustomZeds/Classes/WMPawn_ZedCrawler_Big.uc +++ b/CustomZeds/Classes/WMPawn_ZedCrawler_Big.uc @@ -4,7 +4,7 @@ var const float ExtraDamageResistance; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.BigString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.BigString @ super.GetLocalizedName(); } simulated function PostBeginPlay() @@ -24,7 +24,7 @@ function float GetDamageTypeModifier(class DT) defaultproperties { - DifficultySettings=Class'CustomZeds.WMDifficulty_Crawler_Big' + DifficultySettings=class'WMDifficulty_Crawler_Big' bKnockdownWhenJumpedOn=False DoshValue=12 diff --git a/CustomZeds/Classes/WMPawn_ZedCrawler_Huge.uc b/CustomZeds/Classes/WMPawn_ZedCrawler_Huge.uc index cf8286e..8070500 100644 --- a/CustomZeds/Classes/WMPawn_ZedCrawler_Huge.uc +++ b/CustomZeds/Classes/WMPawn_ZedCrawler_Huge.uc @@ -4,7 +4,7 @@ var const float ExtraDamageResistance; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.HugeString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.HugeString @ super.GetLocalizedName(); } simulated function PostBeginPlay() @@ -24,7 +24,7 @@ function float GetDamageTypeModifier(class DT) defaultproperties { - DifficultySettings=Class'CustomZeds.WMDifficulty_Crawler_Big' + DifficultySettings=class'WMDifficulty_Crawler_Big' bKnockdownWhenJumpedOn=False DoshValue=24 diff --git a/CustomZeds/Classes/WMPawn_ZedCrawler_Medium.uc b/CustomZeds/Classes/WMPawn_ZedCrawler_Medium.uc index 39fe5f8..815c7ba 100644 --- a/CustomZeds/Classes/WMPawn_ZedCrawler_Medium.uc +++ b/CustomZeds/Classes/WMPawn_ZedCrawler_Medium.uc @@ -2,7 +2,7 @@ class WMPawn_ZedCrawler_Medium extends WMPawn_ZedCrawler_NoElite; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.MediumString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.MediumString @ super.GetLocalizedName(); } simulated function PostBeginPlay() diff --git a/CustomZeds/Classes/WMPawn_ZedCrawler_Mini.uc b/CustomZeds/Classes/WMPawn_ZedCrawler_Mini.uc index 8e07fb4..f8394e1 100644 --- a/CustomZeds/Classes/WMPawn_ZedCrawler_Mini.uc +++ b/CustomZeds/Classes/WMPawn_ZedCrawler_Mini.uc @@ -2,7 +2,7 @@ class WMPawn_ZedCrawler_Mini extends WMPawn_ZedCrawler_NoElite; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.TinyString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.TinyString @ super.GetLocalizedName(); } simulated function PostBeginPlay() diff --git a/CustomZeds/Classes/WMPawn_ZedCrawler_Ultra.uc b/CustomZeds/Classes/WMPawn_ZedCrawler_Ultra.uc index 4aef8a5..b67f0b2 100644 --- a/CustomZeds/Classes/WMPawn_ZedCrawler_Ultra.uc +++ b/CustomZeds/Classes/WMPawn_ZedCrawler_Ultra.uc @@ -4,7 +4,7 @@ var const float ExtraDamageResistance; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.UltraString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.UltraString @ super.GetLocalizedName(); } simulated function PostBeginPlay() @@ -24,7 +24,7 @@ function float GetDamageTypeModifier(class DT) defaultproperties { - DifficultySettings=Class'CustomZeds.WMDifficulty_Crawler_Big' + DifficultySettings=class'WMDifficulty_Crawler_Big' bKnockdownWhenJumpedOn=False DoshValue=48 diff --git a/CustomZeds/Classes/WMPawn_ZedFleshpound_Omega.uc b/CustomZeds/Classes/WMPawn_ZedFleshpound_Omega.uc index 65c3316..6dea668 100644 --- a/CustomZeds/Classes/WMPawn_ZedFleshpound_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedFleshpound_Omega.uc @@ -15,7 +15,7 @@ var const float ExtraAfflictionResistance, ExtraDamageResistance; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } simulated function PostBeginPlay() diff --git a/CustomZeds/Classes/WMPawn_ZedFleshpound_Predator.uc b/CustomZeds/Classes/WMPawn_ZedFleshpound_Predator.uc index 25ecd9d..2bb837a 100644 --- a/CustomZeds/Classes/WMPawn_ZedFleshpound_Predator.uc +++ b/CustomZeds/Classes/WMPawn_ZedFleshpound_Predator.uc @@ -4,7 +4,7 @@ var linearColor PredatorColor; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.PredatorString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.PredatorString; } simulated function PostBeginPlay() @@ -45,7 +45,7 @@ simulated event bool UsePlayerControlledZedSkin() defaultproperties { - ControllerClass=Class'CustomZeds.WMAIController_ZedFleshpound_Predator' + ControllerClass=class'WMAIController_ZedFleshpound_Predator' DefaultGlowColor=(G=0.25f) PredatorColor=(R=0.2f,G=1.0f,B=0.1f) diff --git a/CustomZeds/Classes/WMPawn_ZedGorefast_Omega.uc b/CustomZeds/Classes/WMPawn_ZedGorefast_Omega.uc index 6010a40..6d20c6f 100644 --- a/CustomZeds/Classes/WMPawn_ZedGorefast_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedGorefast_Omega.uc @@ -16,7 +16,7 @@ replication static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } simulated function PostBeginPlay() @@ -156,8 +156,8 @@ defaultproperties GorefastOmegaAnimSet=AnimSet'ZedternalReborn_Zeds.Gorefast.Gorefast_Omega_AnimSet' GorefastOmegaAnimInfo=KFPawnAnimInfo'ZedternalReborn_Zeds.Gorefast.Gorefast_Omega_AnimGroup' ShieldImpactEffects=KFSkinTypeEffects_InvulnerabilityShield'KFGameContent.Default__KFPawn_ZedHans:ShieldEffects' - ControllerClass=class'CustomZeds.WMAIController_ZedGorefast_Omega' - DifficultySettings=class'CustomZeds.WMDifficulty_Gorefast_Omega' + ControllerClass=class'WMAIController_ZedGorefast_Omega' + DifficultySettings=class'WMDifficulty_Gorefast_Omega' bShieldOn=False bVersusZed=False diff --git a/CustomZeds/Classes/WMPawn_ZedHusk_Omega.uc b/CustomZeds/Classes/WMPawn_ZedHusk_Omega.uc index 1d08373..27920cd 100644 --- a/CustomZeds/Classes/WMPawn_ZedHusk_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedHusk_Omega.uc @@ -9,7 +9,7 @@ var const float ExtraAfflictionResistance, ExtraDamageResistance; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } function PossessedBy(Controller C, bool bVehicleTransition) @@ -194,9 +194,9 @@ simulated event bool UsePlayerControlledZedSkin() defaultproperties { HuskOmegaAnimSet=AnimSet'ZedternalReborn_Zeds.Husk.Husk_Omega_AnimSet' - SuicideFireballClass=class'CustomZeds.WMProj_Husk_Fireball_Suicide' - ControllerClass=class'CustomZeds.WMAIController_ZedHusk_Omega' - DifficultySettings=class'CustomZeds.WMDifficulty_Husk_Omega' + SuicideFireballClass=class'WMProj_Husk_Fireball_Suicide' + ControllerClass=class'WMAIController_ZedHusk_Omega' + DifficultySettings=class'WMDifficulty_Husk_Omega' bVersusZed=False DoshValue=34 @@ -215,7 +215,7 @@ defaultproperties End Object Begin Object Name=SpecialMoveHandler_0 - SpecialMoveClasses(SM_Custom1) = class'CustomZeds.WMSM_Husk_Omega_FireBallBarrageAttack' + SpecialMoveClasses(SM_Custom1) = class'WMSM_Husk_Omega_FireBallBarrageAttack' End Object Begin Object Name=ChestLightComponent0 diff --git a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny.uc b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny.uc index 3b55d48..96a5e09 100644 --- a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny.uc +++ b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny.uc @@ -4,7 +4,7 @@ var linearColor glowColor; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.TinyString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.TinyString @ super.GetLocalizedName(); } function PossessedBy(Controller C, bool bVehicleTransition) diff --git a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Blue.uc b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Blue.uc index 8ccbb4e..64aebd8 100644 --- a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Blue.uc +++ b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Blue.uc @@ -2,7 +2,7 @@ class WMPawn_ZedHusk_Tiny_Blue extends WMPawn_ZedHusk_Tiny; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.BlueString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.BlueString @ super.GetLocalizedName(); } defaultproperties diff --git a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Green.uc b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Green.uc index 3881d89..39fdad0 100644 --- a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Green.uc +++ b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Green.uc @@ -2,7 +2,7 @@ class WMPawn_ZedHusk_Tiny_Green extends WMPawn_ZedHusk_Tiny; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.GreenString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.GreenString @ super.GetLocalizedName(); } defaultproperties diff --git a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Pink.uc b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Pink.uc index bff0a8b..356ea1d 100644 --- a/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Pink.uc +++ b/CustomZeds/Classes/WMPawn_ZedHusk_Tiny_Pink.uc @@ -2,7 +2,7 @@ class WMPawn_ZedHusk_Tiny_Pink extends WMPawn_ZedHusk_Tiny; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.PinkString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.PinkString @ super.GetLocalizedName(); } defaultproperties diff --git a/CustomZeds/Classes/WMPawn_ZedScrake_Emperor.uc b/CustomZeds/Classes/WMPawn_ZedScrake_Emperor.uc index e662302..c8b16b5 100644 --- a/CustomZeds/Classes/WMPawn_ZedScrake_Emperor.uc +++ b/CustomZeds/Classes/WMPawn_ZedScrake_Emperor.uc @@ -5,7 +5,7 @@ var const KFPawnAnimInfo ScrakeOmegaAnimInfo; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.EmperorString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.EmperorString; } simulated function PostBeginPlay() @@ -28,7 +28,7 @@ defaultproperties { ScrakeOmegaAnimSet=AnimSet'ZedternalReborn_Zeds.Scrake.Scrake_Omega_AnimSet' ScrakeOmegaAnimInfo=KFPawnAnimInfo'ZedternalReborn_Zeds.Scrake.Scrake_Omega_AnimGroup' - DifficultySettings=class'CustomZeds.WMDifficulty_Scrake_Emperor' + DifficultySettings=class'WMDifficulty_Scrake_Emperor' RageHealthThresholdNormal=0.25f RageHealthThresholdHard=0.3f diff --git a/CustomZeds/Classes/WMPawn_ZedScrake_Omega.uc b/CustomZeds/Classes/WMPawn_ZedScrake_Omega.uc index d6b05d1..f678246 100644 --- a/CustomZeds/Classes/WMPawn_ZedScrake_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedScrake_Omega.uc @@ -8,7 +8,7 @@ var const float ExtraAfflictionResistance, ExtraDamageResistance; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } simulated function PostBeginPlay() diff --git a/CustomZeds/Classes/WMPawn_ZedScrake_Tiny.uc b/CustomZeds/Classes/WMPawn_ZedScrake_Tiny.uc index 38785a5..7abd586 100644 --- a/CustomZeds/Classes/WMPawn_ZedScrake_Tiny.uc +++ b/CustomZeds/Classes/WMPawn_ZedScrake_Tiny.uc @@ -6,7 +6,7 @@ var const KFPawnAnimInfo ScrakeTinyAnimInfo; static function string GetLocalizedName() { - return class'CustomZeds.WMPawn_ZedConstants'.default.TinyString @ super.GetLocalizedName(); + return class'WMPawn_ZedConstants'.default.TinyString @ super.GetLocalizedName(); } simulated function PostBeginPlay() diff --git a/CustomZeds/Classes/WMPawn_ZedSiren_Omega.uc b/CustomZeds/Classes/WMPawn_ZedSiren_Omega.uc index 3e54c26..dc855fd 100644 --- a/CustomZeds/Classes/WMPawn_ZedSiren_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedSiren_Omega.uc @@ -5,7 +5,7 @@ var const float ExtraAfflictionResistance, ExtraDamageResistance; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } simulated function PostBeginPlay() @@ -100,7 +100,7 @@ simulated event bool UsePlayerControlledZedSkin() defaultproperties { - DifficultySettings=Class'CustomZeds.WMDifficulty_Siren_Omega' + DifficultySettings=class'WMDifficulty_Siren_Omega' bVersusZed=False DoshValue=50 diff --git a/CustomZeds/Classes/WMPawn_ZedStalker_Omega.uc b/CustomZeds/Classes/WMPawn_ZedStalker_Omega.uc index e05c2dd..3ded167 100644 --- a/CustomZeds/Classes/WMPawn_ZedStalker_Omega.uc +++ b/CustomZeds/Classes/WMPawn_ZedStalker_Omega.uc @@ -5,7 +5,7 @@ var const float ExtraAfflictionResistance, ExtraDamageResistance; static function string GetLocalizedName() { - return super.GetLocalizedName() @ class'CustomZeds.WMPawn_ZedConstants'.default.OmegaString; + return super.GetLocalizedName() @ class'WMPawn_ZedConstants'.default.OmegaString; } simulated function PostBeginPlay() @@ -61,7 +61,7 @@ simulated function AdjustAffliction(out float AfflictionPower) defaultproperties { StalkerOmegaAnimSet=AnimSet'ZedternalReborn_Zeds.Stalker.Stalker_Omega_AnimSet' - DifficultySettings=class'CustomZeds.WMDifficulty_Stalker_Omega' + DifficultySettings=class'WMDifficulty_Stalker_Omega' bVersusZed=False DoshValue=22