summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/posture_fix_hat.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/quests/newgears/posture_fix_hat.txt')
-rw-r--r--npc/quests/newgears/posture_fix_hat.txt65
1 files changed, 36 insertions, 29 deletions
diff --git a/npc/quests/newgears/posture_fix_hat.txt b/npc/quests/newgears/posture_fix_hat.txt
index 91d04f7f2..7c77edee6 100644
--- a/npc/quests/newgears/posture_fix_hat.txt
+++ b/npc/quests/newgears/posture_fix_hat.txt
@@ -4,58 +4,65 @@
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
-//= Seperate Posture Fix Hat quest.
+//= Campus Hat (Posture Fix Hat) quest.
//===== Additional Comments: =================================
-//=
+//= 1.2 Fixed wrong labels, added missing text
+//= fixed wrong items ID [Lupus]
//============================================================
pay_in01.gat,171,142,5 script Nan Hyang 814,{
- If (getequipisequiped(5073)) GOTO GOOD;
- If (Class == 0) GOTO EXT;
+ If (getequipisequiped(5073)) GOTO L_GOOD;
+ If (Class == 0) GOTO L_NOVICE;
mes "[Nan Hyang]";
mes "Tut tut! you have terrible posture!";
mes "You need to correct it immediately!";
- next;
+ next;
mes "[Nan Hyang]";
- mes "I could correct it for you If you brought me";
- mes "some materials to make you a posture aid.";
- next;
- menu "Can you please make me the aid.",-,"What do I need to bring?",AIT,"No thanks!",EXT;
- If ((Countitem(1550) <1) || (Countitem(2285) < 1 )) GOTO A_NM;
+ mes "I could correct it for you If you brought me some materials to make you a Campus Hat.";
+ next;
+ menu "Make me a Campus Hat.",-,"What do I need to get?",M_REQ,"No thanks!",M_EXIT;
+
+ If ((countitem(1550) <1) || (countitem(2285) < 1 )) GOTO L_NOITEM;//Items: Book, Apple o' Archer,
mes "[Nan Hyang]";
mes "Ahh at last, someone who is serious!";
- next;
- delitem 1550,1;
- delitem 2885,1;
- getitem 5073,1;
+ next;
+ delitem 1550,1;//Items: Book,
+ delitem 2285,1;//Items: Apple o' Archer,
+ getitem 5073,1;//Items: Campus Hat,
mes "[Nan Hyang]";
- mes "Hehe, well, maybe you will become more careful, or your sense will";
- mes "become balanced.";
- close;
-AIT:
+ mes "Hehe, well, maybe you will become more careful, or your sense will become balanced.";
+ close;
+
+M_REQ:
mes "[Nan Hyang]";
mes "What I require is very simple...";
- next;
+ next;
mes "[Nan Hyang]";
mes "1 Book.";
mes "And 1 Apple o' Archer to balance on it.";
- close;
-A_NM:
+ close;
+
+L_NOITEM:
mes "[Nan Hyang]";
mes "At least be serious, you dont have enough items!";
mes "Come back when you wish to learn posture.";
- close;
-GOOD:
+ close;
+
+L_GOOD:
mes "[Nan Hyang]";
mes "Ah, that's it! good to see you are willing to learn!";
- close;
-EXIT:
- next;
+ close;
+
+L_NOVICE:
+ mes "Hi! Could you visit me next week?";
+ next;
+
+M_EXIT:
mes "[Nan Hyang]";
mes "Good day to you.";
- close;
-} \ No newline at end of file
+ close;
+}