mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
140 lines
4.5 KiB
Java
140 lines
4.5 KiB
Java
package script.creature;
|
|
|
|
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.chat;
|
|
import script.library.create;
|
|
import script.library.groundquests;
|
|
import script.library.prose;
|
|
import script.ai.ai_combat;
|
|
|
|
public class dynamic_enemy extends script.base_script
|
|
{
|
|
public dynamic_enemy()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
messageTo(self, "clientEffect", null, 400, true);
|
|
messageTo(self, "attackPlayer", null, 1, false);
|
|
messageTo(self, "barkAttack", null, 1, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnIncapacitateTarget(obj_id self, obj_id victim) throws InterruptedException
|
|
{
|
|
obj_id player = getObjIdObjVar(self, "player");
|
|
if (!isValidId(player) || !exists(player))
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
if (player != victim)
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
messageTo(self, "expression", null, 3, true);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnLoiterMoving(obj_id self) throws InterruptedException
|
|
{
|
|
messageTo(self, "clientEffect", null, 3, true);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int clientEffect(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
if (!hasObjVar(self, "clientEffect"))
|
|
{
|
|
messageTo(self, "cleanUp", null, 0, true);
|
|
}
|
|
else
|
|
{
|
|
playClientEffectObj(self, getStringObjVar(self, "clientEffect"), self, "");
|
|
messageTo(self, "cleanUp", null, 1, true);
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int cleanUp(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
destroyObject(self);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int expression(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
obj_id player = getObjIdObjVar(self, "player");
|
|
if (!isValidId(player) || !exists(player))
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
faceTo(self, player);
|
|
messageTo(self, "barkDefeat", null, 1, false);
|
|
location body = getLocation(player);
|
|
pathTo(self, body);
|
|
messageTo(self, "runAwayThenCleanUp", null, 4, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int runAwayThenCleanUp(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
location l = groundquests.getRandom2DLocationAroundPlayer(self, 20, 50);
|
|
pathTo(self, l);
|
|
messageTo(self, "clientEffect", null, 6, true);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int attackPlayer(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
obj_id player = getObjIdObjVar(self, "player");
|
|
if (!isValidId(player) || !exists(player))
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
startCombat(self, player);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int barkAttack(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
obj_id mob = self;
|
|
if (params == null)
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
else if (!hasObjVar(mob, "phrase_string_file"))
|
|
{
|
|
return SCRIPT_OVERRIDE;
|
|
}
|
|
String stringFile = getStringObjVar(mob, "phrase_string_file");
|
|
String attackString = getStringObjVar(mob, "attack_phrase");
|
|
if ((attackString == null) || (attackString.equals("")))
|
|
{
|
|
return SCRIPT_OVERRIDE;
|
|
}
|
|
string_id attack_phrase = new string_id(stringFile, attackString);
|
|
chat.chat(mob, chat.CHAT_SHOUT, chat.MOOD_ANGRY, attack_phrase);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int barkDefeat(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
obj_id mob = self;
|
|
if (params == null)
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
else if (!hasObjVar(mob, "phrase_string_file"))
|
|
{
|
|
return SCRIPT_OVERRIDE;
|
|
}
|
|
String stringFile = getStringObjVar(mob, "phrase_string_file");
|
|
String defeatString = getStringObjVar(mob, "defeat_phrase");
|
|
if ((defeatString == null) || (defeatString.equals("")))
|
|
{
|
|
return SCRIPT_OVERRIDE;
|
|
}
|
|
string_id defeat_phrase = new string_id(stringFile, defeatString);
|
|
chat.chat(mob, chat.CHAT_SHOUT, chat.MOOD_ANGRY, defeat_phrase);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|