mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
41 lines
940 B
Plaintext
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;
|
|
}
|