0 of 0

File information

Last updated

Original upload

Created by

Tinnaib

Uploaded by

Tinnaib

Virus scan

Safe to use

Tags for this mod

33 comments

  1. frztdmn
    frztdmn
    • member
    • 1 kudos
    This mod is compatible with Next Gen 4.0.4a and works alongside the Florens Economy System mod and its compatibility patch
  2. Yahim0
    Yahim0
    • supporter
    • 8 kudos
    Can confirm it does work on NG.
    It also is compatible with convenient looting but you'll need to manually patch a script... If you don't know how to I can DM mine
  3. hazyclouds777
    hazyclouds777
    • member
    • 0 kudos
    Can someone confirm it works on 4.0.4 ? Cheers
    1. Yahim0
      Yahim0
      • supporter
      • 8 kudos
      It does. Just tried it
  4. vanjavs
    vanjavs
    • premium
    • 7 kudos
    Worked on next-gen version?
    1. ElementaryLewis
      ElementaryLewis
      • premium
      • 658 kudos
      Should be.
  5. Mustang052484
    Mustang052484
    • premium
    • 3 kudos
    Is there any way to properly merge this with Convenient looting? Or some way to get them to work together with most of either mods function?

    EDIT......Ok I just found out YOU made a convenient looting mod as well which is "out of the box" compatible! Love both of the mods and thank you for what you do!
  6. OCRG
    OCRG
    • member
    • 1 kudos
    Hi, I was searching but I didn't find anything related, have you thought about making a simpler, minimal or non-intrusive loot menu mod? A popup menu that doesn't appear covering Geralt... Just a thought
    thanks!
  7. AetherSeraph9
    AetherSeraph9
    • member
    • 5 kudos
    Love this mod, it's extremely useful. Only thing I'd like to see changed, is that the displayed value of the item takes into account changes from mods. I'm using Lore Friendly Economy, and Loot Popup Plus is showing items' vanilla values rather than the actual in-game value. I'd imagine item weight is also affected by this.

    Is Loot Popup maybe looking at vanilla files for those values? Perhaps it can be made to look at the actual items in-game and display those values, if that makes sense?
    1. LegolasGaming
      LegolasGaming
      • supporter
      • 0 kudos
      YES! Was looking for this myself. 
  8. NoksiFromRivia
    NoksiFromRivia
    • member
    • 2 kudos
    It will be possible to do make w3ee support. W3ee also shows lubedo etc, and need a patch to work because of animation mod built in w3ee
    1. Tinnaib
      Tinnaib
      • premium
      • 100 kudos
      w3ee already has its own weight / value looting information. IMO it would not make sense to use my mod with it. It would require a lot of editing in w3ee scripts to remove its own looting information system.
  9. kamikad3e123
    kamikad3e123
    • member
    • 8 kudos
    Compatible with other languages (for example Russian)?
    1. Tinnaib
      Tinnaib
      • premium
      • 100 kudos
      Of course, I did not edit any w3strings for this
  10. jerry18
    jerry18
    • premium
    • 40 kudos
    great idea, I have two suggestions yet:

    1) Could you make a font size (numbers) a little bit larger? (maybe it would be too big and ugly but idk) - it can be another version of the mod?
    2) I would appreciate also a version without weight (for ppl who are using any infinite weight mods like me it is useless there).
        ...and this will help with small text too (=text can be larger while there will be just 2 rows).
    1. Moahofer30
      Moahofer30
      • premium
      • 28 kudos
      +1 for the idea with the bigger font. But I don't see the need for a version without weight icon. That unlimited weight cheat mods shouldn't be used at all in my opinion. No offense to jerry18, just my thoughts. 
    2. Tinnaib
      Tinnaib
      • premium
      • 100 kudos
      Hey thanks!
      1) While creating it I tried different font sizes of course. Bigger font means the numbers are bigger than the icons and that really looked odd. I also tried to make the icons bigger as well, but the result was there was basically no space between the icons anymore. Subjectively of course, I settled for the best compromise.
      2) This could allow a bigger font, I agree. But I only work on stuff I would use myself and I will always need the weight information. I would allow someone else to do such an edit of course, but I have no intention do create it myself. I hope you understand that :)
    3. Paleforce
      Paleforce
      • premium
      • 52 kudos
      Made a fix for the small font issue.
      Did it by slightly enlarging the whole loot popup window.
      Process below if you'd like to do the same:

      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

      Go to the mod's script file:
      "content\scripts\game\gui\popups\LootPopup.ws" within the mod's folder.

      Navigate to this line:

      59:     if (StringToInt(theGame.GetInGameConfigWrapper().GetVarValue('Hud', 'HudSize'), 0) == 0)
      60:     {
      61:          targetSize = 0.85;

      I changed targetSize to 0.87. Made the text clear enough without making the loot box too big for my taste. Save the script and run the game to compile.

      Note: This only edits the loot window size if your HUD is set to "Small" within your settings. If yours is set to "Large", there is another 'targetSize' value a few lines lower in the script:

      67:     else
      68:     {
      69:          targetSize = 1;

      Edit this one to your liking.
    4. jerry18
      jerry18
      • premium
      • 40 kudos
      Nice fix Paleforce - I just changed targetSize on the line 61 to 0.91 yet -> because with 0.87 the small font wasn't fully sharp on my monitor.
      I compared several values: 0.85* (Vanilla) / 0.87 / 0.90 / 0.91* / 0.95* ...(* means text was clear).
      So I recommend to try more values if anyone is not happy with the small font visibility.

      Note: If you set targetSize more then 0.87 (not sure exact value though) you have to adjust line 65 yet (=mouse cursor move up a bit).
      ...otherwise when you open a container with 1 item, the loot isn't highlited = E key isn't working (unless you hover over an item or press arrow)

      65 (VANILLA):                                            theGame.MoveMouseTo(0.4, 0.63);
      65 (edit for 0.91 value on the line 61):     theGame.MoveMouseTo(0.4, 0.6);