mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-07-31 01:15:55 -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;
|
|
} |