diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-16 00:44:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-16 00:44:33 -0300 |
commit | 4bcdc6f58fee39e968dc0864c8c25057aa4b943d (patch) | |
tree | 6b7a67be963fb3dd2356cf35fbba9b2d058c089f /npc/003-0/audsbel.txt | |
parent | 66db149de62000a8ac7d6b0fb0594659962f171e (diff) | |
download | serverdata-4bcdc6f58fee39e968dc0864c8c25057aa4b943d.tar.gz serverdata-4bcdc6f58fee39e968dc0864c8c25057aa4b943d.tar.bz2 serverdata-4bcdc6f58fee39e968dc0864c8c25057aa4b943d.tar.xz serverdata-4bcdc6f58fee39e968dc0864c8c25057aa4b943d.zip |
Tanker & Auldsbel Prototype.
Diffstat (limited to 'npc/003-0/audsbel.txt')
-rw-r--r-- | npc/003-0/audsbel.txt | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/npc/003-0/audsbel.txt b/npc/003-0/audsbel.txt index ca5edecbb..3568a12c7 100644 --- a/npc/003-0/audsbel.txt +++ b/npc/003-0/audsbel.txt @@ -3,13 +3,40 @@ // Jesusalva // Description: // One of the Mana Magic Leaders +// Planned, there are only Auldsbel and Sagratha as Mana Wizards. + // Gives #parum -003-0,34,37,0 script Audsbel NPC_AULDSBEL,{ +003-0,34,37,0 script Auldsbel NPC_AULDSBEL,{ + if (MAGIC_LVL < 2) + goto L_Cheat; + mesn l("Auldsbel the Wizard"); + 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"); + mesq l("Anyway, I am one of the few Mana Wizard, and I love Transmutation!"); + next; + 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("Can you teach me Mana Magic?"), + l("What do you know about Sagratha?"), + l("Actually, I gotta go, see ya!"); + goodbye; closedialog; close; +L_Cheat: + atcommand "@jail "+strcharinfo(0); + setparam(MaxHp, readparam(MaxHp)/2); // testing + setparam(Karma, -1); // testing + setparam(Manner, -10); // testing + dispbottom l("You are not allowed on this building, and was caught by Jesusalva's Police!!"); + end; + OnInit: .sex=G_MALE; .distance=5; |