summaryrefslogtreecommitdiff
path: root/npc/001-1/aidan.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/001-1/aidan.txt')
-rw-r--r--npc/001-1/aidan.txt83
1 files changed, 26 insertions, 57 deletions
diff --git a/npc/001-1/aidan.txt b/npc/001-1/aidan.txt
index 3f736b02..a4a0ea53 100644
--- a/npc/001-1/aidan.txt
+++ b/npc/001-1/aidan.txt
@@ -1,66 +1,35 @@
// TMW-2 Script
// Author: Crazyfefe, Jesusalva
-// Desc: Originally a Tmw script
+// Desc: Originally a Tmw script. See also: npc/functions/mobpoint.txt
001-1,123,85,0 script Aidan NPC_PLAYER,{
+ mesn l("Aidan, the Monster Guide");
+ if (#MAX_MPP)
+ mesq l("You currently have @@ Mob Points. Thus far you have collected @@/@@ Mob Points.", #Mobpt, #MPQUEST, #MAX_MPP);
+ else
+ mesq l("Players from the old server can port their accounts on our website and start collecting Monster Points.");
+ select
+ l("Information"),
+ menuaction(l("Quit"));
- function Register
- {
- mesn l("Aidan, the Monster Guide");
- mesq l("Oh my, you don't seem to be registered as a Monster Hunting Quest Participant. Would you like to register?");
-
- do
- {
- select
- l("Register"),
- l("Not at the moment"),
- l("Information");
-
- switch (@menu)
- {
- case 1:
- mes "";
- MPQUEST=1;
- mesn l("Aidan, the Monster Guide");
- mesq l("Give me a second to look over your paperwork.");
- next;
- mesn l("Aidan, the Monster Guide");
- mes l("\"Well, looks like you qualify!");
- mes l("Welcome to the questing world!\"");
- close;
- break;
- case 2:
- mes "";
- mesn l("Aidan, the Monster Guide");
- mesq l("Very well, you don't know what you're missing.");
- close;
- break;
- case 3:
- mes "";
- mesn l("Aidan, the Monster Guide");
- mesq l("Monsters have been running rampant. If they grow too much in numbers, cities may be overrun.");
- next;
- mesn l("Aidan, the Monster Guide");
- mesq l("Therefore, the Legion created a system so when you kill a monster, depending on its strength, you'll get Monster Points.");
- next;
- mesn l("Aidan, the Monster Guide");
- mesq l("You can then exchange those points for awesome items!");
- next;
- mesn l("Aidan, the Monster Guide");
- mesq l("So whaddaya say, sign up won't you?");
- next;
- mes "";
- Register;
- break;
- }
- } while (@menu != 2);
- }
-
- if (MPQUEST == 0)
- Register;
+ if (@menu == 2)
+ close;
- mesn l("Aidan, the Monster Guide");
- mesq l("You currently have @@ Monster Points. These points are acquired while killing monsters.", Mobpt);
+ mes "";
+ mesn;
+ mesq l("This world existed on a different place and with a different place a few eternities ago.");
+ next;
+ mesn;
+ mesq l("It so happens, some people among us are reincarnations from people who were on that previous world!");
+ next;
+ mesn;
+ mesq l("This means when they kill monsters, they get some weird Mob Points.");
+ next;
+ mesn;
+ mesq l("Nobody knows for sure what a Mob Point is, but Ishi can make some nice stuff from it.");
+ next;
+ mesn;
+ mesq l("Also, they can only collect as much Mob Points according to their past appearance strength.");
close;
OnInit: