Hello there i'm new to UDK and i was trying to change the health value to 1000 just as a test. But they don't change nor in game nor do they log so any help would be nice here is the code :
Code:
class AwesomeHealthDetector extends Pawn; function PostBeginPlay() { Health = 1000; HealthMax = 1000; `log(Health); `log(HealthMax); } DefaultProperties { Health = 99 HealthMax = 500 }
Comment