mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-03 03:15:55 -04:00
21 lines
469 B
Plaintext
21 lines
469 B
Plaintext
include library.ai_lib;
|
|
include library.hue;
|
|
include library.colors;
|
|
include library.chat;
|
|
include library.factions;
|
|
include library.skill;
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
setName (self, "Colonel Veers");
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
|
|
//setObjVar (self, "quest_table", "veers");
|
|
//setObjVar (self, "minGating", 20);
|
|
//setObjVar (self, "maxGating", 25);
|
|
|
|
attachScript (self, "conversation.itp_veers_main");
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|