diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-26 13:36:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-26 13:36:21 -0300 |
commit | 9cf34e03fa88ab6ad318b36239d68eeb66dc92cc (patch) | |
tree | 0fd519f03ca09f078c39c4e4a09780cdfb02acfc /npc/024-9 | |
parent | ea1037f2ef9cb35ecc86aa716b267b2c65971fe2 (diff) | |
download | serverdata-9cf34e03fa88ab6ad318b36239d68eeb66dc92cc.tar.gz serverdata-9cf34e03fa88ab6ad318b36239d68eeb66dc92cc.tar.bz2 serverdata-9cf34e03fa88ab6ad318b36239d68eeb66dc92cc.tar.xz serverdata-9cf34e03fa88ab6ad318b36239d68eeb66dc92cc.zip |
Add Frostia's bar, selling Beer and Dwarven Sake (the best sale alcohol item)
Diffstat (limited to 'npc/024-9')
-rw-r--r-- | npc/024-9/_import.txt | 1 | ||||
-rw-r--r-- | npc/024-9/barkeeper.txt | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/npc/024-9/_import.txt b/npc/024-9/_import.txt index f038f049f..b0d325f44 100644 --- a/npc/024-9/_import.txt +++ b/npc/024-9/_import.txt @@ -1,3 +1,4 @@ // Map 024-9: Frostia Indoors // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/024-9/_warps.txt", +"npc/024-9/barkeeper.txt", diff --git a/npc/024-9/barkeeper.txt b/npc/024-9/barkeeper.txt new file mode 100644 index 000000000..347be0632 --- /dev/null +++ b/npc/024-9/barkeeper.txt @@ -0,0 +1,28 @@ +// TMW-2 Script +// Author: +// Jesusalva +// Description: +// Sells beer + +// Temporary Sprite +024-9,39,31,0 script Bar Jobs NPC_DWARF_TRADER,{ + hello; + shop .name$; + close; + +OnInit: + tradertype(NST_MARKET); + sellitem DwarvenSake, 1100, 5; + sellitem Beer, 300, 20; + + .sex = G_MALE; + .distance = 5; + end; + +OnClock2358: + restoreshopitem DwarvenSake, 1100, 5; + restoreshopitem Beer, 300, 20; + end; + +} + |