mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-07-31 01:15:55 -04:00
40 lines
766 B
Plaintext
40 lines
766 B
Plaintext
/**********************************************************************
|
|
|
|
*
|
|
* Title: mouse_droid
|
|
* Description: Gimps Marksman Trainers mouse droids to do little to no damage
|
|
|
|
**********************************************************************/
|
|
|
|
//Includes
|
|
include library.ai_lib;
|
|
include library.weapons;
|
|
|
|
//Triggers
|
|
trigger OnInitialize()
|
|
{
|
|
obj_id weapon = aiGetPrimaryWeapon(self);
|
|
|
|
setWeaponMinDamage(weapon, 30);
|
|
|
|
setWeaponMaxDamage(weapon, 60);
|
|
|
|
weapons.setWeaponData(weapon);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
|
|
trigger OnAttach()
|
|
{
|
|
obj_id weapon = aiGetPrimaryWeapon(self);
|
|
|
|
setWeaponMinDamage(weapon, 30);
|
|
|
|
setWeaponMaxDamage(weapon, 60);
|
|
|
|
weapons.setWeaponData(weapon);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|