summaryrefslogtreecommitdiff
path: root/npc/020-2-20/drabur.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/020-2-20/drabur.txt')
-rw-r--r--npc/020-2-20/drabur.txt54
1 files changed, 0 insertions, 54 deletions
diff --git a/npc/020-2-20/drabur.txt b/npc/020-2-20/drabur.txt
deleted file mode 100644
index 8ebbb979..00000000
--- a/npc/020-2-20/drabur.txt
+++ /dev/null
@@ -1,54 +0,0 @@
-// The Mana World scripts.
-// Author:
-// Micksha
-// Description:
-// Drabur, the baker's salesman.
-// THIS IS A PLACEHOLDER!
-
-020-2-20,47,30,0 script Drabur NPC_GENERAL_STORE,{
- mesn;
- mesq l("Please don't interrupt my work, I am busy.");
- next;
- select
- l("Hi there."),
- l("Do you sell anything here?"),
- l("Could I lodge here?"),
- l("Goodbye.");
- mes "";
- switch (@menu) {
- case 1:
- mesn;
- mesq l("...");
- break;
- case 2:
- mesn;
- mesq l("Sure - take a look.");
- next;
- closeclientdialog;
- shop .name$;
- break;
- case 3:
- mesn;
- mesq l("Sorry, we've booked our only room to a foreigner called Kylian.");
- next;
- mesn;
- mesq l("And we got rid of the extra beds as no one was using them, so we are full at the moment. Come again later.");
- break;
- }
- close;
-
-OnInit:
- .distance = 4;
- tradertype(NST_MARKET);
-
- sellitem BlueberryCake, -1, 1+rand2(10);
- sellitem CarrotCake, -1, 1+rand2(10);
- sellitem Donut, -1, 1+rand2(10);
- end;
-
-OnClock0002:
- restoreshopitem BlueberryCake, rand2(11);
- restoreshopitem CarrotCake, rand2(11);
- restoreshopitem Donut, rand2(11);
- end;
-}