diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-07 11:36:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-07 11:36:56 -0300 |
commit | 47ce7037d73bf0a0c76244edb15611a42d7e2cd2 (patch) | |
tree | f9b1c1c81592b20abef90bcd6c97d71901b77d4b /npc | |
parent | 0ebb73fc54e6865886943918e4df446567f428b3 (diff) | |
download | serverdata-47ce7037d73bf0a0c76244edb15611a42d7e2cd2.tar.gz serverdata-47ce7037d73bf0a0c76244edb15611a42d7e2cd2.tar.bz2 serverdata-47ce7037d73bf0a0c76244edb15611a42d7e2cd2.tar.xz serverdata-47ce7037d73bf0a0c76244edb15611a42d7e2cd2.zip |
Sketch about craftmaster
Diffstat (limited to 'npc')
-rw-r--r-- | npc/024-16/craftsman.txt | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/npc/024-16/craftsman.txt b/npc/024-16/craftsman.txt index 8dbfc5f80..2a69f7713 100644 --- a/npc/024-16/craftsman.txt +++ b/npc/024-16/craftsman.txt @@ -5,8 +5,27 @@ // Craftmaster, teaches player TMW2_CRAFT 024-16,27,42,0 script Dwarf Craftsmaster NPC_DWARF_CRAFTMASTER,{ - hello; - end; + if (.@q < 13) { + hello; + end; + } + mesn; + mesq lg("Look what we have here, it is a girl!", "Look what we have here, it is a boy!"); + next; + mesn; + mesq l("I'm Thurgar the mighty craftsman. I can make anything reality! But I only work to the king!"); + next; + mesn; + mesq l("...Unless, of course, if you're interested in learning this art. You'll not regret it, I assure you."); + next; + // Main Loop + mesc l("Crafting Skill Level: @@", getskilllv(TMW2_CRAFT)); + mesc l("Completed Crafts: @@", CRAFTING_SCORE); + mesc l("Money: @@ GP", format_number(Zeny)), 3; + mes ""; + select + l("Nothing for now, thanks."); + close; OnInit: .distance=5; |