diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-16 01:32:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-16 01:32:26 -0300 |
commit | 37beff5fc67d15dfd2b74c441bcc346ccdd370ee (patch) | |
tree | e9efb324ea00c19e13197fdb005fe3202fbef324 /npc/003-0 | |
parent | 374ef27c48c0cf3c3d0afa8dba17ad7d85d2423e (diff) | |
download | serverdata-37beff5fc67d15dfd2b74c441bcc346ccdd370ee.tar.gz serverdata-37beff5fc67d15dfd2b74c441bcc346ccdd370ee.tar.bz2 serverdata-37beff5fc67d15dfd2b74c441bcc346ccdd370ee.tar.xz serverdata-37beff5fc67d15dfd2b74c441bcc346ccdd370ee.zip |
*fun* something like detect magic level
Diffstat (limited to 'npc/003-0')
-rw-r--r-- | npc/003-0/audsbel.txt | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/npc/003-0/audsbel.txt b/npc/003-0/audsbel.txt index e2e96af76..e80dfe388 100644 --- a/npc/003-0/audsbel.txt +++ b/npc/003-0/audsbel.txt @@ -14,7 +14,7 @@ mesq l("Welcome back, Padric!"); mesq l("Do you believe I've lost my @@? I can't see anything well without that! %%a", getitemlink(Googles)); next; - mesn l("Auldsbel the Wizard"); + mesn; mesq l("Anyway, I am one of the few Mana Wizard, and I love Transmutation!"); next; @@ -22,15 +22,16 @@ L_Main: .@q=getq(General_Auldsbel); select l("What's the difference from a Mana Wizard and a Mage?"), - l("Where are you from?"), - l("Do you still need help with your experiments?"), + l("Who are you? Where are you from?"), + l("How do I advance in Mana Magic? How it works?"), l("Can you teach me Mana Magic?"), l("What do you know about Sagratha?"), + l("Do you still need help with your experiments?"), l("Actually, I gotta go, see ya!"); mes ""; switch (@menu) { - case 1: + case 1: // What's the difference from a Mana Wizard and a Mage? mesn; mesq l("%%4 Haven't you read your Grimorium yet?!"); next; @@ -50,7 +51,7 @@ L_Main: mesq l("To be honest, you should use both. And remember, all Mana Magic skills can be used like they were @sk-commands. %%H"); next; break; - case 2: + case 2: // Who are you? Where are you from? mesn; mesq l("Well, speaking a bit about myself can't hurt. I am a member from the Magic Council, but one day I decided to take a vacations."); next; @@ -58,10 +59,24 @@ L_Main: mesq l("I moved to Hurnscald, stayed there for over a decade, until Lord Transmogrifier Pontorias the Plaid (May His Shape Reflect His Soul Forever) died."); next; mesn; - mesq l("then I returned to Tulimshar. I now do research, vote on the council meetings, and I also teach young mages about Transmutation magic."); + mesq l("Then I returned to Tulimshar. Now I do research, vote on the Magic Council meetings, and I also teach young mages about Transmutation magic."); + next; + break; + case 3: // How do I advance in Mana Magic? How it works? + mesn; + mesq l("Mana Magic works similar to regular magic: You can find it on your skill window, and can drag it to your shortcut list."); + next; + break; + case 4: // Can you teach me Mana Magic? + next; + break; + case 5: // What do you know about Sagratha? + next; + break; + case 6: // Do you still need help with your experiments? next; break; - default: + default: // Actually, I gotta go, see ya! goodbye; closedialog; close; |