Skip to content

Commit

Permalink
feat: show cheat cmd check status in HUD intermission
Browse files Browse the repository at this point in the history
  • Loading branch information
7mochi committed Sep 19, 2024
1 parent 26f24bc commit 70bbbb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/llhl.sma
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ public FwMsgIntermission(id) {
public TaskPreIntermission() {
// Show vEngine
set_dhudmessage(0, 100, 200, -1.0, -0.125, 0, 0.0, 99.0);
show_dhudmessage(0, "%s v%s^n----------------------^nHLTV Allowed: %i^nServer fps: %.1f", PLUGIN_ACRONYM, VERSION, get_pcvar_num(gCvarNumHLTVAllowed), (1.0 / gActualServerFPS));
show_dhudmessage(0, "%s v%s^n----------------------^nHLTV Allowed: %i^nServer fps: %.1f^nCheat check: %s", PLUGIN_ACRONYM, VERSION, get_pcvar_num(gCvarNumHLTVAllowed), (1.0 / gActualServerFPS), get_pcvar_num(gCvarCheatCmdCheck) ? "On" : "Off");
client_cmd(0, "wait;wait;snapshot");
}

Expand Down

0 comments on commit 70bbbb0

Please sign in to comment.