Files
@ r659:c4726c05e825
Branch filter:
Location: cpp/openttd-patchpack/source/docs/console.txt - annotation
r659:c4726c05e825
1.0 KiB
text/plain
(svn r1093) -Fix: Hopefully fixed windows revision issues once and for all. Removed globalness of _openttd_revision and put all such ifdefs into one place. If server has a revision only the same revisions can join; if the server has no revision everyone can join. I reckon this should be a server-side option to allow people to join or not to join.
r126:ddfe1cb69359 r126:ddfe1cb69359 r288:0bae6295cc67 r141:ed23912abdee r126:ddfe1cb69359 r186:d94944c1735d r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r126:ddfe1cb69359 r126:ddfe1cb69359 r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r141:ed23912abdee r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r543:efdb197f91ad r543:efdb197f91ad r126:ddfe1cb69359 r543:efdb197f91ad r543:efdb197f91ad r126:ddfe1cb69359 r543:efdb197f91ad r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 r126:ddfe1cb69359 | OPENTTD INGAME CONSOLE DOCUMENTATION
====================================
http://wiki.openttd.org/index.php/OpenTTDDevBlackBook
for detailed information
HOTKEY: BACKQUOTE (aka tilde, the key left to "1")
COMMANDS:
---------
echo [string]
echoc [color-code] [string]
exit
debug_level [0-9]
dump_vars [filter]
help
list_cmds [filter]
list_vars [filter]
printf [formatstring] [var] [var] [var]....
printfc [color-code] [formatstring] [var] [var] [var]....
quit
random
screenshot ["big"/"no_con"]
VARIABLES:
----------
*con_developer
-> true = console debugging info
-> false = no output
*developer
-> 0 = no output
-> 1 = console error output [like command not found]
-> 2 = console error and debug output
*cursor_rate
-> 1-12 = defines the cursor blink interval
VARIABLE HANDLING:
------------------
developer = 0
developer ++
temp_string = test
temp_string = "my little"
printf "%s world" temp_string
---------------------------------------------------
feel free to add more commands and use this in-game
console for your debugging / enhancements
|