summaryrefslogtreecommitdiff
path: root/npc/tulimshar/monster_guide.txt
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-12-23 20:45:25 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-12-23 20:45:25 +0000
commit25b83bc96f59f7235bb20257f221e80d4a348f60 (patch)
tree401a77a9dbfd958f51a9d3a6918d7e2ddcee2522 /npc/tulimshar/monster_guide.txt
parentdb19236016d863f942d3b6f6e2c98715214ee947 (diff)
downloadserverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.tar.gz
serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.tar.bz2
serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.tar.xz
serverdata-25b83bc96f59f7235bb20257f221e80d4a348f60.zip
Made some scripts a bit less annoying (like don't offer a bed if the player
doesn't have enough money) and added some information (rewards master tells you your number of monster points). I hope I didn't break anything.
Diffstat (limited to 'npc/tulimshar/monster_guide.txt')
-rw-r--r--npc/tulimshar/monster_guide.txt57
1 files changed, 28 insertions, 29 deletions
diff --git a/npc/tulimshar/monster_guide.txt b/npc/tulimshar/monster_guide.txt
index 002f7d7c..bdc709dd 100644
--- a/npc/tulimshar/monster_guide.txt
+++ b/npc/tulimshar/monster_guide.txt
@@ -1,36 +1,35 @@
new_3-1.gat,46,66,0 script MonsterGuide 102,{
-if(MPQUEST == 0) goto Register;
+ if(MPQUEST == 0) goto Register;
mes "[Monster Guide]";
- mes "You currently have " +Mobpt+ " Monster Points";
- mes "These points are acquired while killing monsters";
+ mes "You currently have " +Mobpt+ " Monster Points. These points are acquired while killing monsters";
close;
Register:
mes "[Monster Guide]";
mes "Oh my, you dont seem to be registered as a Quest Participant, would you like to register?";
- next;
- menu "Register",L_R,"Skip",L_N,"Information",L_I;
- L_R:
- mes "[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!";
- set MPQUEST,1;
- close;
- L_N:
- mes "[Monster Guide]";
- mes "Very well, you dont know what your missing.";
- close;
- L_I:
- mes "[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 whaddya say, sign up wont u?";
- close;
+ next;
+Choice:
+ menu "Register",L_R,"Not at the moment",L_N,"Information",L_I;
+L_R:
+ mes "[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!";
+ set MPQUEST,1;
+ close;
+L_N:
+ mes "[Monster Guide]";
+ mes "Very well, you dont know what your missing.";
+ close;
+L_I:
+ mes "[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 whaddya say, sign up wont u?";
+ next;
+ goto Choice;
}
-
-