Are you sure it's "
DebugMenu" on your end?
I finally found mine, but it's actually "
DebugMode".
For anyone else who is interested...
Example Path = "
C:\Users\Rapture\Documents\my games\Soma\Mods\Lockdown"
The file-name has a "
user_settings.cfg" at the end, the beginning is your computer/SOMA name with a gargle gook of numbers.
-----------------------
Question: The "
void OnAction(int alAction, bool abPressed)" is for detecting when the player inputs a Mouse/Keyboard command, correct?
If so, where do I find the Boolean for the correct key to be pressed? I don't see anything that gives an indication to which Key is being pressed for it to work.
Example... (
This is in 02_03_delta.hps > About Line 209)
///////////////
//Call zepp to landing site and teleport player, press 8 to take off. (F3 is good to not forget as well..)
else if(alAction == eAction_Test2)
{
Tool_PickUp("CathTool", false, true);
//Tool_PickUp("KateChip", false, true);
Player_Teleport("StartZeppLanding");
SequenceZeppelinArrives("");
Preload(false);
Map_SetPreloadPriority(eWorldStreamPriority_VeryHigh);
}
It mentions about using the "
8" key to take-off, but I can't figure out where the condition is being set for that.