diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-17 21:00:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-17 21:00:42 -0300 |
commit | 67e9237d25bc0967ce161151bd603077a5386e1f (patch) | |
tree | f5b618066fb902e8f52f0dfb604ad40aacd79400 /npc | |
parent | d696f543baa0d7bae01e7d327e6bd16d40eecf4a (diff) | |
download | serverdata-67e9237d25bc0967ce161151bd603077a5386e1f.tar.gz serverdata-67e9237d25bc0967ce161151bd603077a5386e1f.tar.bz2 serverdata-67e9237d25bc0967ce161151bd603077a5386e1f.tar.xz serverdata-67e9237d25bc0967ce161151bd603077a5386e1f.zip |
Level Cap +10 (global)
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/honor.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/npc/functions/honor.txt b/npc/functions/honor.txt index 1606d6a10..6fdc86e67 100644 --- a/npc/functions/honor.txt +++ b/npc/functions/honor.txt @@ -68,6 +68,7 @@ function script calc_HR { .@overpower=.@atk-.@def; // Dishonorable: You used 15 levels above target, or target < level 30 + // TODO: Fixed honor points (eg. honorable = 10 points, dishonorable = -5) if (.@overpower > 15 || .@def < 30) { .@honor=-(BaseLevel/4); } else { |