Banishers: Ghosts of New Eden
0 of 0

File information

Last updated

Original upload

Created by

CRUZZO3412

Uploaded by

cruzzo3412

Virus scan

Some manually verified files

Tags for this mod

About this mod

Use Caps Lock toggle walk.

Permissions and credits
Use Caps Lock toggle walk.

If it doesn't work, check your key bindings:
Shift - sprint
Z hold - walk

Not perfect, but better than nothing.



You can run the script yourself once you have Python installed

Source Code:
import keyboard,time
from win32gui import GetWindowText,GetForegroundWindow
from win32api import GetKeyState
from win32con import VK_CAPITAL
from pynput.keyboard import Key,Controller
KB=Controller()
KS='shift'
def main():
B='z';print(f"[-] Banishers - Walk Toogle Init Start\n");C=0;A=0
while True:
try:
D=GetWindowText(GetForegroundWindow()).find('Ghosts of New Eden')
if D!=-1:
if C==0:print(f"[-] Banishers - Game launched\n")
else:time.sleep(.33);continue
if C==0:print(f"[-] Banishers - Walk Toogle Init Successfully!\n[-] Use CapsLock toggle walk\n");C=1
if GetKeyState(VK_CAPITAL):
if keyboard.is_pressed(KS):
time.sleep(.33)
if A==1:KB.release(B);A=0
else:time.sleep(.33);KB.release(B);KB.press(B);A=1
else:
time.sleep(.33)
if A==1:KB.release(B);A=0
except KeyboardInterrupt:break
except:pass
if __name__=='__main__':main()