Quote:
K tried a few ways. Can't seem to find what I edit to make this function. I put the above in the template which of course didn't work then I put it in listitems.php which again didn't work

not much of a coder so where do I want to add this ?
OK this goes in your templates/whichevertemplate/page_tail.html right before </body>
<script type="text/javascript" src="http://common.allakhazam.com/shared/zampower.js"></script>
Now edit lastitems/module.php
change all this
$out .= '<tr class="'.$class.'" nowrap onmouseover="this.className=\'rowHover\';" onmouseout="this.className=\''.$class.'\';">'.
"<td>
<a href='{$eqdkp_root_path}viewitem.php?i=". $item['id']."'>".$html->itemstats_item(stripslashes($item['name']),$item['game_itemid'])."</a> <br>".
get_coloredLinkedName($item['looter']).' ('.$item['value'].' DKP)
</td>
to this
$out .= '<tr class="'.$class.'" nowrap ;" ;">'.
"<td>
<a href='http://eq2.zam.com/wiki/EQ2_Item:".rawurlencode($item['name'])."'>".$html->itemstats_item(stripslashes($item['name']))."</a> <br>".
get_coloredLinkedName($item['looter']).' ('.$item['value'].' DKP)
</td>
NOW depending where you have your lastitems module box you may notice flickering because the mouse and the tooltip are ontop of each other. To fix this you would have to download the zampower.js and edit it, just find where the x & y coordinates are and make whatever changes you need (I.E. add +15 to x and -20 to Y or whatever so the tooltip shows further away from the mouse. It's not that hard to find really, but you will have to host the zampower.js on your server, no biggie just change
http://common.allakhazam.com/shared/zampower.js to
http://yourhost.com/whereveryouwant/zampower.js