diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 20:58:27 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-05 20:58:27 +0000 |
commit | 30899d3e29a02162c8ece5e0fca0fd05fcd10be1 (patch) | |
tree | c0580c2101c51597bcfdbd546ff54cc52fc61fc4 /conf-tmpl | |
parent | 7dca4f40ec19769deb05f315d4e35417cea06a19 (diff) | |
download | hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.tar.gz hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.tar.bz2 hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.tar.xz hercules-30899d3e29a02162c8ece5e0fca0fd05fcd10be1.zip |
- Removed setting mob_show_hp, it's been replaced now by mob_show_info, which can be used to specify what kind of info should be displayed from a mob. Current options are two different formats for Hp display, and current level.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8644 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf-tmpl')
-rw-r--r-- | conf-tmpl/Changelog.txt | 5 | ||||
-rw-r--r-- | conf-tmpl/battle/monster.conf | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/conf-tmpl/Changelog.txt b/conf-tmpl/Changelog.txt index 09fea0dca..6206fb918 100644 --- a/conf-tmpl/Changelog.txt +++ b/conf-tmpl/Changelog.txt @@ -1,5 +1,10 @@ Date Added
+2006/09/05
+ * Removed setting mob_show_hp, it's been replaced now by mob_show_info,
+ which can be used to specify what kind of info should be displayed from a
+ mob. Current options are two different formats for Hp display, and current
+ level (monster.conf). [Skotlex]
2006/08/31
* Added setting attack_walk_delay which specifies whether a character
should (or not) be able to move inmediately after starting a normal attack
diff --git a/conf-tmpl/battle/monster.conf b/conf-tmpl/battle/monster.conf index 80a39d2e1..a908b5c02 100644 --- a/conf-tmpl/battle/monster.conf +++ b/conf-tmpl/battle/monster.conf @@ -150,9 +150,12 @@ mob_changetarget_byskill: no // If monster's class is changed will it fully recover HP and SP and Ailments? (Note 1)
monster_class_change_full_recover: no
-// Will display a mob's hp/maxhp when the mouse cursor is over them. (Note 1)
-// Will not display guardian or emperium hp.
-show_mob_hp: no
+// Display some mob info next to their name? (add as needed)
+// (does not works on guardian or emperium)
+// 1: Display mob HP (Hp/MaxHp format)
+// 2: Display mob HP (Percent of full life format)
+// 4: Display mob's level
+show_mob_info: 0
// Zeny from mobs
zeny_from_mobs: no
|