Messages - Spy reports - Detailed Loot Column

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • Messages - Spy reports - Detailed Loot Column

      Hi,
      it would be great if the loot Colum were more detailed... i don't like the little popup cause you can't sort for a specific loot.
      Therefore i've changed my local AGO for displaying the M/C/D colums.

      would be nice if these changes are in the next AGO Version.. maybe with a on/off option in the AGO Settings for these people who don't like the detailed colums

      messages.js:
      Line 40 changed

      Source Code

      1. T6:"loot"

      to

      Source Code

      1. T6:"∑"


      Line 41 after

      Source Code

      1. "minimize/maximize table"

      add

      Source Code

      1. ,T29:"M", T30:"C",T31:"D"


      Line 67 after

      Source Code

      1. a).attr("data-value",e.LOOT.s).addClass("tooltip").appendTo(k);

      add

      Source Code

      1. k=$("<td/>").addClass("sh_textRight").appendTo(h);m=AGO.Option.is("M53")?STR.shortNumber(e.LOOT.m,1):STR.formatNumber(e.LOOT.m);$("<span/>").html(m).attr("data-value",e.LOOT.m).appendTo(k);k=$("<td/>").addClass("sh_textRight").appendTo(h);m=AGO.Option.is("M53")?STR.shortNumber(e.LOOT.k,1):STR.formatNumber(e.LOOT.k);$("<span/>").html(m).attr("data-value",e.LOOT.k).appendTo(k);k=$("<td/>").addClass("sh_textRight").appendTo(h);m=AGO.Option.is("M53")?STR.shortNumber(e.LOOT.d,1):STR.formatNumber(e.LOOT.d);
      2. $("<span/>").html(m).attr("data-value",e.LOOT.d).appendTo(k);


      8) thx