Unity Completed Touch And Hypnosis: Kunoichi Ninja Kunai [Final] [OSARUMODE]

4.20 star(s) 10 Votes

rufo37

New Member
Aug 30, 2021
11
8
Save location : Computer\HKEY_CURRENT_USER\SOFTWARE\DefaultCompany\Jubakusennou
Here is my full save
To use the file, just double click it that's all you need to do
For Steam deck users trying to edit the save, try doing this. search /home/deck/.wine/ and open user.reg text file. Search for the "[Software\\DefaultCompany\\Jubakusennou] 1677605743" part and simply copy and paste the content of the save file to the registry
 

fapmaster9000

Newbie
Oct 10, 2020
24
47
Man, the last minigame where you have to click the hearts is impossible. I made the script below to pass it.

Python:
import pyautogui
import time

#def test():
#    time.sleep(1)
#    screenshot = pyautogui.screenshot("screenshot.png")

HEART_WIDTH=120

def ml():
    heartDetected = False
    while True:
        time.sleep(10/1000)
        pix = pyautogui.pixel(956+HEART_WIDTH, 950)
        if pix[0] < 125 and heartDetected:
            heartDetected = False
            pyautogui.click()
        if pix[0] > 125:
            heartDetected = True

ml()
 
  • Like
Reactions: Perang0711

Perang0711

New Member
Dec 1, 2019
6
1
Man, the last minigame where you have to click the hearts is impossible. I made the script below to pass it.

Python:
import pyautogui
import time

#def test():
#    time.sleep(1)
#    screenshot = pyautogui.screenshot("screenshot.png")

HEART_WIDTH=120

def ml():
    heartDetected = False
    while True:
        time.sleep(10/1000)
        pix = pyautogui.pixel(956+HEART_WIDTH, 950)
        if pix[0] < 125 and heartDetected:
            heartDetected = False
            pyautogui.click()
        if pix[0] > 125:
            heartDetected = True

ml()
helllo how can i use this
 

fapmaster9000

Newbie
Oct 10, 2020
24
47
helllo how can i use this
  1. Install python:
  2. Search for "Command Prompt" in the start menu and open it
  3. Type "pip install pyautogui" and press enter in the command prompt
  4. Search for "python" in the start menu and run it as administrator (not sure if you need to run it as admin but it doesn't hurt)
  5. Paste the code in my post into the "python" application and press enter
Now when you're in game (only works if it's full screen and at 1920x1080 resolution), it'll click when the hearts are in the middle.
 

Perang0711

New Member
Dec 1, 2019
6
1
  1. Install python:
  2. Search for "Command Prompt" in the start menu and open it
  3. Type "pip install pyautogui" and press enter in the command prompt
  4. Search for "python" in the start menu and run it as administrator (not sure if you need to run it as admin but it doesn't hurt)
  5. Paste the code in my post into the "python" application and press enter
Now when you're in game (only works if it's full screen and at 1920x1080 resolution), it'll click when the hearts are in the middle.
ok thank you
 
4.20 star(s) 10 Votes