diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-11 21:13:02 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-11 21:13:02 +0000 |
commit | 1156c321795325cca5422d527808283d5c5df34c (patch) | |
tree | cd7b6f9547d0df55b9d45474ddfdbc46fb4bdaca /npc | |
parent | 300fe4c16953b34cb8343bfa6098d7ff44678d47 (diff) | |
parent | de8afd9a48f4b6180e30de885d980fb2cf8c7538 (diff) | |
download | serverdata-1156c321795325cca5422d527808283d5c5df34c.tar.gz serverdata-1156c321795325cca5422d527808283d5c5df34c.tar.bz2 serverdata-1156c321795325cca5422d527808283d5c5df34c.tar.xz serverdata-1156c321795325cca5422d527808283d5c5df34c.zip |
Merge branch 'simon' into 'master'
Simon
Closes evol-all#14
See merge request evol/serverdata!177
Diffstat (limited to 'npc')
-rw-r--r-- | npc/008-2-7/shop.txt | 36 | ||||
-rw-r--r-- | npc/008-2-7/simon.txt | 39 |
2 files changed, 75 insertions, 0 deletions
diff --git a/npc/008-2-7/shop.txt b/npc/008-2-7/shop.txt new file mode 100644 index 00000000..30989eb3 --- /dev/null +++ b/npc/008-2-7/shop.txt @@ -0,0 +1,36 @@ +// Evol scripts. +// Authors: +// 4144 +// Micksha +// Reid +// toams +// Description: +// Simons Potion Shop. + +008-2-7,30,26,0 trader #Invisible008-2-7 NPC_HIDDEN,{ + +OnInit: + tradertype(NST_MARKET); + + sellitem SmallHealing, -1, 10; + sellitem MediumHealing, -1, 5; + sellitem SmallMana, -1, 10; + sellitem MediumMana, -1, 5; + sellitem ConcPotion, -1, 3; + sellitem IronPotion, -1, 3; + + .sex = G_OTHER; + .distance = 2; + end; + +OnClock0000: +OnClock0800: +OnClock1600: + restoreshopitem SmallHealing, 10; + restoreshopitem MediumHealing, 5; + restoreshopitem SmallMana, 10; + restoreshopitem MediumMana, 5; + restoreshopitem ConcPotion, 3; + restoreshopitem IronPotion, 3; + end; +} diff --git a/npc/008-2-7/simon.txt b/npc/008-2-7/simon.txt new file mode 100644 index 00000000..1b4ae071 --- /dev/null +++ b/npc/008-2-7/simon.txt @@ -0,0 +1,39 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Simon, Wyaras Apprentice. +// THIS IS A PLACEHOLDER! + +008-2-7,30,26,0 script Simon NPC_SIMON,{ + speech + l("Hi, I am Simon."), + l("I am Wyaras apprentice, helping her with selling her potions."), + l("I would prefer becoming a real Sorcerer one time. *sighs*"); + + switch (select(l("Potions? That sounds useful. What do you have?"), + l("Thats your problem, really."), + l("Becoming a Sorcerer? I want that too!"))) + { + case 1: + closeclientdialog; + shop "#Invisible008-2-7"; + close; + case 2: + speech S_FIRST_BLANK_LINE, + l("Leave me alone."); + close; + case 3: + speech S_FIRST_BLANK_LINE, + l("It needs so much training, but Wyara only leaves me here, standing and selling something instead of teaching me."); + close; + } + + + close; + +OnInit: + .sex = G_MALE; + .distance = 2; + end; +} |