Yea the easiest method without building a plugin ( nothing really hook into the payment system at the moment ) is to use the the feature "List Premium Members in your Sidebar"
Its found in the admin settings under the premium tab.
Make it list "1" and order by "random"
Then modify of your theme the files
premium_list.html
premium_list_row.html
to make it look like a premium ranking. Also all the tags you have used in your ranking files are also working in the premium_list_row.html template ( except custom things you added maybe )
The tag which shows this in wrapper.html is {$premium_list}
If you already have it, remove it from where it is currently and place it above {$content}
Additionally, since i guess it should just show on rankings page 1, wrap it with the isfront tag like so
Code:
{isfront}
{$premium_list}
{/isfront}