mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-03 03:15:55 -04:00
16 lines
359 B
Plaintext
16 lines
359 B
Plaintext
include library.ai_lib;
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
setName (self, "Qual'do Herm");
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
|
|
attachScript (self, "conversation.rtp_qualdo_main");
|
|
//setObjVar (self, "quest_table", "qualdo_herm" );
|
|
//setObjVar (self, "minGating", 4);
|
|
//setObjVar (self, "maxGating", 8);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
|