mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-03 03:15:55 -04:00
16 lines
336 B
Plaintext
16 lines
336 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, "Jabba the Hutt");
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
attachScript (self, "conversation.jabba");
|
|
return SCRIPT_CONTINUE;
|
|
}
|