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,48 @@
package script.player.cmd;
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.firework;
public class misc extends script.base_script
{
public misc()
{
}
public static final string_id SID_LAUNCH_FIREWORKS_INDOORS = new string_id("firework", "launch_fireworks_indoors");
public int cmdLaunchFirework(obj_id self, obj_id target, String params, float defaultTime) throws InterruptedException
{
if (!isIdValid(target))
{
return SCRIPT_CONTINUE;
}
if (!hasObjVar(target, firework.VAR_FIREWORK_BASE))
{
return SCRIPT_CONTINUE;
}
location here = getLocation(self);
if (isIdValid(here.cell))
{
sendSystemMessage(self, SID_LAUNCH_FIREWORKS_INDOORS);
return SCRIPT_CONTINUE;
}
if (params == null || params.equals(""))
{
firework.launch(self, target);
}
else
{
if (params.equalsIgnoreCase("show"))
{
firework.launchShow(self, target);
}
}
return SCRIPT_CONTINUE;
}
}