summaryrefslogtreecommitdiff
path: root/npc/001-1/aidan.txt
diff options
context:
space:
mode:
authorSaulc <lucashelaine14@gmail.com>2018-03-09 18:34:59 +0100
committerSaulc <lucashelaine14@gmail.com>2018-03-09 18:35:12 +0100
commit4ca8ef0c4a42198a3a34f40ccf7740edbff5c8f8 (patch)
treea2ff068ed2a46e3bd4dda9357e26cc996645a981 /npc/001-1/aidan.txt
parent5c41a121d6ea6ced4212fa05a9ecfc0032830d6e (diff)
downloadserverdata-4ca8ef0c4a42198a3a34f40ccf7740edbff5c8f8.tar.gz
serverdata-4ca8ef0c4a42198a3a34f40ccf7740edbff5c8f8.tar.bz2
serverdata-4ca8ef0c4a42198a3a34f40ccf7740edbff5c8f8.tar.xz
serverdata-4ca8ef0c4a42198a3a34f40ccf7740edbff5c8f8.zip
do some fix
Diffstat (limited to 'npc/001-1/aidan.txt')
-rw-r--r--npc/001-1/aidan.txt56
1 files changed, 56 insertions, 0 deletions
diff --git a/npc/001-1/aidan.txt b/npc/001-1/aidan.txt
new file mode 100644
index 000000000..a8326c219
--- /dev/null
+++ b/npc/001-1/aidan.txt
@@ -0,0 +1,56 @@
+// Tmw script, updated by Crazyfefe
+
+001-1,88,117,0 script aidan NPC_PLAYER,{
+
+ function Register
+ {
+ mes "[Aidan the Monster Guide]";
+ mes "Oh my, you don't seem to be registered as a Quest Participant. Would you like to register?";
+ next;
+
+ do
+ {
+ select
+ l("Register"),
+ l("Not at the moment"),
+ l("Information");
+
+ switch (@menu)
+ {
+ case 1:
+ mes "[Aidan the Monster Guide]";
+ mes "Give me a second to look over your paperwork.";
+ next;
+ mes "[Monster Guide]";
+ mes "Well, looks like you qualify!";
+ mes "Welcome to the questing world!";
+ setq MPQUEST,1;
+ close;
+ break;
+ case 2:
+ mes "[Aidan the Monster Guide]";
+ mes "Very well, you don't know what you're missing.";
+ close;
+ break;
+ case 3:
+ mes "[Aidan the Monster Guide]";
+ mes "Here in The Mana World, there are certain rewards for your vanquishing of foes.";
+ mes "For example, there are Monster Points; every monster you kill has a certain amount of points that get added to your account.";
+ mes "The more points you have, the more expensive things you can buy using them.";
+ next;
+ mes "[Monster Guide]";
+ mes "So whaddaya say, sign up won't you?";
+ next;
+ Register;
+ break;
+ }
+ } while (@menu != 3);
+ }
+
+ if (getq(MPQUEST) == 0)
+ goto Register;
+ set Mobpt, Mobpt + 10000;
+ mes "[Aidan the Monster Guide]";
+ mes "You currently have " +Mobpt+ " Monster Points. These points are acquired while killing monsters";
+ close;
+} \ No newline at end of file