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/001-1_Tulimshar | |
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/001-1_Tulimshar')
-rw-r--r-- | npc/001-1_Tulimshar/bard.txt | 4 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/elanore.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/001-1_Tulimshar/bard.txt b/npc/001-1_Tulimshar/bard.txt index 9420d9fb..8b416ec5 100644 --- a/npc/001-1_Tulimshar/bard.txt +++ b/npc/001-1_Tulimshar/bard.txt @@ -26,7 +26,7 @@ L_News: mes "[" + @name$ + "]"; mes "\"Rumor has it that an ancient source of magic, a Mana Seed, has been sighted in the west, beyond the fair town of Hurnscald.\""; next; - set MFLAG, MFLAG | MFLAG_MANASEED_RUMOUR; + set MAGIC_FLAGS, MAGIC_FLAGS | MFLAG_MANASEED_RUMOUR; mes "[" + @name$ + "]"; mes "\"Whence it came, nobody knows... but they say that sometimes such Mana Seeds may choose a powerful individual to impart some of its mystic power to!\""; next; @@ -38,7 +38,7 @@ L_News: L_Question: callfunc "MagicTalkOptionsSetup"; set @ignore, 0; - callfunc "MagictalkMenu"; + callfunc "MagicTalkMenu"; if (@c == 0) goto L_Main; if (@c == @QQ_ELANORE) goto L_Q_elanore; diff --git a/npc/001-1_Tulimshar/elanore.txt b/npc/001-1_Tulimshar/elanore.txt index 3f18c80c..729a41bf 100644 --- a/npc/001-1_Tulimshar/elanore.txt +++ b/npc/001-1_Tulimshar/elanore.txt @@ -362,7 +362,7 @@ L_NoMagicNoTeach: L_Question: callfunc "MagicTalkOptionsSetup"; set @ignore, @QQ_ELANORE; - callfunc "MagictalkMenu"; + callfunc "MagicTalkMenu"; if (@c == 0) goto L_Main; if (@c == @QQ_MANASEED) goto L_Q_manaseed; |