Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QC: Enhance Intermission+Epilogue Implementation, Add Episode 0 Epilogue. #118

Merged
merged 4 commits into from Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions qcsrc/client.qc
Expand Up @@ -180,6 +180,13 @@ var struct
string freeware_text;
} intermission_levels[] =
{

#ifdef __LIBREQUAKE__

{"maps/e0m7.bsp", 2, LOC_EPILOGUE_0, __NULL__},

#endif // __LIBREQUAKE__

{"maps/e1m7.bsp", 2, LOC_EPILOGUE_1, LOC_EPILOGUE_1_FREEWARE},
{"maps/e2m6.bsp", 2, LOC_EPILOGUE_2, __NULL__},
{"maps/e3m6.bsp", 2, LOC_EPILOGUE_3, __NULL__},
Expand Down
1 change: 1 addition & 0 deletions qcsrc/localized_text.qc
Expand Up @@ -33,6 +33,7 @@

#ifdef __LIBREQUAKE__

#define LOC_EPILOGUE_0 "\nAs the ethereal essence of your very\nbeing drifts through time and space,\nyou experience relentless calm and\nserene determination. You embrace the\nliminal, formless nature of your being\nwithin the amorphous expanse between\nrealities.\n\nSuspended between the veils of life\nand death, among the realm of celestial\ndissolution, you wait to be called upon\nagain. To regain your corporeal form\nand step into the crucible of fate.\nTo finish your task and keep at bay the\nonslaught of cosmic horrors.\n"
MotoLegacy marked this conversation as resolved.
Show resolved Hide resolved
#define LOC_EPILOGUE_1 "EPISODE 1 COMPLETION TEXT GOES HERE"
#define LOC_EPILOGUE_1_FREEWARE "EPISODE 1 COMPLETION TEXT GOES HERE"
#define LOC_EPILOGUE_2 "EPISODE 2 COMPLETION TEXT GOES HERE"
Expand Down