mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
26 lines
738 B
Plaintext
26 lines
738 B
Plaintext
include library.ai_lib;
|
|
include library.hue;
|
|
include library.colors;
|
|
include library.chat;
|
|
include library.factions;
|
|
include library.skill;
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
obj_id dress = createObject ("object/tangible/wearables/dress/dress_s06.iff", self, "");
|
|
obj_id shoes = createObject ("object/tangible/wearables/shoes/shoes_s02.iff", self, "");
|
|
|
|
setName (self, "Stella");
|
|
hue.setColor (dress, 1, 95);
|
|
hue.setColor (dress, 2, 22);
|
|
hue.setColor (shoes, 1, 11);
|
|
hue.setColor (shoes, 1, 58);
|
|
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
debugSpeakMsg (self, "Welcome to the Third Sun!");
|
|
attachScript (self, "npc.static_quest.quest_convo");
|
|
setObjVar (self, "quest_table", "stella");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|