etqw-sdk/base/script/weapons/lacerator.script

20 lines
457 B
Plaintext
Raw Normal View History

2008-05-29 00:00:00 +00:00
/***********************************************************************
weapon_lacerator.script
***********************************************************************/
object weapon_lacerator : weapon_assaultrifle {
void preinit();
void Reload() { Overheat(); }
void OnIronSightsEnabled() { hide(); }
void OnIronSightsDisabled() { show(); }
}
void weapon_lacerator::preinit() {
usesStroyent = true;
hasHeat = true;
}