diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-27 22:48:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-27 22:48:57 -0300 |
commit | b429683b44ab33590383d7f0f6f05c5ed85e9480 (patch) | |
tree | 7e0f0dfbdb12f19331ee3af6635c81a73477f775 /npc | |
parent | 2d6eddfb156312fe84bd5abb8e95c063ea385b03 (diff) | |
download | serverdata-b429683b44ab33590383d7f0f6f05c5ed85e9480.tar.gz serverdata-b429683b44ab33590383d7f0f6f05c5ed85e9480.tar.bz2 serverdata-b429683b44ab33590383d7f0f6f05c5ed85e9480.tar.xz serverdata-b429683b44ab33590383d7f0f6f05c5ed85e9480.zip |
Ok, this is better than MASS_PROVOKE but doesn't works either
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/jakod.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/003-1/jakod.txt b/npc/003-1/jakod.txt index 5b8c334ec..6e03a2407 100644 --- a/npc/003-1/jakod.txt +++ b/npc/003-1/jakod.txt @@ -19,9 +19,9 @@ menu rif(!MAGIC_LVL, l("How do I get magic?")), L_HowTo, - rif(MAGIC_LVL >= 1 && !getskilllv(EVOL_MASS_PROVOKE), l("Can you teach me a basic tier 1 magic skill?")), L_Provoke, - //rif(MAGIC_LVL >= 2 && !getskilllv(NV_FIRSTAID), - //rif(MAGIC_LVL >= 3 && !getskilllv(AL_TELEPORT), + rif(MAGIC_LVL >= 1 && !getskilllv(NV_FIRSTAID), l("Can you teach me a basic tier 1 magic skill?")), L_Tier1, + //rif(MAGIC_LVL >= 2 && !getskilllv(EVOL_MASS_PROVOKE), + //rif(MAGIC_LVL >= 3 && !getskilllv(AL_TELEPORT), l("Good bye."), -; close; @@ -48,16 +48,16 @@ L_HowTo: mesq l("Because in the end, you are in the hands of your class leader!"); // Rare: Some loner NPCs may grant you EXTRA skills beyond that. close; -L_Provoke: +L_Tier1: mesn; - mesq l("Yeah, of course. I will teach you a skill to provoke various enemies around you."); + mesq l("Yeah, of course. I will teach you how to give first aid to people."); next; mesn; - mesq l("Totally useless skill, unless your friend is badly hurt and need to heal in peace."); + mesq l("It takes a lot of mana, and is not very powerful, but it is a must have for everyone."); next; mesn; mesq l("Ah... I am too lazy to ask for anything in exchange. Here. Take it. Free."); - skill(EVOL_MASS_PROVOKE,1,0); + skill(NV_FIRSTAID,1,0); close; OnInit: |