Phantom Doctrine

File information

Last updated

Original upload

Created by

NMKopfkino

Uploaded by

NMKopfkino

Virus scan

Some manually verified files

Tags for this mod

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
This file is a *.exe, created by me, compiled by "AutoHotkey Dash" program, using its "v1.1.37.01c0 U32 Ahk2Exe" compiler, from a *.ahk to an *.exe.
Its only function is basically a toggle. 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. Note that 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 any time you want, but it's only needed during the Tactical Game.
  • The Script does need to run as an Administrator, or it'll do nothing. 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.
  • Once you're done playing, just close the script.

Notes:
  • 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 while it's active, it does exactly what explained. This means, if you try to write the letter "V" outside the game (and maybe inside 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, because you don't know me, so:
  • Feel free to block the script on your Firewall or wherever and however you want.
  • Feel free to compile it yourself, only for your personal use (source code is provided).
  • VirusTotal scan link for the *.exe file.
  • VirusTotal scan link for the compressed *.7z uploaded to Nexusmods and verified.

--------------------------------------------------------------------------------------------------------------------

OTHER MODS I RECOMMEND:

--------------------------------------------------------------------------------------------------------------------

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