diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:17:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:51:13 -0300 |
commit | c09a3533f1d856ae3b3945902409bd0b5a537c5d (patch) | |
tree | 9507a6fc9d41ed16a0f9de20267e1f93839585c4 /npc/003-8/jhedia.txt | |
parent | 639e28421443199264c35c0426e2262de40cc2c7 (diff) | |
download | serverdata-c09a3533f1d856ae3b3945902409bd0b5a537c5d.tar.gz serverdata-c09a3533f1d856ae3b3945902409bd0b5a537c5d.tar.bz2 serverdata-c09a3533f1d856ae3b3945902409bd0b5a537c5d.tar.xz serverdata-c09a3533f1d856ae3b3945902409bd0b5a537c5d.zip |
Prepare to rewrite stuff to finish item from RoadMap.
Diffstat (limited to 'npc/003-8/jhedia.txt')
-rw-r--r-- | npc/003-8/jhedia.txt | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/npc/003-8/jhedia.txt b/npc/003-8/jhedia.txt index 0f1a3b90b..ff17307b2 100644 --- a/npc/003-8/jhedia.txt +++ b/npc/003-8/jhedia.txt @@ -11,7 +11,7 @@ .GP = 8500; .ItemCreate = IronIngot; - function quest_create { + function iron_create { speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("How many ingots do you want to make?"); input @amount; @@ -30,12 +30,20 @@ } + mesn; + mesq l("Hello! I am @@, and I take care of Tulimshar forge. I usually make ingots from various materials. So, what do you want today?"); + next; + menu + l("Iron Ingots"), L_Iron, + l("Nothing, thanks."), L_Close; + +L_Iron: speech S_FIRST_BLANK_LINE | S_LAST_NEXT, - l("Hello! Do you want to craft @@? For that i will need 7 @@, 11 @@ and @@ gp.", getitemlink(.ItemCreate),getitemlink(.Item1),getitemlink(.Item2),.GP); + l("Hello! Do you want to craft @@? For that I will need 7 @@, 11 @@ and @@ gp.", getitemlink(.ItemCreate),getitemlink(.Item1),getitemlink(.Item2),.GP); do { - .@karim = getq(Karim_Quest); + //.@karim = getq(Karim_Quest); select l("Yes"), menuaction(l("Quit")); @@ -43,11 +51,14 @@ switch (@menu) { case 1: - quest_create; + iron_create; break; } } while (@menu != 2); + goto L_Close; + +L_Close: closedialog; goodbye; close; |