Command help
6 years ago
Germany

I wanted to implement an ingame quicksaving/loading blockade (via console) that looks like this: bind PGUP "unbind F6;unbind F9" Works fine. But of course I need a key to disable it ingame aswell but ran into a problem: bind PGDN "bind F6 save quick;bind F9 load quick" doesn't work obviously, because the command "save quick" has a space in between. Usually that's not a problem because you could put it into quotation marks ("..."). But those are already used in this command. Any ideas?

Germany

Figured it out: I created a .cfg file in my joequake folder and called it "quicks", which includes: bind F6 "save quick" bind F9 "load quick"

After that I changed the command to: bind PGDN "exec quicks"

Works fine now.