Files
dsrc/sku.0/sys.server/compiled/game/script/npc/celebrity/mon_mothma.script
T
2013-09-10 23:17:15 -07:00

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;
}