diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-14 23:28:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-14 23:28:45 -0300 |
commit | ed192f17cad9c4959d4465fa00ce4074c7183351 (patch) | |
tree | 2d3912b16a597ab287ca387eaa5341806e199576 /npc/012-5 | |
parent | 8a1307b3654d71eb34d7fbc68808f2dee0dc02f5 (diff) | |
download | serverdata-ed192f17cad9c4959d4465fa00ce4074c7183351.tar.gz serverdata-ed192f17cad9c4959d4465fa00ce4074c7183351.tar.bz2 serverdata-ed192f17cad9c4959d4465fa00ce4074c7183351.tar.xz serverdata-ed192f17cad9c4959d4465fa00ce4074c7183351.zip |
Wooden Shield: The easy way out.
Diffstat (limited to 'npc/012-5')
-rw-r--r-- | npc/012-5/nicholas.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/012-5/nicholas.txt b/npc/012-5/nicholas.txt index cdad6a122..a3a6c819b 100644 --- a/npc/012-5/nicholas.txt +++ b/npc/012-5/nicholas.txt @@ -67,6 +67,7 @@ L_Menu: select l("I just want to trade."), l("I want to forge Weapons!"), + l("I want to forge Shields!"), l("Nothing, thanks!"); mes ""; @@ -78,10 +79,21 @@ L_Menu: break; case 2: goto L_Weapon; + case 3: + goto L_Shield; } close; + + + + + + + + + L_Weapon: mesn; mesq l("Very well! We have seven class of items: Wood, Iron, Terranite, Bronze, Silver, Gold and Platinum."); @@ -111,6 +123,28 @@ L_Weapon: } goto L_Weapon; + + + + + +L_Shield: + mesn; + mesq l("Very well! We have seven class of items: Wood, Iron, Terranite, Bronze, Silver, Gold and Platinum."); + mesq l("Each of them require different items, I'll sort from weakest to strongest, so choose wisely."); + select + l("Nothing, sorry!"), + l("Wooden Shield"); + + switch (@menu) { + case 1: + goto L_Menu; + case 2: + blacksmith_create(WoodenLog, 40, BootleOfTonoriWater, 1, WoodenShield, 5000); + break; + } + goto L_Weapon; + OnInit: tradertype(NST_MARKET); sellitem Dagger, 4000, 5; |