#allow race or car lineup to be seen without “admission currency”

8 messages · Page 1 of 1 (latest)

gentle cargo
#

In championships if I do not have 10+ renown I am unable to look at any of the opponents/races, let alone see the lineup that maybe I’ve already picked out and am working on upgrading.

As a user I would like to be able to work on my progression even if I am unable to afford to enter the race.

This could be applied to challenges as well, where your tickets are empty. You can at least see your lineup and work on them, but unable to see the actual circuits/conditions/opponents. It would be more convenient to see what you’re up against so you theorycraft and make progression during “off hours”.

calm frost
#

I think this one is a bit difficult because of the way they've coded the championships. Similar to other challenges that have a token requirement preventing you from entering the challenge, this one has a "100 renown" requirement. If they let you get past that point they would have to now implement a check that happens in a place that has never been done before, as everywhere that lets you get to opponent matchups allow you to VS your opponents

#

#🏁│championships pinned posts, TDR and google are your easiest options

sturdy kindle
# calm frost I think this one is a bit difficult because of the way they've coded the champio...

As far as I understand it would still be the exact same check right? Something like
if(player_renown.get<100)
not_enough_renown_message.show
that is somewhere in an on_click function for the race itself.

I figure the “go” button has a function “on_click” as well within which it has a check to compare hand RQ to RQ limit that goes something like
if(hand_rq>this_race.get.rq_limit)
too_high_rq_message.show

If you move that first player renown check from the on_race_click function to before the hand RQ check in the on_goButton_click wouldnt that do it which would be just as easy as moving a few lines of code and maybe changing one or two if statements to if else statements?

#

That’s just mainly for like yellowbird

calm frost
# sturdy kindle As far as I understand it would still be the exact same check right? Something l...

It's not adding some if statements, it's a completely new function in an area that previously had no verification, so you've already got a stance of "if you can see your opponents then you can fight them" which you now want to change which will require new tests to ensure it actually stops you from playing without owning the renown, all because someone was not willing to check the many online resources to see what their opponents are

sturdy kindle
# calm frost It's not adding some if statements, it's a completely new function in an area t...

Im just talking about being able to go into the race to where you can see your cars. I have adhd and there is literally no way I will remember what cars I have been working on to do a yellowbird round. Im saying a part of what this person is suggesting should certainly be done because it is easy and a QOL update. I am not saying you should be able to see your opponents or the trackset just that you should be able to get to the step before that rather than only getting as far as seeing how many races you have done in a yellowbird country

#

At that point there is already verification for various things such as the hand requirements and the hand rq. I want to be able to easily set up a hand when I have no renown. As of now I dont have the ability to do that