Files
dsrc/sku.0/sys.server/compiled/game/script/space/characters/technician.script
T
2013-09-10 23:17:15 -07:00

41 lines
940 B
Plaintext

//------------------------------------------------
// technician.script
// Brandon Reinhart
//
// Script to set a few things on Nym's technicians.
//------------------------------------------------
//------------------------------------------------
// Includes
//------------------------------------------------
include library.chat;
//------------------------------------------------
// Constants
//------------------------------------------------
//------------------------------------------------
// OnAttach
//------------------------------------------------
trigger OnAttach()
{
setInvulnerable( self, true );
setName( self, "A Starship Technician" );
return SCRIPT_CONTINUE;
}
//------------------------------------------------
// OnInitialize
//------------------------------------------------
trigger OnInitialize()
{
setInvulnerable( self, true );
setName( self, "A Starship Technician" );
return SCRIPT_CONTINUE;
}