Skip to content

Instantly share code, notes, and snippets.

@narthollis
Created August 2, 2014 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save narthollis/ca363a8854f54bebfd59 to your computer and use it in GitHub Desktop.
Save narthollis/ca363a8854f54bebfd59 to your computer and use it in GitHub Desktop.
EVEthing Dynamic Homepage - Debugging per-character suppression
for (var i in EVEthing.home.CHARACTERS) {
if(!EVEthing.home.CHARACTERS.hasOwnProperty(i)) { continue; }
console.log(
JSON.stringify([
EVEthing.home.CHARACTERS[i]['character']['name'],
{
'Suppress Skill Queue':
EVEthing.home.CHARACTERS[i]['character']['config']['home_suppress_empty_skill_queue']
},
{
'Suppress Implants':
EVEthing.home.CHARACTERS[i]['character']['config']['home_suppress_implants']
},
{
'Suppress Low Game Time':
EVEthing.home.CHARACTERS[i]['character']['config']['home_suppress_low_game_time']
},
{
'Suppress Low Skill Queue':
EVEthing.home.CHARACTERS[i]['character']['config']['home_suppress_low_skill_queue']
},
{
'Suppress No Game Time':
EVEthing.home.CHARACTERS[i]['character']['config']['home_suppress_no_game_time']
}
])
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment