mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
36 lines
819 B
Plaintext
36 lines
819 B
Plaintext
//------------------------------------------------
|
|
// Includes
|
|
//------------------------------------------------
|
|
|
|
include library.chat;
|
|
|
|
//------------------------------------------------
|
|
// Constants
|
|
//------------------------------------------------
|
|
|
|
//------------------------------------------------
|
|
// OnAttach
|
|
//------------------------------------------------
|
|
|
|
trigger OnAttach()
|
|
{
|
|
setAnimationMood( self, "npc_imperial" );
|
|
setInvulnerable( self, true );
|
|
setName( self, "Field Cdr. Alozen" );
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|
|
//------------------------------------------------
|
|
// OnInitialize
|
|
//------------------------------------------------
|
|
|
|
trigger OnInitialize()
|
|
{
|
|
setAnimationMood( self, "npc_imperial" );
|
|
setInvulnerable( self, true );
|
|
setName( self, "Field Cdr. Alozen" );
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|