File information

Last updated

Original upload

Created by

DJ_Kovrik

Uploaded by

djkovrik

Virus scan

Safe to use

1543 comments

  1. djkovrik
    djkovrik
    • premium
    • 1,653 kudos
    Locked
    Sticky
    Frequently Asked Questions

    > I installed the mod but get scripts compilation erorrs or it does not work
    1. Make sure that your game was updated to the latest patch
    2. Make sure that all the mod dependencies were updated as well.
    3. Open the latest red4ext-2025- file in Cyberpunk 2077\red4ext\logs folder and make sure that RED4ext version matches the one from nexus. If it does then check that this file does not have any errors as well.
    4. Try to run the game directly with Cyberpunk2077.exe with no redmod involved
    5. Try to delete everything inside Cyberpunk 2077\r6\cache\modded and validate the game files integrity then.
    6. If you are using Vortex then disable REDMod Autoconvert option before installing the mod.
    7. For SteamDeck users: if you have issues then check this page about how to mod the game on Linux

    If it does not work then you can get more help in #mod-troubleshooting channel in Cyberpunk 2077 Modding Discord

    > How to make all color variants available for purchasing?
    Open r6\scripts\VirtualCarDealer\Config.reds with any text editor and replace true with false

    > I accidentally sold a vehicle I need, how to get it back?
    You can use ClearSoldVehicles() console command which resets persisted sold vehicles list.

    > I installed the mod but no offers at this moment message displayed
    You must install vehicle packs as well

    > I installed the mod but do not have Dealer tab
    You probably installed Browser Extension addon so Car Dealer will be available under NET tab

    > I installed the mod and got Page not found error 
    or
    > I installed the mod but don't see Dealer icon
    or
    > I installed the mod but see a tab with empty name or Dealer site with no icon
    Make sure that you have VirtualCarDealer .archive and .xl files installed to Cyberpunk 2077\archive\pc\mod
    (if you are using Vortex then disable REDMod Autoconvert option before reinstalling)
    Also delete cybercmd if you have it installed.

  2. djkovrik
    djkovrik
    • premium
    • 1,653 kudos
    Locked
    Sticky
    Compatible with the patch 2.21, no update needed.
  3. twinflame33
    twinflame33
    • supporter
    • 1 kudos
    Hey, first thank you for this essential mod. I've been modding this game intensively for some time now and one main gripe is the fact some people don't name their mod files appropriately, leaving me to guess what it does. I uninstalled 3-5 car mods but in game it shows I have around 30 blank and "Test" cars in the call list, and they stay in the car dealer as a blank tab. As far as vehicles go, would it be possible to add a feature that shows the name of the file that's in question in the online car dealer? This way, when a car mod isn't working right, we can see exactly what file it's looking for.
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      No, that's not possible. Perhaps you have some leftovers in Cyberpunk 2077\r6\tweaks\ folder so nuke unneeded vehicle files manually there
    2. twinflame33
      twinflame33
      • supporter
      • 1 kudos
      Yes that exactly what I'm talking about, those files in tweaks are subject to have horrible, nondescript names. I cant tell which are cars. My idea was if your mod showed the .tweak/.yaml file name somewhere then I could go through the list of blanked cars and actually delete the files out of my folder. That doesn't seem that difficult but I have no idea what's possible to implement in this game, so forgive my ignorance.
    3. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      That's not doable, can't help you here.
    4. twinflame33
      twinflame33
      • supporter
      • 1 kudos
      You're telling me we can have mods like world builder and amm but we cant show a file name in tweaks folder? Modding in this game drives me crazy xD Thank you though! Have a great week
  4. clxudmod
    clxudmod
    • member
    • 0 kudos
    I don't know how but the latest update makes the game crash at random, rolled back to 2.2.4 and the crashes stopped
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      There was nothing changed what can crash at random, you probably have some other issues with your mods list
  5. LisbethSAO
    LisbethSAO
    • supporter
    • 359 kudos
    THANK YOU for the (2.2.6) update, DJ_Kovrik!!  \o/    :)

    Changelogs

    • Version 2.2.6
      >Added a new console command to reset sold vehicles list
    Woo, max nova! That should make some of the gonks hella happy!  :D
  6. beckylou
    beckylou
    • member
    • 21 kudos
    If you want to unsell your vehicles to get back your lost Vanilla cars.

    r6\scripts\VirtualCarDealer\core\CarDealer-System.reds
      private func DeactivateSoldVehicles() -> Void {
        let m_putThemBack: array<TweakDBID>;
        for id in this.m_soldVehicles {
          ArrayPush(m_putThemBack, id);
        };
        for id in m_putThemBack {
          ArrayRemove(this.m_soldVehicles, id);
        };
      }

    ps. putting an empty soldvehicles thing in cheats.reds might be a good idea;
    for me; i just wanted the hella out of my summon list, because that list can get pretty big, and don't want to break out the console command cheat sheet everytime i want to do something.
    and because the sledge hammer approach is deleting the mod; it's not a good last resort option to leave people with.
    1. hudsonhermit
      hudsonhermit
      • premium
      • 1 kudos
      what line do you insert that in for cardealer-system.reds and cheat.reds?

      i put it at 48 in cardealer-system.reds, but i don't know if that's where it was meant to go
      and for cheat.reds added it at the bottom, at line 8

      i also wasn't sure what to put after "soldvehicles, id);" in cardealer-system.reds
      i want to get the starter car (the ec-d i360), the delamain no. 21, and type-66 680 ts, since i was using ng+ and sold them at the start of the run assuming there wouldn't be any problems, but when i got the cars back the normal way, they don't appear in the vehicle call menu.
      there's likely a handful of other cars i did that to, and i'm not sure what to do aside from either start another ng+ and start my save over again, or try reinstalling the mod to clear any settings it had
    2. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      Forgot to add this, will drop an update this weekend with a console comand to clear sold vehicles list
    3. hudsonhermit
      hudsonhermit
      • premium
      • 1 kudos
      that would be greatly appreciated, thank you!
    4. hudsonhermit
      hudsonhermit
      • premium
      • 1 kudos
      i noticed there was an update made/uploaded earlier today, is that for the command? or just other bug fixes

      edit: just saw the FAQ, ty very much!
  7. Deanmahu
    Deanmahu
    • member
    • 0 kudos
    virtual car dealer depends on codeware but you don't have it installed. what to do?

    everything was up to date, I've installed and uninstalled countless times and noth
    everything was up to date, I've installeeverything was up to date, I've installed and uninstalled countless times and nothing works.d and uninstalled countless times and nothing works.
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      2.1. Open the latest red4ext-2025- file in Cyberpunk 2077\red4ext\logs folder and make sure that RED4ext version matches the one from nexus. If it does then check that this file does not have any errors as well.
    2. SinfulChaser
      SinfulChaser
      • member
      • 0 kudos
      If you're using a Mod Organizer or Nexus Vortex, try installing Red4ext manually instead of the manager, fixed for me.
  8. MaxDaKillah
    MaxDaKillah
    • member
    • 0 kudos
    Hi,

    the Car Dealer tab doesn't show up for me. And no, I did not install the Browser Extension add-on 'cause, frankly, I
    don't see why I would even want that option.

    Fresh, clean 2.21 install with just the essentials
     - ArchiveXL 1.21.1
     - TweakXL 1.10.9
     - redscript 0.5.28
     - Red4ext 1.27.0
     - Codeware 1.15.0
     - Cyber Engine Tweaks 1.35.0
     - Input Loader 0.2.2
     - Native Settings UI 1.96
     - Mod Settings 0.2.8 with Gallery Patch
     - Virtual Atelier 1.3.2 whose tab doesn't show up either ...

    Red4ext version in the red4ext-2025-*.log file(s) matches the one here on the
    nexus and is free of errors as well. And the logs for the other mods are
    free of error messages as well.

    I also haven't installed cybercmd for now (why shouldn't I, that and Virtual Car Dealer used to work
    fine together back before 2.0).
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      Pinned post has all the info so do all steps again. Also try it from PC at V's apartment at a first place (not Dogtown or any other pc worldwide).
    2. MaxDaKillah
      MaxDaKillah
      • member
      • 0 kudos
      According to the pinned post I must have the Browser Extension add-on installed. Which I most certainly have not. Nor do I have the the Browser Extension mod.

      And yeah, the Computer in V's H10 apartment was the first one I checked to see whether or not this and the Virtual Atelier mod were working. I also checked Vic's PC for shits and giggles.


    3. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      Then this
      3. Try to run the game from exe file directly to check if your mods setup works without redmod involved

      And / or clean Cyberpunk 2077\r6\cache\modded + validate the game files. 
      There's not that much what else could be done here, you still have some issues with your mods setup then or something wasn't fully installed
    4. MaxDaKillah
      MaxDaKillah
      • member
      • 0 kudos
      I did try running the game directly via the Cyberpunk2077.exe, which didn't help.

      Right now I'm re-downloading the game for the 3rd time tonight...
  9. Omii96kkk
    Omii96kkk
    • member
    • 0 kudos
    https://prnt.sc/_HmGm-wxXSnF

    any solutions?
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      You might have some very outdated mod in Cyberpunk 2077\archive\pc\mod\ so bisect
    2. mountainmike
      mountainmike
      • member
      • 0 kudos
      I've got this same issue. Did you figure out which mod was causing it?
  10. Baboo85
    Baboo85
    • premium
    • 2 kudos
    I thought this mod could let you sell owned vanilla cars...
    But as the Purchased Vehicle Remover mod it just remove vehicles from your list. You can't buy again the car because it still shows as owned
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      Yes you can't and that's why VCD shows that warning about that. I'll add cheat code command which mentioned below to clear sold vehicle list later.
    2. DaSolid
      DaSolid
      • member
      • 56 kudos
      Nice, sold my Type 66 "jen rowley" and look forward to get it back.
    3. DaSolid
      DaSolid
      • member
      • 56 kudos
      Found a little Workaroud in the Bug Section :

      You can make a new save, delete the mod and then you vehicle should be back. If no then you can also try to reenable things with console like this:

      Game.GetVehicleSystem():EnablePlayerVehicle("Vehicle.v_sport2_quadra_type66_player", true, false)
       
      (added the Command for my Missing Car, for more commands, check the Link i posted)

      Steam Community :: Guide :: Codes for the console (Vehicles) + DLC "Phantom Liberty"
  11. Halo114514
    Halo114514
    • member
    • 0 kudos
    I've got everything installed and checked redext version as well. But the icon of the virtual dealership does not appear on my in-game computer. What should I do?
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      Pinned post
    2. Halo114514
      Halo114514
      • member
      • 0 kudos
      I checked both the tab and net websites, but I still cannot find it. It seems like not even exist (The other sites are working properly, but no virtual dealership). Thank you for helping though
    3. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      Check the logs I mean, you are doing something wrong then or yous mods setup does not work at all 
    4. Halo114514
      Halo114514
      • member
      • 0 kudos
      Redext? Im having a hard time understanding the content D:
    5. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      red4ext is one of required mods so 
      Open the latest red4ext-2025- file in Cyberpunk 2077\red4ext\logs folder and make sure that RED4ext version matches the one from nexus. If it does then check that this file does not have any errors as well.
    6. Halo114514
      Halo114514
      • member
      • 0 kudos
      Yeah I am aware of that. But I was trying to ask what log it is: redext or something else. Again, appreciation to your patience
    7. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      It's a log file inside Cyberpunk 2077\red4ext\logs folder
  12. matias9122
    matias9122
    • supporter
    • 0 kudos
    I installed this mod with a car pack, and it won't let me buy them. It seems I already own them, since the option to sell them appears. I don't want them to be in my possession; I want to be able to buy them one by one as I progress through the game. Any recommendations or solutions?
    1. djkovrik
      djkovrik
      • premium
      • 1,653 kudos
      If you bought that vehicles before then sell everything and buy only those you needed, if you didn't then check what other mods do you have which might unlock all player vehicles