mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
43 lines
997 B
Plaintext
43 lines
997 B
Plaintext
//------------------------------------------------
|
|
// colzet.script
|
|
// Brandon Reinhart
|
|
//
|
|
// Script to set a few things on Lt. Colzet.
|
|
//------------------------------------------------
|
|
|
|
//------------------------------------------------
|
|
// Includes
|
|
//------------------------------------------------
|
|
|
|
include library.chat;
|
|
|
|
//------------------------------------------------
|
|
// Constants
|
|
//------------------------------------------------
|
|
|
|
//------------------------------------------------
|
|
// OnAttach
|
|
//------------------------------------------------
|
|
|
|
trigger OnAttach()
|
|
{
|
|
// setAnimationMood( self, "npc_imperial" );
|
|
setInvulnerable( self, true );
|
|
setName( self, "Lt. Colzet" );
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
//------------------------------------------------
|
|
// OnInitialize
|
|
//------------------------------------------------
|
|
|
|
trigger OnInitialize()
|
|
{
|
|
// setAnimationMood( self, "npc_imperial" );
|
|
setInvulnerable( self, true );
|
|
setName( self, "Lt. Colzet" );
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|