60 lines
890 B
Ucode
60 lines
890 B
Ucode
|
class AALMut extends KFMutator;
|
||
|
|
||
|
var private AAL AAL;
|
||
|
|
||
|
public simulated function bool SafeDestroy()
|
||
|
{
|
||
|
return (bPendingDelete || bDeleteMe || Destroy());
|
||
|
}
|
||
|
|
||
|
public event PreBeginPlay()
|
||
|
{
|
||
|
Super.PreBeginPlay();
|
||
|
|
||
|
if (WorldInfo.NetMode == NM_Client) return;
|
||
|
|
||
|
foreach WorldInfo.DynamicActors(class'AAL', AAL)
|
||
|
{
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
if (AAL == None)
|
||
|
{
|
||
|
AAL = WorldInfo.Spawn(class'AAL');
|
||
|
}
|
||
|
|
||
|
if (AAL == None)
|
||
|
{
|
||
|
`Log_Base("FATAL: Can't Spawn 'AAL'");
|
||
|
SafeDestroy();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function AddMutator(Mutator Mut)
|
||
|
{
|
||
|
if (Mut == Self) return;
|
||
|
|
||
|
if (Mut.Class == Class)
|
||
|
Mut.Destroy();
|
||
|
else
|
||
|
Super.AddMutator(Mut);
|
||
|
}
|
||
|
|
||
|
public function NotifyLogin(Controller C)
|
||
|
{
|
||
|
Super.NotifyLogin(C);
|
||
|
|
||
|
AAL.NotifyLogin(C);
|
||
|
}
|
||
|
|
||
|
public function NotifyLogout(Controller C)
|
||
|
{
|
||
|
Super.NotifyLogout(C);
|
||
|
|
||
|
AAL.NotifyLogout(C);
|
||
|
}
|
||
|
|
||
|
DefaultProperties
|
||
|
{
|
||
|
|
||
|
}
|