diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-04 12:27:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-04 12:27:36 -0300 |
commit | 0d5aea7a6d8cfdc32db34673f92945e4dcbae291 (patch) | |
tree | 3a04eabf8a295e10e4a332d135ade565f7b885d6 /npc/functions/honor.txt | |
parent | b5e37e3f33df9068127d8dd5c3e557a71dbc23d2 (diff) | |
download | serverdata-0d5aea7a6d8cfdc32db34673f92945e4dcbae291.tar.gz serverdata-0d5aea7a6d8cfdc32db34673f92945e4dcbae291.tar.bz2 serverdata-0d5aea7a6d8cfdc32db34673f92945e4dcbae291.tar.xz serverdata-0d5aea7a6d8cfdc32db34673f92945e4dcbae291.zip |
Remove some protection, PVP cooldown timers
Diffstat (limited to 'npc/functions/honor.txt')
-rw-r--r-- | npc/functions/honor.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/functions/honor.txt b/npc/functions/honor.txt index 255fafcb9..1606d6a10 100644 --- a/npc/functions/honor.txt +++ b/npc/functions/honor.txt @@ -62,6 +62,7 @@ function script calc_HR { //.@def_br=get_BR(getarg(1)); .@atk=readparam(BaseLevel, getarg(0)); .@def=readparam(BaseLevel, getarg(1)); + .@log=getarg(2, true); // Calculate how much levels you've used above needed .@overpower=.@atk-.@def; @@ -73,6 +74,13 @@ function script calc_HR { .@honor=BaseLevel/4; } + // Log cooldown (30 minutes) + // If cooldown already in effect, do not gain honor. + if (.@log) { + if (.@honor > 0 && PVP_COOLDOWN[.@def] >= gettimetick(2)) + .@honor=0; + PVP_COOLDOWN[.@def]=gettimetick(2)+PVP_WAITTIME; + } return .@honor; } |