QUOTE(Colman @ Sep 4 2014, 00:35)

From your data base, I roughly know PL6xx monsters are almost completely non-existing now. Only PL800+ have a chance to show in the battle. The chance for PL900 is still very small. PL1000+ is a must for frequency battle.
QUOTE(gc00018 @ Sep 4 2014, 09:42)

I think it is because:
The limit of one player one mob in one battle largely encouraged people raises high PL & high chaos monsters not spam mob around 500-800.
Now, monster are much more cooler! (IMG:[
invalid]
style_emoticons/default/laugh.gif)
SELECT t.range AS `range`, SUM(t.seen) AS `occurrences`
FROM (
SELECT a.seen,
CASE WHEN b.plvl >= 600 AND b.plvl< 700 THEN '600-699'
WHEN b.plvl >= 700 AND b.plvl< 800 THEN '700-799'
WHEN b.plvl >= 800 AND b.plvl< 900 THEN '800-899'
WHEN b.plvl >= 900 AND b.plvl< 1000 THEN '900-999'
WHEN b.plvl >= 1000 AND b.plvl< 1100 THEN '1000-1099'
WHEN b.plvl >= 1100 AND b.plvl< 1200 THEN '1100-1199'
ELSE '1200+' END AS `range`
FROM `hvmonsterlist_count` AS a
INNER JOIN hvmonsterlist AS b ON a.monsterid = b.monsterid
WHERE a.difficulty = 0 AND a.player_level >= 475
) t
GROUP BY t.range
"range" "occurrences"
"600-699" "4"
"700-799" "726"
"800-899" "2593"
"900-999" "4468"
"1000-1099" "12383"
"1100-1199" "2537"
"1200+" "15925"
So, these are all the monsters i've faced since being lvl 475 while playing on PFUDOR.
This post has been edited by jenga201: Sep 4 2014, 17:36