diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-18 09:27:42 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-18 09:27:42 -0300 |
commit | 3722e44b177a130970ad7fd1442fcf8adf792b45 (patch) | |
tree | 8d7892a967c4f32c12cbc4c9cc7a97cfb4693ae9 /npc/functions/hub.txt | |
parent | 46c21cacad23eb59db829d09180e7fc9108b9eef (diff) | |
download | serverdata-3722e44b177a130970ad7fd1442fcf8adf792b45.tar.gz serverdata-3722e44b177a130970ad7fd1442fcf8adf792b45.tar.bz2 serverdata-3722e44b177a130970ad7fd1442fcf8adf792b45.tar.xz serverdata-3722e44b177a130970ad7fd1442fcf8adf792b45.zip |
Use Battle Rating to determine PvP Experience Gain, and also control CoD.
On CoD, you can have up to 10× more BR to get bottled dust loot.
Diffstat (limited to 'npc/functions/hub.txt')
-rw-r--r-- | npc/functions/hub.txt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/npc/functions/hub.txt b/npc/functions/hub.txt index d82f19d6a..8367d9bdf 100644 --- a/npc/functions/hub.txt +++ b/npc/functions/hub.txt @@ -296,6 +296,8 @@ function script HUB_PvP { .@atk=get_BR(getcharid(3)); .@def=get_BR(killedrid); .@honor=calc_HR(getcharid(3), killedrid); + .@bxp=max(readparam(BaseLevel, killedrid), .@def); + .@jxp=readparam(JobLevel, killedrid); .@m$=getmap(); // This is an official PVP Map @@ -328,8 +330,6 @@ function script HUB_PvP { // That is, read total attack, defense, HP, evasion and hit chance // And compare with your own readparam2(), then use a % and a table // based on your (assassin's) level. - .@bxp=readparam(BaseLevel, killedrid); - .@jxp=readparam(JobLevel, killedrid); if (compare(.@m$, "001-8")) { // Quirino Voraz PVP Arena // You get 5 times killed player level, and 1 time job level @@ -345,11 +345,10 @@ function script HUB_PvP { } else if (compare(.@m$, "001-10-1")) { // Call Of Dusty Boss Room // You _may_ get a Bottled Dusty at random, but dead player status affect - .@bagistr=(readparam2(bAgi, killedrid)*2)+readparam2(bDex, killedrid); - //.@b2=readparam(MaxHp, killedrid); - if (.@bagistr > 20) + if (.@def > .@atk/10) { if (rand2(0,250) < readparam2(bLuk)+readparam2(bLuk, killedrid)) getitem BottledDust, any(1,1,2); + } } else { // Anywhere else // You get 0.5 times killed player level, and 0 times job level |