mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
39 lines
1.0 KiB
Java
39 lines
1.0 KiB
Java
package script.npe;
|
|
|
|
import script.*;
|
|
import script.base_class.*;
|
|
import script.combat_engine.*;
|
|
import java.util.Arrays;
|
|
import java.util.Hashtable;
|
|
import java.util.Vector;
|
|
import script.base_script;
|
|
|
|
import script.library.utils;
|
|
|
|
public class npe_guard1_sequence extends script.base_script
|
|
{
|
|
public npe_guard1_sequence()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setInvulnerable(self, true);
|
|
messageTo(self, "npeSetName", null, 1, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int npeSetName(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
setName(self, "Car'das Guard");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnPreloadComplete(obj_id self) throws InterruptedException
|
|
{
|
|
boolean setting = utils.checkConfigFlag("ScriptFlags", "npeSequencersActive");
|
|
if (setting == true)
|
|
{
|
|
messageTo(self, "doEvents", null, 60, false);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|