mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-04 04:15:52 -04:00
17 lines
416 B
Plaintext
17 lines
416 B
Plaintext
include library.ai_lib;
|
|
|
|
//const string CONVO = "celebrity/han_solo";
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
debugSpeakMsg (self, "It's not my fault!");
|
|
|
|
attachScript (self, "conversation.rtp_han_solo_main");
|
|
//setObjVar (self, "quest_table", "han_solo" );
|
|
//setObjVar (self, "minGating", 22);
|
|
//setObjVar (self, "maxGating", 27);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|