diff options
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; + +} + |