Rankings: Difference between revisions
From UO-Phoenix Wikipedia
(Created page with "== Monthly PvM ==") |
|||
Line 1: | Line 1: | ||
== Monthly PvM == | == Monthly PvM == | ||
This ranking tracks player kills of non-player mobiles.<br /> | |||
You can track rankings with command: '''[rankings'''<br /> | |||
Alternatively at MyUOP page [https://uo-phoenix.com/myuop/rankings.php '''HERE''']<br /> | |||
=== Points Forumla === | |||
Points are generally 1 point per kill but get scaled further with higher hits ''(ex: above 100)''.<br /> | |||
Most creature hits can be discovered at the [https://uo-phoenix.com/wiki/index.php/Bestiary '''Phoenix Bestiary'''] | |||
<code> | |||
Points = 1<br /> | |||
if(Hits >= 100) | |||
Points = (Hits ÷ 100 * 5) / 2 | |||
</code> | |||
For example, if the creature has ''280'' hits:<br /> | |||
''280 ÷ 100 * 5 = 14, divide by 2 = 7'' points given.<br /> | |||
End of month rewards the #1 spot with a unique titled item as reward. |
Revision as of 19:40, 14 April 2024
Monthly PvM
This ranking tracks player kills of non-player mobiles.
You can track rankings with command: [rankings
Alternatively at MyUOP page HERE
Points Forumla
Points are generally 1 point per kill but get scaled further with higher hits (ex: above 100).
Most creature hits can be discovered at the Phoenix Bestiary
Points = 1
if(Hits >= 100)
Points = (Hits ÷ 100 * 5) / 2
For example, if the creature has 280 hits:
280 ÷ 100 * 5 = 14, divide by 2 = 7 points given.
End of month rewards the #1 spot with a unique titled item as reward.