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

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