mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-26 07:21:48 +00:00
Vicious difficulty
This commit is contained in:
parent
1a8b4dc78f
commit
d32ba6cf64
5 changed files with 11 additions and 6 deletions
|
|
@ -98,7 +98,7 @@ CV_PossibleValue_t dummykartspeed_cons_t[] = {
|
|||
CV_PossibleValue_t gpdifficulty_cons_t[] = {
|
||||
{KARTSPEED_EASY, "Relaxed"},
|
||||
{KARTSPEED_NORMAL, "Intense"},
|
||||
{KARTSPEED_HARD, "Extreme"},
|
||||
{KARTSPEED_HARD, "Vicious"},
|
||||
{KARTGP_MASTER, "Master"},
|
||||
{0, NULL}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -943,7 +943,7 @@ consvar_t cv_dummyextraspassword = MenuDummy("dummyextraspassword", "");
|
|||
|
||||
extern CV_PossibleValue_t gpdifficulty_cons_t[];
|
||||
void Dummygpdifficulty_OnChange(void);
|
||||
consvar_t cv_dummygpdifficulty = MenuDummy("dummygpdifficulty", "Relaxed").values(gpdifficulty_cons_t).onchange(Dummygpdifficulty_OnChange);
|
||||
consvar_t cv_dummygpdifficulty = MenuDummy("dummygpdifficulty", "Intense").values(gpdifficulty_cons_t).onchange(Dummygpdifficulty_OnChange);
|
||||
consvar_t cv_dummygpencore = MenuDummy("dummygpencore", "Off").on_off();
|
||||
|
||||
consvar_t cv_dummyip = MenuDummy("dummyip", "");
|
||||
|
|
|
|||
|
|
@ -5689,7 +5689,7 @@ static char *M_GetGameplayMode(void)
|
|||
if (grandprixinfo.masterbots)
|
||||
return va("Master");
|
||||
if (grandprixinfo.gamespeed == KARTSPEED_HARD)
|
||||
return va("Extreme");
|
||||
return va("Vicious");
|
||||
if (grandprixinfo.gamespeed == KARTSPEED_NORMAL)
|
||||
return va("Intense");
|
||||
return va("Relaxed");
|
||||
|
|
|
|||
|
|
@ -2378,7 +2378,7 @@ static const char *M_GetConditionString(condition_t *cn)
|
|||
}
|
||||
else if (cn->extrainfo2 == KARTSPEED_HARD)
|
||||
{
|
||||
speedtext = " on Extreme";
|
||||
speedtext = " on Vicious";
|
||||
}
|
||||
else if (cn->extrainfo2 == KARTGP_MASTER)
|
||||
{
|
||||
|
|
@ -2424,7 +2424,7 @@ static const char *M_GetConditionString(condition_t *cn)
|
|||
else*/
|
||||
if (cn->requirement == KARTSPEED_HARD)
|
||||
{
|
||||
speedtext = " on Extreme";
|
||||
speedtext = " on Vicious";
|
||||
}
|
||||
else if (cn->requirement == KARTGP_MASTER)
|
||||
{
|
||||
|
|
@ -2690,7 +2690,7 @@ static const char *M_GetConditionString(condition_t *cn)
|
|||
}
|
||||
else if (cn->requirement == KARTSPEED_HARD)
|
||||
{
|
||||
speedtext = "on Extreme";
|
||||
speedtext = "on Vicious";
|
||||
}
|
||||
else if (cn->requirement == KARTGP_MASTER)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -134,6 +134,11 @@ void M_SetupDifficultyOptions(INT32 choice)
|
|||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_NORMAL);
|
||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_NORMAL);
|
||||
}
|
||||
else
|
||||
{
|
||||
CV_SetValue(&cv_dummygpdifficulty, KARTSPEED_EASY);
|
||||
CV_SetValue(&cv_dummykartspeed, KARTSPEED_EASY);
|
||||
}
|
||||
|
||||
interceptedDefaultDifficulty = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue