PSXHAX.COM website and domain for sale. Contact Us with your offer!
PS4 DualShock 4 Controller to PC Mouse Python Script by Kairess
Following the PyPS4Controller Module this weekend Kairess of LeeTaehee.me made available a PS4 Controller to Mouse Python script for those seeking to use their PlayStation 4 DualShock 4 (DS4) Controller as a computer mouse. 🎮 🖱

Download: ps4-controller-mouse-master.zip / GIT

PS4 Controller to Mouse

Make PS4 controller (DualShock 4) into computer mouse with Python

Feature
  • Left stick to move mouse pointer
  • Right stick to scroll
  • Circle button to click
Dependency
FYI

I tried https://github.com/ArturSpirin/pyPS4Controller on my iMac but it didn't work, because OS X doesn't support SPP for wireless controller. It seems like only working on Linux.
this set of files should produce the necessary keys for the GP2040-CE PS4 Mode. You can quickly find it via google search but i've decided to put it here for you to use. This will make the device be able to skip 8 minute timeout
  • ds4-master-custom-lJArAqXq.zip (789.79 KB - includes ds4sig.bin, jedi_crypto.py, jedi_crypto-mod.py, jedi_flash-Aug_3_2013.bin, jedi_flash, Aug_3_2013.idc, jedi_tool.py and ps4nonce.bin via GodzIvan)
emulating ps4 controller without 8 minute timeout

From the included README.md:
Code:
# ds4
Tools for working with DualShock 4

With fw of controller, it is possible to do interesting things like:
 * flash custom fw to controller
 * learn how all aspects of controller works
 * implement native pairing on other host devices
 * present custom hardware as "official" DS4 to PS4

- GodzIvan -

Working ????
New P.T. PS4 Hidden Scenes: Lisa's Unseen Behaviors by ManFightDragon
Proceeding his P.T. Silent Hills PS4 Unseen Content and recent God of War PS4 Camera Hacks demos, @manfightdragon is back via Twitter with some new Playable Teaser PS4 Hidden Scenes featuring Lisa's unseen behaviors where she stalks the player and makes barely seen appearances. :eek:

Check out his latest demo below, don't forget to drop by his Discord Channel, subscribe to Lance McDonald's YouTube Channel and support his continued video game hacking, modding and exploration work on Patreon as well! <3
P.T. Unseen Content - Lisa's Unseen Behaviors - Hidden Scenes
P.T. Hacker Uncovers Unseen Visual Tricks Devs Used For Lisa's Creepy Behavior
Easy PKG Extractor to Extract PS4 PKGs (Packages) by Lapy05575948
Since the PS4 PKG Unpacker, PKGDecrypt, PS4 PKGDec Tool, PS4PKGViewer, OrbisPKG PS4 Tool, UnPKG, his recent Lapy Games Collection PS4 PKG and River Raid PS4 WIP project PlayStation 4 homebrew developer @Lapy is back via Twitter with an Easy PKG Extractor to extract installed PS4 PKGs (Packages) to a USB device connected to the console! 😍

Download: Easy PKG Extractor 1.07 - Lapy.rar (50.4 MB - includes Easy PKG Extractor 1.07 - Lapy.pkg) / Mirror

Spoiler: Legacy Versions
PS4Viewer Web App to Sync PS4 Game Details via IGDB by Codeverse
Proceeding the PS4 Release Calendar Updater Script, developer Codeverse (aka stefkarg) recently updated his PS4Viewer project on Github which is a Web application to sync video game information from the Internet Games Database (acquired by Twitch last year) via the IGDB API populating the results in a searchable list. :geek:

Download: ps4viewer-master.zip / GIT

Here's more from the README.md: PS4Viewer

PS4 Viewer is a Web Application that syncs video games' information from IGDB API and shows this information in a searchable list.

Instructions on how to setup development environment

Java

  • Install JDK 8
  • Add Java bin folder to PATH environmental variable
Eclipse
  • Clone repositories ps4viewer, ps4viewer-ui and codehelp
  • Install Eclipse 2019-09
  • File --> Open Projects From Filesystem
  • Select ps4viewer
  • Also open codehelp in the same way
  • Set codehelp as dependency of ps4viewer
MySQL
  • Install MySQL 8
  • Create a user other than root (e.g. psuser)
  • Connect to database with this user (use MySQL Workbench) and create a database (e.g. psdb)
  • In application.properties of ps4viewer repository set the credentials for the new database/user
Tomcat
  • Install Tomcat 9
  • In Eclipse go to Window --> Preferences --> Server --> Runtime Environments --> Select installed Tomcat as server
Spring Tools
  • In Eclipse go to Help --> Eclipse Marketplace --> Install Spring Tools 4
  • Restart Eclipse
  • Right click on ps4viewer --> Run As --> Spring Boot App
  • This will create the proper Run Configuration in Eclipse
Angular
  • The repository ps4viewer-ui is in Angular
  • Install node.js 12.16.1
  • Open a console
  • npm install -g @angular/cli
  • Go to the root folder of ps4viewer-ui...
PS4 Remote Simple AFK Detection Script for Online Games by Haru0517
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...
Back
Top