top 5-10-15 HK block (formated with name, class, lvl, and kills)
EventCalendar block (with events and when clicked on would go to the designated event in on the Event Calendar mod for WoWRoster.)
I mean techincally you could create blocks for many other of the mods too.... but the above are just the ones that I would like to see for my own site... unfortunatly I am not much of a php coder :/
for those curious about the code used for the latestloot block for IPB:
Source: http://forums.eqdkp.com/lofiversion/ind ... t7297.html
- Code: Select all
<?
include_once('../eqdkp/itemstats/eqdkp_itemstats.php');
$result = mysql_query("SELECT * FROM eqdkp_items ORDER BY item_id DESC LIMIT 0 , 10");
while($r=mysql_fetch_array($result))
{
$item_name=$r["item_name"];
$item_buyer=$r["item_buyer"];
echo itemstats_decorate_name($item_name) . " - $item_buyer<br>";
}
?>
looking at it it seems very simple... now if we could only get ones just as simple for some of the wowroster features and mods