diff options
author | Fate <fate-tmw@googlemail.com> | 2009-01-10 04:52:20 -0700 |
---|---|---|
committer | Fate <fate-tmw@googlemail.com> | 2009-01-10 04:52:20 -0700 |
commit | d075f25617f1306ad2aef2b1e87567f6c683aa7f (patch) | |
tree | d4fab570fe1d560b3bcd10900d03f85736a38bec /npc/013-1_Woodland_hills/sagatha.txt | |
parent | 2dd4918c51930301faa4eea5f0f88e9fc08162a8 (diff) | |
download | serverdata-d075f25617f1306ad2aef2b1e87567f6c683aa7f.tar.gz serverdata-d075f25617f1306ad2aef2b1e87567f6c683aa7f.tar.bz2 serverdata-d075f25617f1306ad2aef2b1e87567f6c683aa7f.tar.xz serverdata-d075f25617f1306ad2aef2b1e87567f6c683aa7f.zip |
Fixed broken function usage and menus
Diffstat (limited to 'npc/013-1_Woodland_hills/sagatha.txt')
-rw-r--r-- | npc/013-1_Woodland_hills/sagatha.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/013-1_Woodland_hills/sagatha.txt b/npc/013-1_Woodland_hills/sagatha.txt index 51de9191..ed2a20b6 100644 --- a/npc/013-1_Woodland_hills/sagatha.txt +++ b/npc/013-1_Woodland_hills/sagatha.txt @@ -14,6 +14,7 @@ L_zero: L_write: set QUEST_MAGIC, (QUEST_MAGIC & ~NIBBLE_3_MASK) | (@unhappiness << NIBBLE_3_SHIFT); + return; } //---------------------------------------- @@ -30,6 +31,7 @@ L_max: L_write: set QUEST_MAGIC, (QUEST_MAGIC & ~NIBBLE_3_MASK) | (@unhappiness << NIBBLE_3_SHIFT); + return; } function script SagathaStatus { @@ -53,6 +55,7 @@ function script SagathaStatus { set @druid, (((QUEST_MAGIC & NIBBLE_2_MASK) >> NIBBLE_2_SHIFT) & 12) >> 2; if (@druid == 3) set @good, @good + 1; + return; } //---------------------------------------- @@ -290,7 +293,7 @@ L_teach_noexp: L_Question: callfunc "MagicTalkOptionsSetup"; set @ignore, @QQ_SAGATHA; - callfunc "MagictalkMenu"; + callfunc "MagicTalkMenu"; if (@c == 0) goto L_main; if (@c == @QQ_ELANORE) goto L_Q_elanore; |