mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-04 04:15:52 -04:00
15 lines
341 B
Plaintext
15 lines
341 B
Plaintext
include library.ai_lib;
|
|
|
|
trigger OnAttach ()
|
|
{
|
|
setName (self, "C-3PO");
|
|
ai_lib.setDefaultCalmBehavior( self, ai_lib.BEHAVIOR_SENTINEL );
|
|
|
|
attachScript (self, "conversation.rtp_c3po_main");
|
|
//setObjVar (self, "quest_table", "c3po");
|
|
//setObjVar (self, "minGating", 0);
|
|
//setObjVar (self, "maxGating", 4);
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|