File information
Created by
NMKopfkinoUploaded by
NMKopfkinoVirus scan
About this mod
A simple script for the camera zoom-out, so it's a toggle button, and stays zoomed-out without having to keep pressing the key.
- Permissions and credits
Its function is basically a toggle, which keeps the camera zoomed-out. When you press "V" on the keyboard, it toggles "*" (NumpadMult, or "Asterisk") key, up or down. So it's like you're pressing the zoom-out key, permanently, so the game doesn't zoom-in, but stays zoomed-out. (There are moments when the game just doesn't allow you to be zoomed out.)
Instructions:
- Make sure the keybindings for the camera zoom in the game are set to "V" and "*" ("Asterisk").
- Run the Script as an Administrator, otherwise it doesn't seem to work, whenever you want, but it's only needed during the tactical game. (I usually start it before the game, and close it after exiting.)
- Once you're done playing, just close the script.
Notes:
- There isn't a specific place you have to put the file itself and run it, so feel free to put it wherever it makes sense to you.
- After running it, It'll show up on your taskbar as active, and there are options to exit/close, pause, and suspend the hotkey. If you pause it, it'll still work in-game. If you suspend it, it won't. (I'll provide some images.)
- Because this is a basic script, it means that it does exactly what explained while active, which means, if you try to write the letter "V" outside the game, it'll write something weird like this (I'm activating the script and just pressing the letter "V" for 1-2 seconds to show you): "*""""*""""*"V"""*"V"""*"""V"*""""*""""*"
Since it's a script and a *exe, there are always security concerns you may have:
- Feel free to block the script on your Firewall, or wherever and however you want.
- Feel free to compile it yourself, for your personal use. (source code provided below.)
- VirusTotal scan link for the .exe file.
- VirusTotal scan link for the compressed .7z uploaded to Nexusmods and verified.
-----------------------------------------------------------------------------------------------------------------------------
OTHER MODS I RECOMMEND:
- Gameplay RE-Vision (adjusts many gameplay aspects)
- Unlock Extended Story Mode (play the full extended story without having to finish the game once before)
- Speedhack_Plus (control the game's speed using Cheat Engine)
- 185 New Female Portraits (more portraits, less repetition)
- No-Intro Videos Fix (skip intro videos)
Source Code:
Before being converted to a .exe, this is the source code inside the .ahk:
#SingleInstance Force
A_MaxHotkeysPerInterval := 99999
SetWinDelay 6000
v::
toggle := !toggle
If (toggle)
{
Send "{NumpadMult down}"
} Else {
Send "{NumpadMult up}"
}
Return