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,38 @@
package script.npc.static_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.hue;
import script.library.colors;
import script.library.chat;
import script.library.factions;
import script.library.skill;
public class stella extends script.base_script
{
public stella()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
obj_id dress = createObject("object/tangible/wearables/dress/dress_s06.iff", self, "");
obj_id shoes = createObject("object/tangible/wearables/shoes/shoes_s02.iff", self, "");
setName(self, "Stella");
hue.setColor(dress, 1, 95);
hue.setColor(dress, 2, 22);
hue.setColor(shoes, 1, 11);
hue.setColor(shoes, 1, 58);
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
debugSpeakMsg(self, "Welcome to the Third Sun!");
attachScript(self, "npc.static_quest.quest_convo");
setObjVar(self, "quest_table", "stella");
return SCRIPT_CONTINUE;
}
}