mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -04:00
36 lines
835 B
Plaintext
36 lines
835 B
Plaintext
//------------------------------------------------
|
|
// 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;
|
|
}
|