diff options
author | wushin <pasekei@gmail.com> | 2015-02-16 21:00:21 -0600 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2015-02-19 23:02:12 -0600 |
commit | 9a0b536324d87107a6ca31f47facb804d70c0d30 (patch) | |
tree | c233699e692bfb0d71d2838b06d23ed8ad28dfd8 /world/map/npc/011-6/crastur.txt | |
parent | d64e30a251b85ea68fcc955427856bdd4824bf33 (diff) | |
download | serverdata-9a0b536324d87107a6ca31f47facb804d70c0d30.tar.gz serverdata-9a0b536324d87107a6ca31f47facb804d70c0d30.tar.bz2 serverdata-9a0b536324d87107a6ca31f47facb804d70c0d30.tar.xz serverdata-9a0b536324d87107a6ca31f47facb804d70c0d30.zip |
Clean up script
Diffstat (limited to 'world/map/npc/011-6/crastur.txt')
-rw-r--r-- | world/map/npc/011-6/crastur.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/011-6/crastur.txt b/world/map/npc/011-6/crastur.txt index 16dda84f..6304acb8 100644 --- a/world/map/npc/011-6/crastur.txt +++ b/world/map/npc/011-6/crastur.txt @@ -2,8 +2,8 @@ { set @spants_state, ((QUEST_WG_state & NIBBLE_2_MASK) >> NIBBLE_2_SHIFT); set @inspector, ((QUEST_Hurnscald & NIBBLE_3_MASK) >> NIBBLE_3_SHIFT); - if @spants_state < 3 goto L_Regular; - if @spants_state == 3 goto L_Ask; + if (@spants_state < 3) goto L_Regular; + if (@spants_state == 3) goto L_Ask; if (@spants_state == 4 || @spants_state == 5 || @spants_state == 6) goto L_Ask_Again; goto L_Main; @@ -187,7 +187,7 @@ L_Personal: mes "\"Ah. Here it is:\""; mes "\"Today you have accomplished tasks that are worth " + DailyQuestPoints + " Hours in the Northern Mines\""; next; - if BOSS_POINTS < 1000 goto L_Worm; + if (BOSS_POINTS < 1000) goto L_Worm; emotion EMOTE_DEAD; mes "[Crastur]"; mes ""; |