Problem: When I play rpgm vx ace games, I can't even fap because I have to use two hand. I remembered I was able to play using mouse in MV games, so I was looking for mouse script for vx ace games. I installed the mouse script and then another problem appeared. In game mouse cursor was out of sync with virtual desktop cursor. So I had to edit mouse script to sync with virtual desktop cursor.
Preparation: RPGM vx ace engine of course
1. Decrypt the game in order to install script. You will see access denied kind of error if you don't decrypt it. Generate Game rvproj2. Copy and pastes decrypted folder and rvproj2 into game folder. Overwrite them.
https://f95zone.to/threads/rpg-maker-xp-vx-vx-ace-decrypter-uncpacker.173031/
2. Install mouse script.
- open RPGM vx ace
- open project and select the rvproj2 file you generated
- press F11
- scroll down, right click, and click insert at the end of "Materials" tab
- name it however you want. Copy paste the script code and click apply.
3. For vr user
- find the lines
def self.pos
gx, gy = global_pos
x, y = screen_to_client(gx, gy)
- add these below it
x = (x * 0.5).to_i - 5
y = (y * 0.5).to_i - 10
*0.5 = slowing down cusor speed
-5, -10 = change cursor's absolute position
Preparation: RPGM vx ace engine of course
1. Decrypt the game in order to install script. You will see access denied kind of error if you don't decrypt it. Generate Game rvproj2. Copy and pastes decrypted folder and rvproj2 into game folder. Overwrite them.
https://f95zone.to/threads/rpg-maker-xp-vx-vx-ace-decrypter-uncpacker.173031/
2. Install mouse script.
- open RPGM vx ace
- open project and select the rvproj2 file you generated
- press F11
- scroll down, right click, and click insert at the end of "Materials" tab
- name it however you want. Copy paste the script code and click apply.
You must be registered to see the links
3. For vr user
- find the lines
def self.pos
gx, gy = global_pos
x, y = screen_to_client(gx, gy)
- add these below it
x = (x * 0.5).to_i - 5
y = (y * 0.5).to_i - 10
*0.5 = slowing down cusor speed
-5, -10 = change cursor's absolute position