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

43 lines
1.0 KiB
Plaintext

//------------------------------------------------
// oberhaur.script
// Brandon Reinhart
//
// Script to set a few things on Commander Oberhaur.
//------------------------------------------------
//------------------------------------------------
// Includes
//------------------------------------------------
include library.chat;
//------------------------------------------------
// Constants
//------------------------------------------------
//------------------------------------------------
// OnAttach
//------------------------------------------------
trigger OnAttach()
{
setAnimationMood( self, "npc_imperial" );
setInvulnerable( self, true );
setName( self, "Under Inquisitor Holfheim" );
return SCRIPT_CONTINUE;
}
//------------------------------------------------
// OnInitialize
//------------------------------------------------
trigger OnInitialize()
{
setAnimationMood( self, "npc_imperial" );
setInvulnerable( self, true );
setName( self, "Under Inquisitor Holfheim" );
return SCRIPT_CONTINUE;
}