diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0/colin.txt | 2 | ||||
-rw-r--r-- | npc/003-0/luca.txt | 2 | ||||
-rw-r--r-- | npc/003-0/saves.txt | 2 | ||||
-rw-r--r-- | npc/003-0/trickmaster.txt | 2 | ||||
-rw-r--r-- | npc/items/books.txt | 3 |
5 files changed, 6 insertions, 5 deletions
diff --git a/npc/003-0/colin.txt b/npc/003-0/colin.txt index 928e2e82e..7d8bbf77b 100644 --- a/npc/003-0/colin.txt +++ b/npc/003-0/colin.txt @@ -12,7 +12,7 @@ next; mesn; do { - mesc l("You have @@/@@ magic skill points available.", sk_points(), sk_maxpoints()); + mesc l("You have @@ magic skill points available.", sk_points()); next; mesc l("Fireball - Basic AoE (Area Of Effect) Skill"); mesc l("Holy Light - Standard Holy Magical Attack"); diff --git a/npc/003-0/luca.txt b/npc/003-0/luca.txt index 5abb1ee39..b5a271f52 100644 --- a/npc/003-0/luca.txt +++ b/npc/003-0/luca.txt @@ -12,7 +12,7 @@ next; mesn; do { - mesc l("You have @@/@@ magic skill points available.", sk_points(), sk_maxpoints()); + mesc l("You have @@ magic skill points available.", sk_points()); next; mesc l("Falkon Punch - Bash your weapon against your enemies with raised damage and accuracy."); mesc l("Supreme Attack - Cause a very strong attack with lowered accuracy."); diff --git a/npc/003-0/saves.txt b/npc/003-0/saves.txt index b6ea823be..f28fb44bb 100644 --- a/npc/003-0/saves.txt +++ b/npc/003-0/saves.txt @@ -11,7 +11,7 @@ next; mesn; do { - mesc l("You have @@/@@ magic skill points available.", sk_points(), sk_maxpoints()); + mesc l("You have @@ magic skill points available.", sk_points()); next; mesc l("Healing - The most basic healing skill, requires no items to use."); mesc l("Mana Wisdom - Passive - Raise Mana EXP Gain rate"); diff --git a/npc/003-0/trickmaster.txt b/npc/003-0/trickmaster.txt index 972ef6d48..8a51c2c58 100644 --- a/npc/003-0/trickmaster.txt +++ b/npc/003-0/trickmaster.txt @@ -10,7 +10,7 @@ mesc l("Specialized in miscellaneous skills."); next; mesn; - mesc l("You have @@/@@ magic skill points available.", sk_points(), sk_maxpoints()); + mesc l("You have @@ magic skill points available.", sk_points()); mesc l("Trickster uses an experimental window, you might need to resize it to see all skills."); do { next; diff --git a/npc/items/books.txt b/npc/items/books.txt index b39120e2a..176af98e1 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -258,7 +258,8 @@ OnInit: if (MAGIC_SUBCLASS & CL_PRIEST) mesc lg("Priest"); */ - mesc l("DEPRECATED"); + mesc l("You have @@/@@ magic skill points available.", b(sk_points()), sk_maxpoints()); + mesc l("Currently, there is no way to reset them. So use them wisely!"); next; break; case 4: |