mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-27 16:56:48 -04:00
17 lines
407 B
Plaintext
17 lines
407 B
Plaintext
include library.ai_lib;
|
|
include library.hue;
|
|
include library.colors;
|
|
|
|
const string CONVO = "celebrity/king_terak";
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
|
|
setObjVar (self, "quest_table", "king_terak");
|
|
attachScript (self, "npc.static_quest.quest_convo");
|
|
|
|
// debugSpeakMsg (self, "We're building a spaceship out of wood.");
|
|
return SCRIPT_CONTINUE;
|
|
}
|