RaceRoom Garage

Discussion in 'Community Workshop' started by yocyoc, Dec 11, 2025.

  1. yocyoc

    yocyoc Member

    Joined:
    Dec 5, 2025
    Ratings:
    +15 / 0 / -0
    Hello,
    I'm new to Raceroom and I'm missing like many others the informations about cars gearbox type, to be sure to start the race with the good wheel configuration. While looking for an accurate list, I decided to make a website to maintain such a listing myself. This website is now live here :
    https://raceroom.yoc.ovh
    upload_2025-12-11_17-58-1.png
    Since then, I found sbarro3 thread who maintain hardly his own list. Big thanks to him.
    I've added some cool features such as favorites management (stored in your browser cookies). You can generate a link to share your garage with others.
    Another feature is you can compare cars hp and weight.

    Let me know what you think, and if you'd like any additional features.
    This website will become obsolete as soon as KW Studios adds more information on the car page inside the game, which I'm sure will be added one day.

    Be gentle on track and have fun.
     
    • Love it! Love it! x 9
    • Like Like x 7
    Last edited: Dec 11, 2025
  2. Maskerader

    Maskerader Well-Known Member

    Joined:
    Oct 6, 2019
    Ratings:
    +508 / 0 / -0
    Nice website, thank you!
     
  3. Andi Goodwin

    Andi Goodwin Moderator Beta tester

    Joined:
    Jan 16, 2015
    Ratings:
    +835 / 0 / -0
    dtm 2002 , all cars should be rwd ; 2 are marked as fwd

    Andi
     
    • Informative Informative x 2
    • Like Like x 1
  4. Skidmark

    Skidmark Well-Known Member

    Joined:
    Oct 9, 2015
    Ratings:
    +240 / 0 / -0
    Last edited: Dec 16, 2025
  5. Diego Junges

    Diego Junges Well-Known Member

    Joined:
    Sep 26, 2025
    Ratings:
    +81 / 0 / -0
    This is amazing, man! Thanks a lot for the effort!
     
  6. fafiotin1968

    fafiotin1968 New Member

    Joined:
    Dec 2, 2025
    Ratings:
    +0 / 0 / -0
    Merci beaucoup, pour tes recherches, la réalisation et le partage :)
     
  7. HeiRie

    HeiRie New Member

    Joined:
    Sep 28, 2025
    Ratings:
    +1 / 0 / -0
    awesome stuff man. Really appreciate that
     
  8. Nuck Chorris

    Nuck Chorris Member

    Joined:
    Nov 5, 2024
    Ratings:
    +7 / 0 / -0
    Good work mate, I am making a app for RaceRoom, and I noticed something on your page here: The squeezed pic of a few cars, (see Aquilla CR1 in your site) - the only time I have seen this squeezing, is when I myself webscraped the raceroom store for these images to use in my app, and then resized them smaller as I think you did. I also at first made the assumption that the aspect ratio was exactly the same, but its not unfortunately. So you will have to write your code to resize these images by a percentage and code to "keep aspect ratio" , in your website around 30% or 35% is probably right size , using a percentage instead of fixed pixels will stop this squished Aquilla

    TARGET_SCALE = 0.30

    then make a definition in python for what resizing is etc.. and some math like:

    orig_width, orig_height = img.size
    new_width = int(orig_width * target_scale)
    new_height = int(orig_height * target_scale)



    upload_2025-12-31_21-24-59.png
     
  9. h55d

    h55d Member

    Joined:
    Dec 4, 2025
    Ratings:
    +22 / 0 / -0
    That is awesome! I wish I saw that before I added the "Car info" page on r3e-leaderboards.info :p
    As some people asked me, I will reuse your traction info and add it to my car infos.

    Also, maybe it is just me, but I think it would be way easier to read if you just hid the ABS/TC/DRS tags in the cards view instead of graying them out.

    Cheers!
     
    • Agree Agree x 2
    • Like Like x 1
  10. h55d

    h55d Member

    Joined:
    Dec 4, 2025
    Ratings:
    +22 / 0 / -0
    Also, you could add the wheel shape to be complete :) I'll take your drive type and you take my wheel type :D
     
  11. h55d

    h55d Member

    Joined:
    Dec 4, 2025
    Ratings:
    +22 / 0 / -0
    Also, sorry to be that guy, but the Alfa Romeo 155 TI DTM 1995 and the BMW M3 E92 GT both use paddles and not sequential sticks.

    Edit: DTM 2002 and 2003 are Sequential
     
    Last edited: Jan 16, 2026
  12. Denis Gicquel

    Denis Gicquel Well-Known Member

    Joined:
    Nov 27, 2015
    Ratings:
    +395 / 0 / -0
    Great website, very useful when looking for a challenge! :D

    I noticed 2 points to be corrected I think:
    • Abt-Audi TT-R DTM 2002 : I think it's a sequential gearbox, not paddles
    • BMW Alpina B6 GT3 GTR3 : Paddles, not sequential ; there are 2 different power informations given on the page, 530 and 580 BHP

    Keep up the good work! ;)