Files
dsrc/sku.0/sys.server/compiled/game/script/space/characters/alozen.script
T

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;
}