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/012-2-3/nyle.txt | |
download | serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.gz serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.bz2 serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.xz serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.zip |
Initial commit
Diffstat (limited to 'npc/012-2-3/nyle.txt')
-rw-r--r-- | npc/012-2-3/nyle.txt | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/npc/012-2-3/nyle.txt b/npc/012-2-3/nyle.txt new file mode 100644 index 00000000..900f8776 --- /dev/null +++ b/npc/012-2-3/nyle.txt @@ -0,0 +1,67 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Nyle, Candor's shopkeeper. +// THIS IS A PLACEHOLDER! + +012-2-3,42,30,0 script Nyle NPC_NYLE,{ + mesn; + mesq l("Welcome to my fine shop."); + next; + closeclientdialog; + shop .name$; + close; + +OnInit: + .distance = 4; + tradertype(NST_MARKET); + + // Equips + sellitem BrimmedHat, -1, 35; + sellitem Armbands, -1, 20; + sellitem IronArmbands, -1, 20; + sellitem BrownTrousers, -1, 30; + sellitem LousyMoccasins, -1, 20; + sellitem WoodenSword, -1, 50; + sellitem PiouSlayer, -1, 15; + sellitem LeatherShield, -1, 30; + sellitem TrainingArrow, -1, 20000; + + // Edible + sellitem Bread, -1, 15; + sellitem CommonCarp, -1, 8; + sellitem GrassCarp, -1, 7; + sellitem PiberriesInfusion, -1, 200; + sellitem FatesPotion, -1, 100; + sellitem ClothoLiquor, -1, 50; + sellitem LachesisBrew, -1, 30; + sellitem AtroposMixture, -1, 10; + sellitem ElixirOfLife, -1, 2; + + // Misc + sellitem PiouEgg, -1, 25; + end; + +OnClock0001: + restoreshopitem BrimmedHat, 35; + restoreshopitem Armbands, 20; + restoreshopitem IronArmbands, 20; + restoreshopitem BrownTrousers, 30; + restoreshopitem LousyMoccasins, 20; + restoreshopitem WoodenSword, 50; + restoreshopitem PiouSlayer, 15; + restoreshopitem LeatherShield, 30; + restoreshopitem TrainingArrow, 20000; + restoreshopitem Bread, 15; + restoreshopitem CommonCarp, 8; + restoreshopitem GrassCarp, 7; + restoreshopitem PiberriesInfusion, 200; + restoreshopitem FatesPotion, 100; + restoreshopitem ClothoLiquor, 50; + restoreshopitem LachesisBrew, 30; + restoreshopitem AtroposMixture, 10; + restoreshopitem ElixirOfLife, 2; + restoreshopitem PiouEgg, 25; + end; +} |