class RLBasePlayer : PlayerPawn; RLStats Stats; int Medikit; int MedikitMax; override void PostBeginPlay() { Super.PostBeginPlay(); Stats.Init(); MedikitMax = 100; } override void Tick() { Super.Tick(); }