diff options
Diffstat (limited to 'npc/002-1_Sandstorm/nickos.txt')
-rw-r--r-- | npc/002-1_Sandstorm/nickos.txt | 38 |
1 files changed, 25 insertions, 13 deletions
diff --git a/npc/002-1_Sandstorm/nickos.txt b/npc/002-1_Sandstorm/nickos.txt index fb8594ca..a6a12926 100644 --- a/npc/002-1_Sandstorm/nickos.txt +++ b/npc/002-1_Sandstorm/nickos.txt @@ -11,15 +11,25 @@ if (TMW_Quest == 19) goto L_Nickos_Mine; if (TMW_Quest == 18) goto L_Nickos_Orders_Received; if (TMW_Quest == 17) goto L_Nickos_Orders; + if (TMW_Quest < 17) goto L_Nickos_See_Dausen_First; mes "[Nickos]"; mes "\"I'm watching this mine to make sure the monsters don't harm the miners.\""; close; +L_See_Dausen_First: + mes "[Nickos]"; + mes "\"I'm watching this mine to make sure the monsters don't harm the miners.\""; + next; + mes "[Nickos]"; + mes "\"The mines are closed from tourists due to the monster threat. If you want to get in you will need to prove yourself first. Talk to Lieutenant Dausen, my superior, if you want to make a formal complaint.\""; + close; + + L_Nickos_Orders: set TMW_Quest, 18; mes "[Nickos]"; - mes "\"I have to hold my post longer? Argh! I was looking forward to my break. Oh well, thanks for letting me know\""; + mes "\"I have to hold my post longer? Argh! I was looking forward to my break. Oh well, thanks for letting me know.\""; close; L_Nickos_Orders_Received: @@ -29,21 +39,23 @@ L_Nickos_Orders_Received: L_Nickos_Mine: mes "[Nickos]"; - mes "\"I haven't heard from the miners in a while, but I've got to keep to my post unless there is due reason to investigate. Normally the miners take care of themselves without any problem. Could you check on them?\""; + mes "\"I haven't heard from the miners in a while, but I've got to keep to my post unless there is due reason to investigate. Normally the miners take care of themselves without any problem.\""; + next; + mes "[Nickos]"; + mes "\"Could you check on them for me, though?\""; menu - "Yes", L_Nickos_Mine_Open, - "No", L_Nickos_Disappoint; + "Yes.", L_Nickos_Mine_Open, + "No.", L_Nickos_Disappoint; close; L_Nickos_Disappoint: - mes "[Nickos]"; - mes "\"I am disappointed.\""; + mes "Nickos looks disappointed."; close; L_Nickos_Mine_Open: set TMW_Quest, 20; mes "[Nickos]"; - mes "\" Excellent! You now have my permission to enter the mine. Your assistance helps ease my worries.\""; + mes "\"Excellent! You now have my permission to enter the mine. Your assistance helps ease my worries.\""; close; L_Nickos_Waits: @@ -55,7 +67,7 @@ L_Nickos_Check_Happy: set TMW_Quest, 23; set zeny, zeny + 500; mes "[Nickos]"; - mes "\"Oh, everything is okay? That's great. I think they are pretty busy and could use some help. Feel free to give them a hand. Here's some gold for your troubles.\""; + mes "\"Oh, everything is okay? That's great! I think they are pretty busy and could use some help. Feel free to give them a hand. Here's some gold for your troubles.\""; close; L_Nickos_Guards: @@ -68,25 +80,25 @@ L_Nickos_Guards: L_Nickos_AS_Start: set TMW_Quest, 31; mes "[Nickos]"; - mes "\"Oh, the angry scorpions are becoming a problem? We could thin down their numbers a bit. Of course, I'll need something to show your work. Bring me 10 angry scorpion stingers and I'll know their numbers are down. You will be rewarded for your efforts.\""; + mes "\"Oh, the angry scorpions are becoming a problem? We could thin down their numbers a bit. I can make it worth your time, but of course, I'll need something to show your work. Bring me 10 [Angry Scorpion Stinger]s to demonstrate your effectiveness, and you will be rewarded for your efforts.\""; close; L_Nickos_AS_Done: if (countitem ("AngryScorpionStinger") < 10) goto L_Nickos_AS_NotDone; getinventorylist; - if (@inventorylist_count - (countitem("AngryScorpionStiner") == 10) > 99) goto L_Nickos_TooMany; + if (@inventorylist_count - (countitem("AngryScorpionStinger") == 10) > 99) goto L_Nickos_TooMany; set TMW_Quest, 32; delitem "AngryScorpionStinger", 10; getitem "LeatherShield", 1; mes "[Nickos]"; - mes "\"Ah, you are a fine combatant! Take this leather shield, it might be useful for your future battles.\""; + mes "\"Ah, you are a fine combatant! Take this [Leather Shield], it might be useful for your future battles.\""; next; mes "\"You might be ready to take on the underground palace. If you are interested, go talk to Naem about unlocking the barrier, he's got the key and the code to open it.\""; close; L_Nickos_AS_NotDone: mes "[Nickos]"; - mes "\"Bring me 10 angry scorpion stingers and I'll know their numbers are down. You will be rewarded for your efforts.\""; + mes "\"Bring me 10 [Angry Scorpion Stinger]s and I'll know their numbers are down. You will be rewarded for your efforts.\""; close; L_Nickos_TooMany: @@ -96,7 +108,7 @@ L_Nickos_TooMany: L_Nickos_UGQ: mes "[Nickos]"; - mes "\"You might be ready to take on the underground palace. If you are interested, talk to the miners about unlocking the barrier, they got the key to open it.\""; + mes "\"You might be ready to take on the underground palace. If you are interested, talk to the miners about unlocking the barrier, they've got the key to open it.\""; close; } |