1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-20 15:44:48 +00:00

nicer help for number dialogs

This commit is contained in:
Zeno Rogue
2025-09-09 16:56:47 +02:00
parent ab9d7a404f
commit dbebf13465
6 changed files with 68 additions and 35 deletions

View File

@@ -720,8 +720,17 @@ EX string available_functions() {
}
EX string available_constants() {
return
"e, i, pi, tau, phi, deg [degree]";
}
EX string available_variables() {
return
"e, i, pi, s, ms, mousex, mousey, mousez, shot [1 if taking screenshot/animation]";
"Keyboard and mouse:\n\n"
"mousex, mousey, mousez, lshift, rshift, lctrl, rctrl, capslock, numlock, scrolllock, holdmouse, random, mousexs, mouseys\n\n"
"Time:\n\n"
"s [seconds], ms [milliseconds], turncount, framecount, gametime\n\n"
"Other:\n\nshot [1 if taking screenshot/animation], illegal_moves";
}
#if HDR