mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-03 03:15:55 -04:00
23 lines
505 B
Plaintext
23 lines
505 B
Plaintext
include library.ai_lib;
|
|
include library.hue;
|
|
include library.colors;
|
|
include library.chat;
|
|
include library.skill;
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
//setName (self, "Darth Vader");
|
|
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
ai_lib.setDefaultCalmMood( self, "npc_imperial" );
|
|
|
|
//setObjVar (self, "quest_table", "darth_vader");
|
|
//setObjVar (self, "minGating", 32);
|
|
//setObjVar (self, "maxGating", 38);
|
|
|
|
attachScript (self, "conversation.itp_vader_main");
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|