Community Tips & Fixes: Difference between revisions

From Dea7hsmiles
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:


== Latest submissions ==
== Latest submissions ==
{{FixCard
|type=Tip
|title=Auto-switch resolution per game in TeknoParrot with QRes (Luigi’s Mansion example)
|author=DJ_GLiTCH
|date=May 6, 2025
|source=
|affected=Windows • TeknoParrot (4K/240Hz example)
|summary=Use an AHK “Running Script” in LaunchBox plus QRes.exe to set a game-friendly resolution on launch and restore your native resolution on exit—handy when games won’t go fullscreen or scale correctly.
|steps=
# Download **QRes.exe** and place it in a folder of your choice. ([https://www.majorgeeks.com/files/details/qres.html QRes download])
# In LaunchBox, open **Tools → Manage Emulators → TeknoParrot → Running Script**.
# Paste the script below and update the path to your QRes.exe.
# Adjust the refresh rate (``/r:240`` → 240/144/120/60) and the target resolution(s) for your monitor.
# Launch **Luigi’s Mansion**; the script waits for the game process, switches to 1920×1080 while running, then restores 3840×2160 on exit.
|notes=
* If scaling looks off, set Windows display scaling to **100%**.
* Path with spaces is fine—keep the quotes around the QRes.exe path.
* To use this for other games, change the process name and target resolution (see comments in the code).
|attachments=<pre>
; LaunchBox → TeknoParrot → Running Script (AutoHotkey v1)
#Persistent
; Function to change the resolution via QRes
ChangeResolution(width, height) {
    ; EDIT THIS PATH to where you placed QRes.exe
    RunWait, "C:\Tools\QRes\QRes.exe" /x:%width% /y:%height% /c:32 /r:240,, Hide
}
; Luigi's Mansion example (VACUUM.exe)
Loop {
    Process, Wait, VACUUM.exe
    ChangeResolution(1920, 1080)    ; Set game-time resolution
    Process, WaitClose, VACUUM.exe
    ChangeResolution(3840, 2160)    ; Restore native resolution
}
</pre>
|tags=Windows • TeknoParrot • Resolution • Fullscreen • Scaling • QRes • AHK
}}


{{FixCard
{{FixCard

Revision as of 15:43, 15 August 2025

A curated list of fixes, workarounds, and tips contributed by our Discord community. Have something to add? Post it in Discord and we’ll mirror it here.

Latest submissions

Auto-switch resolution per game in TeknoParrot with QRes (Luigi’s Mansion example)
By: DJ_GLiTCH
Date: May 6, 2025
Affects: Windows • TeknoParrot (4K/240Hz example)
Use an AHK “Running Script” in LaunchBox plus QRes.exe to set a game-friendly resolution on launch and restore your native resolution on exit—handy when games won’t go fullscreen or scale correctly.
Attachments
; LaunchBox → TeknoParrot → Running Script (AutoHotkey v1)
#Persistent

; Function to change the resolution via QRes
ChangeResolution(width, height) {
    ; EDIT THIS PATH to where you placed QRes.exe
    RunWait, "C:\Tools\QRes\QRes.exe" /x:%width% /y:%height% /c:32 /r:240,, Hide
}

; Luigi's Mansion example (VACUUM.exe)
Loop {
    Process, Wait, VACUUM.exe
    ChangeResolution(1920, 1080)     ; Set game-time resolution
    Process, WaitClose, VACUUM.exe
    ChangeResolution(3840, 2160)     ; Restore native resolution
}



Stabilize RS3 Reapers when MAMEHooker config drift happens (triggers/recoil crossed)
By: ChrisTucker
Date: June 15, 2025
Affects: RS3 Reapers (MAMEHooker; possibly HOTR scripts—untested)
If your RS3s suddenly “swap” functions (e.g., Gun 1 recoils Gun 2 or both fire together), run this quick reset flow to re-establish correct player mapping and stability.