Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
v1.2 - addon version 5.5.22
  • Loading branch information
Mottie committed Dec 13, 2010
1 parent d95a000 commit 9392cbd
Show file tree
Hide file tree
Showing 8 changed files with 5,311 additions and 31,935 deletions.
Binary file modified README.markdown
Binary file not shown.
17 changes: 13 additions & 4 deletions epgp-loot.htm
Expand Up @@ -16,20 +16,29 @@
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 = [];
fix['Guild Bank'] = 'MAge'; // Unknown class
// fix['Jomage'] = 'rogue'; // over-ride Jomage's class
var fix = {
'Gildenbank' : 'priest'
};

$('#epgploot').epgp({
epgpfile : 'epgp.lua', // epgp.lua file name
guild : 'Fallout', // Guild name (include captial letters and any spaces in the 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'
});

});
Expand Down
9 changes: 7 additions & 2 deletions epgp-standings.htm
Expand Up @@ -7,7 +7,7 @@

<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/jatt.min.js"></script>
<script type="text/javascript" src="js/epgp.min.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" >
Expand All @@ -17,14 +17,19 @@

$('#epgp').epgp({
epgpfile : 'epgp.lua', // epgp.lua file name
guild : 'Fallout', // Guild name (include captial letters and any spaces in the name)
guild : 'Wolfpax', // Guild name (include captial letters and any spaces in the name)
startEpgpHistory : 7, // EPGP Standings History - initial number of days to show prior to snapshot
startLootHistory : 7, // Loot History - initial number of days to show prior to snapshot
addSliders : true, // Add slider to adjust the changes in ep/gp (green & red values) or the loot history popup
maxHistory : 30, // Slider max number of days.
baseGP : '1', // Base GP
minEP : '0', // Minimum EP
decay : '15', // Decay
extras : '100%', // Extras - set here because it's not in the lua
lootIcon : 'images/plus.gif', // Icon to hover over to see a list of recent loot, styled in the css
sort : [3,1] // sort table by 3rd column (PR column, 0 indexed) in descending order (1).
}, {
wowhead : 'de'
});

/* tooltip script - http://github.com/Mottie/Jatt */
Expand Down

0 comments on commit 9392cbd

Please sign in to comment.