diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 11:00:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 11:00:49 -0300 |
commit | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (patch) | |
tree | 4947d0b015baad639fa07133369e9a09c8a468bc /npc/009-2-7/umfrey.txt | |
download | serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.gz serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.bz2 serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.xz serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.zip |
Initial commit
Diffstat (limited to 'npc/009-2-7/umfrey.txt')
-rw-r--r-- | npc/009-2-7/umfrey.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/npc/009-2-7/umfrey.txt b/npc/009-2-7/umfrey.txt new file mode 100644 index 00000000..5463f7e2 --- /dev/null +++ b/npc/009-2-7/umfrey.txt @@ -0,0 +1,25 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Umfrey is the general shopkeeper of Asphodel Moors +// THIS IS A PLACEHOLDER! + +009-2-7,44,30,0 script Umfrey NPC_UMFREY,{ + closeclientdialog; + shop .name$; + close; + +OnInit: + .distance = 4; + tradertype(NST_MARKET); + + sellitem TrainingArrow, -1, 20000; + sellitem DeathPotion, -1, 1; + end; + +OnClock0009: + restoreshopitem TrainingArrow, 20000; + restoreshopitem DeathPotion, 1; + end; +} |