You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I said:
It was possible to set
the level up to 90(!) in his modification, but of course level 60 is
about as fast as anyone could play with some semblance of survival.
Practicing via Peace Games on level 40 became "easy"
The fix for this is really simple though:
The level limit can be increased by changing line 2207 in source/quadra.cpp:
p.level_start = min(max(p.level_start, 1), 40);
Here is that line with the three previous and three following lines of code:
if(command.token("level")) {
const char *temp = command_get_param("level <level number>");
p.level_start = atoi(temp);
p.level_start = min(max(p.level_start, 1), 40);
}
if(command.token("name")) {
const char *temp = command_get_param("name <game name>");
I think 80 would be a good value. It'd take a cyborg to keep up with that speed (and so the level limit will not be an issue in the future). :)
No description provided.
The text was updated successfully, but these errors were encountered: