0 of 0

File information

Last updated

Original upload

Created by

Captain12

Uploaded by

Captain12

Virus scan

Safe to use

66 comments

  1. Captain12
    Captain12
    • premium
    • 80 kudos
    Locked
    Sticky
    Notice: This mod should still work on game Update 2.0. We'll have to wait for Cyber Engine Tweaks to update.

    It should work with all game version to come.
  2. iarna
    iarna
    • premium
    • 16 kudos
    In my experience, this mod can trigger negative infinity eddies results for instances that don't typically actually pay at all. It's a bit tricky to test as most actions don't trigger it, but it happens often enough to regularly wipe your eddies. I only was able to identify this mod as a culprit (and it's harder to be certain that it's not a mod interaction), because I happened to save just before it happened, so I could do the binary-search "disable half your mods, is it still broken?, disable another half, etc."
    1. Empyrrean
      Empyrrean
      • premium
      • 0 kudos
      It's most likely conflicting with another mod that affects eurodollar mission/NCPD/gig rewards in some way. In my case I didn't need to choose which mod to keep enabled because I was to make edits to "Black Chrome - Cyberware Expansion" to make it compatible with this mod thanks to someone else on the "Economy of 2077" Nexus page posting a solution.
    2. iarna
      iarna
      • premium
      • 16 kudos
      This mod is simple enough (It's a one paragraph script) that other mods can't directly conflict with it, but it sure does seem like it must be making assumptions about the tweakdb that are being proved to be wrong. In order to produce an overflow (and it subtracting 2 billlion+ from your cash when you complete an activity points strongly at that) some value that it's multiplying by 2 is already over 1 billlion -- which I'm rather skeptical of. So I'm left assuming that it's matching something that it shouldn't be, though what, exactly, is currently unknown. (Honestly, it'd be pretty trivial to add a guard and some logging to find out...)
    3. zombisoda
      zombisoda
      • member
      • 0 kudos
      this happened to me !! i was killing off a bunch of random valentinos and each time it was -2b eddies ... really frustrating
    4. dorkasaurusrex
      dorkasaurusrex
      • premium
      • 5 kudos
      This happened to me. Mod is not Kosher!
    5. ElPasoNoTexas
      ElPasoNoTexas
      • supporter
      • 4 kudos
      Might be incompatible with economy mods
    6. sevenstringserpent
      sevenstringserpent
      • supporter
      • 1 kudos
      I had the same problem. -2147483552 eddies every time I was rewarded with cash from a mission.
      It could be conflicting with the mod Max XP Sharing. I think the problem started when I had both of them installed.
      The problem vanished as soon as I uninstalled this mod. And I'm not keeping it, as it hasn't been updated in almost 3 years. 
    7. AceOveKings
      AceOveKings
      • premium
      • 0 kudos
      dude I thought it was just me, really annoying trying to figure out what the problem was. I use Simple XP Multiplier so maybe there's a conflict too? Either way I'm gonna get uninstall this mod.
    8. iarna
      iarna
      • premium
      • 16 kudos
      I have a patched version that looks like its working, but unfortunately the author used restrictive permissions for some unfathomable reason, so I can't share it. If they ever show back up, I'd be happy to let them post it.

      Edit: Testing this more with guards just resulted in capping the money at whatever the maximum amount I set. The wild thing about that is I just had it not do anything if it got an overflow -- that is, it doesn't even attempt to update the value in that case. I'm suspicious that it's triggering something relative to your overall wealth, but who knows.
  3. moddel
    moddel
    • member
    • 7 kudos
    Is this still working in 2.13?
    1. Captain12
      Captain12
      • premium
      • 80 kudos
      Yes
  4. jjaagg
    jjaagg
    • member
    • 0 kudos
    i never liked how in game a person can kill like 17 ppl and their bounty is only $270
  5. Nickorr
    Nickorr
    • member
    • 0 kudos
    2.12a - work just fine
    1. jjaagg
      jjaagg
      • member
      • 0 kudos
      well hot diddy dog
  6. SilverArias
    SilverArias
    • member
    • 0 kudos
    Не работает
  7. FacelessV1
    FacelessV1
    • member
    • 3 kudos
    doesnt seem to work on 2.12a, im trying to 5x the rewards but it doesnt actually do that

    Edit: nvm it works perfectly
  8. Tovleman
    Tovleman
    • supporter
    • 0 kudos
    Somehow no longer works, can anyone else confirm?
    1. TheDailyXPerience
      TheDailyXPerience
      • premium
      • 26 kudos
      Not sure, but let me know if anyone finds a fix for this.
    2. Radu9666
      Radu9666
      • supporter
      • 0 kudos
      Not working for me as well.
    3. Captain12
      Captain12
      • premium
      • 80 kudos
      Just tested it out, still working as of December 23
  9. RebornZA
    RebornZA
    • member
    • 12 kudos
    Thanks for this! Tweaked to halve my rewards! <3 Love.
  10. Cypher40000
    Cypher40000
    • member
    • 0 kudos
    Can confirm it still works with v2.0.

    UPDATE: It works for actual quest rewards, but the multiplier on access point hacks seems to be gone. Any chance the mod author might look into this? Thanks :-).
  11. tielebras
    tielebras
    • premium
    • 29 kudos
    Thx it work really well on 1.63+
    Very usefull if you want to change your buying power
    The mod also affect hacking rewards

    Open .lua With notepad++
    .lua must be like this :

    -- f*#@ this took me a while to figure out and do

    registerForEvent("onInit", function()
    for _, currencyReward in pairs(TweakDB:GetRecords("gamedataCurrencyReward_Record")) do
    if currencyReward:Currency():GetID() == TweakDBID.new("Items.money") then
    local quantityModifier = TweakDB:GetFlat(currencyReward:GetID() .. ".quantityModifiers")
    if quantityModifier ~= nil and type(quantityModifier) == "table" then
    for _, tweakdb in pairs(quantityModifier) do
    if TweakDB:GetFlat(tweakdb .. ".value") ~= nil then
    TweakDB:SetFlat(tweakdb .. ".value", TweakDB:GetFlat(tweakdb .. ".value") * 2)
    end
    end
    end
    end
    end
    end)

    Just change this line to ur liking :

    TweakDB:SetFlat(tweakdb .. ".value", TweakDB:GetFlat(tweakdb .. ".value") * 10)