Join Us and become a Member for a Verified Badge to access private areas with the latest PS4 PKGs.
PS4 CFW and Hacks       Thread starter PSXHAX       Start date Mar 8, 2020 at 6:11 AM       3      
Status
Not open for further replies.
Following the GTA Online PS4 Bunker Automation Utility release earlier this year, developer and fellow cat lover Haru0517 recently made available PS4 Remote Simple AFK which is a simple key input application Python script using PS4 Remote Play to avoid AFK detection of online games such as Red Dead Online. 😺 🐈

Download: PS4-remote-simple-AFK-master.zip / GIT

From the README.md, to quote: PS4-remote-simple-AFK

Simple key input application using PS4 remote play to avoid AFK detection of online games such as RED DEAD ONLINE.

Description

This tool controls your keyboard to hook key events. It hooks part of keyboard input that allowed by PS4 remote play app such as enter and arrow keys. Press enter to start, Press Ctrl+C to stop.

Requirements
  • python
    • pip
Usage
  • Install required module for the first time.
Code:
$ pip install -r requirements.txt
  • Run source code.
Code:
$ python hook.py
And from hook.py:
Code:
import keyboard
import time
import random

keys = ["enter", "down arrow", "up arrow"]

message = """
***************************************************
***            PS4 REMOTE SIMPLE AFK            ***
***************************************************

This tool controls your keyboard to hook key events.
It hooks part of keyboard input that allowed by PS4
remote play app such as enter and arrow keys.
Press enter to start, Press Ctrl+C to stop.

---------------------------------------------------
"""

print(message)
print('Press enter to start...')
input('>')
print('Start!')
print('Note: press Ctrl+C to stop.')
print('\n---------------------------------------------------\n')


while True:
    keyboard.send(keys[random.randrange(3)])
    time.sleep(random.uniform(0.1, 3))
PS4 Remote Simple AFK Detection Script for Online Games by Haru0517.jpg
 

Comments

Status
Not open for further replies.
Back
Top