View Single Post
03-17-20, 03:50 PM   #9
ivanicus
A Kobold Labourer
Join Date: Jul 2009
Posts: 1
Originally Posted by SDPhantom View Post
It appears to go up 2 ilvls every rank, so this should work:
Code:
function GetCloakRank(itemlink)
	local current,_,base=GetDetailedItemLevelInfo(itemlink);
	return (current-base)/2+1;
end
Sadly this is not the case anymore. New level went up by 4, up to 500. Source: https://www.wowhead.com/news=311672/...-now-available

Perhaps the best we can do is a hardcoded map of level->rank then?
  Reply With Quote