Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

User talk:ZellSF

About this board

Not editable

Do you think you can merge the hold to walk scripts and Cutscene FPS scripts for Valkyria Chronicles?

2
99.162.189.196 (talkcontribs)

Also I don't see FPS limiter running when I launch with your script.

ZellSF (talkcontribs)

You wouldn't see it running in anything other than task manager, it's running hidden. If it's not showing up in task manager either, check what happens when you run the fps limiter exe directly.

I can't test at the moment, but I'm guessing this should work to combine the scripts:

Run,fpslimiter32.exe,,hide
Run,Valkyria.exe
Loop {
	Sleep,1
	PlayingMovie := 0
	Loop,Files,movie\*
		{
		FileMove,%A_LoopFileLongPath%,%A_LoopFileLongPath%
		if (ErrorLevel = 1)
			PlayingMovie := 1
		}
	if (PlayingMovie = 1)
		SendInput,^{Numpad0}
	if (PlayingMovie = 0)
		SendInput,^{Numpad1}
	Process,Exist,Valkyria.exe
	if (ErrorLevel = 0) {
		Process,Close,fpslimiter32.exe
		ExitApp
		}
	}

#IfWinActive, ahk_class Valkyria Chronicle
+w::Up
+s::Down
+a::Left
+d::Right

~w::sendinput {up up}
~a::sendinput {left up}
~s::sendinput {down up}
~d::sendinput {right up}
There are no older topics