mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
18 lines
241 B
Plaintext
18 lines
241 B
Plaintext
|
|
trigger OnAttach()
|
|
{
|
|
if(!aiUsingPrimaryWeapon(self))
|
|
{
|
|
aiEquipPrimaryWeapon(self);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
trigger OnInitialize()
|
|
{
|
|
if(!aiUsingPrimaryWeapon(self))
|
|
{
|
|
aiEquipPrimaryWeapon(self);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
} |