diff options
author | Wombat <hpwombat@yahoo.com> | 2010-08-20 00:14:57 -0400 |
---|---|---|
committer | Wombat <hpwombat@yahoo.com> | 2010-08-20 00:23:03 -0400 |
commit | 48e0520681a38716d69ea1be0b831f0c71f826fc (patch) | |
tree | df617e9a3b0102277ef1b7d86089bb285d8ef80c /npc/001-1_Tulimshar | |
parent | 0b9235d0865509feb9ef97aa197204293cee0b1f (diff) | |
download | classic-serverdata-48e0520681a38716d69ea1be0b831f0c71f826fc.tar.gz classic-serverdata-48e0520681a38716d69ea1be0b831f0c71f826fc.tar.bz2 classic-serverdata-48e0520681a38716d69ea1be0b831f0c71f826fc.tar.xz classic-serverdata-48e0520681a38716d69ea1be0b831f0c71f826fc.zip |
Small fixes in scripts, added new monster mob points
guards.txt now has "aggravate" spell and bernard.txt fix
added new monsters to mob_points.txt
Diffstat (limited to 'npc/001-1_Tulimshar')
-rwxr-xr-x | npc/001-1_Tulimshar/bernard.txt | 6 | ||||
-rw-r--r-- | npc/001-1_Tulimshar/guards.txt | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/npc/001-1_Tulimshar/bernard.txt b/npc/001-1_Tulimshar/bernard.txt index 25aad835..efef3167 100755 --- a/npc/001-1_Tulimshar/bernard.txt +++ b/npc/001-1_Tulimshar/bernard.txt @@ -56,7 +56,7 @@ L_Progress: mes "\"Perfect! It's perfect !"; mes "You brought me my Roasted Maggot! Here, have some cake.\""; getinventorylist; - if ((@inventorylist_count - (countitem("RoastedMMaggot") == 1) > 99 - (countitem("CherryCake") == 0) )) goto L_TooMany; + if (@inventorylist_count - (countitem("RoastedMaggot") == 1) > 99 - (countitem("CherryCake") == 0) ) goto L_TooMany; delitem "RoastedMaggot", 1; getexp 100, 0; getitem "CherryCake", 5; @@ -91,9 +91,9 @@ L_NotEnough1: L_Done1: mes "[Bernard]"; mes "\"Thank you so much !\""; - mes "\"But something is missing to make the soup creamy !\""; + mes "\"But something is missing to make the soup creamy!\""; next; - mes "\"I need 3 [Maggot Slime] for the soup.\""; + mes "\"I need 3 [Maggot Slime]s for the soup.\""; mes "\"Bring me them. I'll give you something if you do.\""; set TMW_Quest,3; close; diff --git a/npc/001-1_Tulimshar/guards.txt b/npc/001-1_Tulimshar/guards.txt index ce7556a7..1cffa515 100644 --- a/npc/001-1_Tulimshar/guards.txt +++ b/npc/001-1_Tulimshar/guards.txt @@ -66,6 +66,9 @@ L_disaster: } 001-1.gat,40,79,0 script Ryan 104,{ + + if (getskilllv(SKILL_MAGIC)) goto L_message; + mes "[Ryan the Town Guard]"; mes "ZzzZzzZ..."; next; @@ -73,4 +76,11 @@ L_disaster: mes "\"Hmmmmmmh...?"; mes "Oh, I wasn't sleeping, I was just resting my eyes!\""; close; + +L_message: + mes "[Ryan the Town Guard]"; + mes "\" Watch out for Black Scorpions. They are extremely dangerous.\""; + next; + mes "\"Whenever one approaches the town gate, Ekinu has me run shouting '" + getspellinvocation("aggravate") + "'. Somehow this distracts it so Ekinu can kill it.\""; + close; } |