diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-29 18:41:16 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-29 18:41:16 -0300 |
commit | 0703edf8690abed1a8aa7fb5cc6e738dda4b519d (patch) | |
tree | 8efd3b5027fd98d5b1c283e48c0d3c721830777b | |
parent | 0bd563f7101f41cd72e253f043b3d1ae72a2c55e (diff) | |
download | serverdata-0703edf8690abed1a8aa7fb5cc6e738dda4b519d.tar.gz serverdata-0703edf8690abed1a8aa7fb5cc6e738dda4b519d.tar.bz2 serverdata-0703edf8690abed1a8aa7fb5cc6e738dda4b519d.tar.xz serverdata-0703edf8690abed1a8aa7fb5cc6e738dda4b519d.zip |
Min Level 17 for Ryan Quest
-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); |