rott/kf_sources/KFMod/Classes/FriendlySoldierPR.uc
2026-07-14 20:27:09 +07:00

22 lines
401 B
Ucode

class FriendlySoldierPR extends TeamPlayerReplicationInfo;
event PostBeginPlay()
{
if ( Role < ROLE_Authority )
return;
if (AIController(Owner) != None)
bBot = true;
StartTime = Level.Game.GameReplicationInfo.ElapsedTime;
Timer();
SetTimer(1.5 + FRand(), true);
}
simulated event PostNetBeginPlay(){}
defaultproperties
{
bNoTeam =true
}