Main > Lightguns |
Use RCPS3 Move Games with Lightgun using scripts |
<< < (27/39) > >> |
Jayinem:
Well like I said already try removing the quotation marks around the location of the game. Mine doesn't have that. Mine is like this run rpcs3.exe D:\Pawn\Downloads\RPCS3\dev_hdd0\disc\TC\PS3_GAME\USRDIR\timecrisis4.self No quotes at all. |
Jayinem:
Here is my full script again but I notice if you put Return after the script and before ESC: it will escape every time. #SingleInstance Force run rpcs3.exe D:\Pawn\Downloads\RPCS3\dev_hdd0\disc\TC\PS3_GAME\USRDIR\timecrisis4.self q:: MouseGetPos, , , win maxWindow("ahk_id" win) return maxWindow(title) { WinMove, % title, , 0, 0, % A_ScreenWidth, % A_ScreenHeight WinActivate, % title WinSet, Style, -0xC00000, % title WinSet, Style, -0x40000, % title WinSet, AlwaysOnTop, Off, % title } c:: Send {RButton Down} Send {LButton Down} Sleep, 60 Send {LButton Up} Send {RButton Up} v:: Send {RButton Down} Send {MButton Down} Sleep, 60 Send {MButton Up} Send {RButton Up} a:: send {RButton Down} send {MButton Down} Return ESC:: Send !{f4} ExitApp Return Why not try copy my entire script, and make the script in the location of rpcs3 so you don't have to add rpcs3 path, then just change the location no quotes to your game. There's no reason it shouldn't work then but if you're doing things different even when you type run you have a comma after mine doesn't, could be the difference. Also did you see if they run in rpcs3 by choosing File> Boot Self/ELF. If they work there they should work in a script. If they dont work something else is wrong. |
phasermaniac:
Hi! Today I was rereading the whole threat and I think I know weres the confusion with the script: In ahk if you do a simple remap, like "c:: LButton", in one line you dont need return. But if its a multiple renmap, it needs a return in the end or it runs next remapping. Another problem is that i think the move o button is not only l+m but. l+m+r. So the button part of the sript might be: --- Code: ---c:: Send {RButton Down} Send {MButton Down} Send {LButton Down} Sleep, 60 Send {LButton Up} Send {MButton Up} Send {RButton Up} Return v:: Send {RButton Down} Send {MButton Down} Sleep, 60 Send {MButton Up} Send {RButton Up} Return ... --- End code --- Tomorrow i'll test in the cabinet, can share the script I have there, that works fine |
Jayinem:
--- Quote from: phasermaniac on September 05, 2020, 05:48:56 pm ---Hi! Today I was rereading the whole threat and I think I know weres the confusion with the script: In ahk if you do a simple remap, like "c:: LButton", in one line you dont need return. But if its a multiple renmap, it needs a return in the end or it runs next remapping. Another problem is that i think the move o button is not only l+m but. l+m+r. So the button part of the sript might be: --- Code: ---c:: Send {RButton Down} Send {MButton Down} Send {LButton Down} Sleep, 60 Send {LButton Up} Send {MButton Up} Send {RButton Up} Return v:: Send {RButton Down} Send {MButton Down} Sleep, 60 Send {MButton Up} Send {RButton Up} Return ... --- End code --- Tomorrow i'll test in the cabinet, can share the script I have there, that works fine --- End quote --- I see what you mean now about Return, that's good to know. I am not sure the purpose of adding L + M + R though. I can already get out of calibration which includes o so it was not necessary. I did have some problems calibrating other games that haven't been talked about though like Child of Eden. I couldn't get out of calibration. Time Crisis I don't have any problems. There is stuff you can find on google though that talks about Child of Eden being difficult to calibrate even in the real game on a PS3 with move. https://www.google.com/search?q=how+to+calibrate+move+child+of+eden&rlz=1C1CHBF_enUS917US917&oq=how+to+calibrate+move+child+of+eden&aqs=chrome..69i57.5015j0j4&sourceid=chrome&ie=UTF-8 |
Jayinem:
I was trying to get a Time Crisis 4 save to work that unlocks all stages since that screen change does suck (it works for me occasionally but not all the time) but I decrypted the save but can't get it to work. I also started having problems escaping again without even changing the script. This seems to work better. And I was having trouble with rpcs3.exe staying open in taskmgr even though it looked close, but this seems to kill it entirely. $Escape:: Send !{f4} Process,Close,rpcs3.exe Run,taskkill /im "rpcs3.exe" /F ExitApp return |
Navigation |
Message Index |
Next page |
Previous page |