mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-03 03:15:55 -04:00
28 lines
784 B
Plaintext
28 lines
784 B
Plaintext
include library.ai_lib;
|
|
include library.hue;
|
|
include library.colors;
|
|
|
|
//const string CONVO = "celebrity/mon_mothma";
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
/*
|
|
obj_id dress = createObject ("object/tangible/wearables/dress/dress_s05.iff", self, "");
|
|
obj_id boots = createObject ("object/tangible/wearables/boots/boots_s12.iff", self, "");
|
|
hue.setColor (dress, 1, colors.MAROON);
|
|
hue.setColor (dress, 2, colors.WHITE);
|
|
hue.setColor (boots, 1, colors.WHITE);
|
|
*/
|
|
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
debugSpeakMsg (self, "I am stern and stately.");
|
|
|
|
attachScript (self, "conversation.rtp_mon_mothma_main");
|
|
//setObjVar (self, "quest_table", "mon_mothma");
|
|
//setObjVar (self, "minGating", 32);
|
|
//setObjVar (self, "maxGating", 38);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|