mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
56 lines
1.9 KiB
Java
Executable File
56 lines
1.9 KiB
Java
Executable File
package script.npc;
|
|
|
|
import script.dictionary;
|
|
import script.library.chat;
|
|
import script.library.prose;
|
|
import script.library.utils;
|
|
import script.obj_id;
|
|
import script.prose_package;
|
|
import script.string_id;
|
|
|
|
public class legacy_wounded extends script.base_script
|
|
{
|
|
public legacy_wounded()
|
|
{
|
|
}
|
|
public static final String PP_FILE_LOC = "quest/legacy/legacy_wounded";
|
|
public static final String RESPONSE_TEXT = "datatables/npc/legacy/legacy_lamentations.iff";
|
|
public static int INITIAL_DELAY = 10;
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
if (hasScript(self, "ai.ai"))
|
|
{
|
|
detachScript(self, "ai.ai");
|
|
}
|
|
if (hasScript(self, "ai.creature_combat"))
|
|
{
|
|
detachScript(self, "ai.creature_combat");
|
|
}
|
|
if (hasScript(self, "systems.combat.credit_for_kills"))
|
|
{
|
|
detachScript(self, "systems.combat.credit_for_kills");
|
|
}
|
|
if (hasScript(self, "systems.combat.combat_actions"))
|
|
{
|
|
detachScript(self, "systems.combat.combat_actions");
|
|
}
|
|
setPosture(self, POSTURE_KNOCKED_DOWN);
|
|
messageTo(self, "legLam", null, INITIAL_DELAY, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int legLam(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
int randMoan = rand(0, 9);
|
|
chat.publicChat(self, null, null, null, getRandLamentation(self, randMoan));
|
|
int randMsg = rand(90, 300);
|
|
messageTo(self, "legLam", null, randMsg, false);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public prose_package getRandLamentation(obj_id target, int moanRow) throws InterruptedException
|
|
{
|
|
string_id response = new string_id(PP_FILE_LOC, utils.dataTableGetString(RESPONSE_TEXT, moanRow, 1));
|
|
prose_package pp = prose.getPackage(response, target);
|
|
return pp;
|
|
}
|
|
}
|