summaryrefslogtreecommitdiff
path: root/npc/031-1_NivalisPort/angelaOutside.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/031-1_NivalisPort/angelaOutside.txt')
-rw-r--r--npc/031-1_NivalisPort/angelaOutside.txt77
1 files changed, 0 insertions, 77 deletions
diff --git a/npc/031-1_NivalisPort/angelaOutside.txt b/npc/031-1_NivalisPort/angelaOutside.txt
index d5775f2e..98523903 100644
--- a/npc/031-1_NivalisPort/angelaOutside.txt
+++ b/npc/031-1_NivalisPort/angelaOutside.txt
@@ -109,83 +109,6 @@ S_Update_Mask:
return;
}
-031-1.gat,80,25,0 script Debug 154, {
-
-//TODO: remove DEBUG
-
- set @Q_Nivalis_state_MASK, NIBBLE_5_MASK;
- set @Q_Nivalis_state_SHIFT, NIBBLE_5_SHIFT;
-
- set @rescue_Cindy, ((QUEST_Nivalis_state & @Q_Nivalis_state_MASK) >> @Q_Nivalis_state_SHIFT);
-
- mes "This menu is for debugging and will be removed";
- menu
- "close", L_close,
- "reset quest", -,
- "skip yeti battle", yeti,
- "magic", magic;
- set @rescue_Cindy, 0;
- callsub S_Update_Mask;
- mes "quest variable is now " + @rescue_Cindy;
- close;
-
-yeti:
- set @rescue_Cindy, 2;
- callsub S_Update_Mask;
- mes "quest variable is now " + @rescue_Cindy;
- close;
-
-L_close:
- close;
-
-magic:
- // Set up SkillUp function general magic
- set @SUP_id, SKILL_MAGIC;
- set @SUP_name$, "Magic";
-
- set @SUP_xp, 5000;
- set @SUP_lvl, 2;
- callfunc "SkillUp";
-
- // Set up SkillUp function war magic
- set @SUP_id, SKILL_MAGIC_WAR;
- set @SUP_name$, "War Magic";
-
- set @SUP_xp, 5000;
- set @SUP_lvl, 2;
- callfunc "SkillUp";
-
- // Set up SkillUp function life magic
- set @SUP_id, SKILL_MAGIC_LIFE;
- set @SUP_name$, "Life Magic";
-
- set @SUP_xp, 5000;
- set @SUP_lvl, 2;
- callfunc "SkillUp";
-
- // Set up SkillUp function life magic
- set @SUP_id, SKILL_MAGIC_NATURE;
- set @SUP_name$, "Nature Magic";
-
- set @SUP_xp, 5000;
- set @SUP_lvl, 2;
- callfunc "SkillUp";
-
- mes "Lightning invocation: " + getspellinvocation("lightning-strike");
- mes "Flare-dart invocation: " + getspellinvocation("flare-dart");
- mes "Lesser-heal invocation: " + getspellinvocation("lesser-heal");
- mes "Lay-on-hands invocation: " + getspellinvocation("lay-on-hands");
- mes "protect: " + getspellinvocation("protect");
- close;
-
-S_Update_Mask:
- set QUEST_Nivalis_state,
- (QUEST_Nivalis_state & ~(@Q_Nivalis_state_MASK))
- | (@rescue_Cindy << @Q_Nivalis_state_SHIFT);
- return;
-}
-
-