diff options
-rw-r--r-- | npc/009-2/ryan.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/009-2/ryan.txt b/npc/009-2/ryan.txt index eb5a1eca6..0ddfe3afc 100644 --- a/npc/009-2/ryan.txt +++ b/npc/009-2/ryan.txt @@ -6,6 +6,7 @@ // Buys Tonori Delight 009-2,29,57,0 script Ryan NPC_PLAYER,{ + if (BaseLevel < 17) goto L_Weak; .@q=getq(HalinarzoQuest_LifeDelight); .@a=(.@q**2)+20; // Maximum: 10'020 Delights @@ -61,6 +62,11 @@ L_Complete: mesq l("Thanks for the help! Yummy!"); close; +L_Weak: + mesn; + mesq l("How did you even got here? There are dangerous swamps north, and dangerous deserts south..."); + close; + OnInit: .@npcId = getnpcid(0, .name$); setunitdata(.@npcId, UDT_HEADTOP, ChefHat); |