who isn't sick of converting the freaking scripts? this negates the need

This commit is contained in:
DarthArgus
2015-11-24 09:27:45 -06:00
parent 2e64106bc8
commit bbee2d328c
11077 changed files with 2604347 additions and 3425075 deletions
@@ -0,0 +1,60 @@
package script.npc;
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.ai_lib;
import script.library.chat;
import script.library.utils;
import script.library.prose;
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;
}
}