-
Notifications
You must be signed in to change notification settings - Fork 0
/
epgp-loot.htm
50 lines (40 loc) · 1.77 KB
/
epgp-loot.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>EPGP Loot History</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script type="text/javascript" src="http://static.wowhead.com/widgets/power.js"></script>
<script type="text/javascript" src="js/epgp.js"></script>
<!-- Choose from epgp-dark.css, epgp-light.css or make your own -->
<link type="text/css" href="css/epgp-dark.css" rel="stylesheet" >
<script type="text/javascript">
jQuery(document).ready(function($){
/* Add missing character class (e.g. outside of guild) or even override a character class, as follows:
var fix = [];
fix['Name'] = 'class';
fix['Another Toon'] = 'class2';
or use this format:
var fix = {
'Name' : 'class',
'Another Toon' : 'class2'
};
'Name' should be the exact name you see in the table (include capitals & spaces)
'class' = character class or defined CSS class (so you can add any color)
*/
var fix = {
'Gildenbank' : 'priest'
};
$('#epgploot').epgp({
epgpfile : 'epgp.lua', // epgp.lua file name
guild : 'Wolfpax', // Guild name (include captial letters and any spaces in the name)
startLootHistory : 2, // Loot History - initial number of days to show prior to snapshot
lootOnly : true, // if true, will only display a loot history table
raidTime : 4, // Approximate raid time in hours (substracted from snapshot time to ensure loot drops are included)
fixClass : fix // fix class for toon not in the database (alt in a different guild)
}, {
wowhead : 'de'
});
});
</script>
</head><body>
<div id="epgploot"></div>
</body></html>