Skip to content
/ PS4Lib Public

dynamic link library to create RTMs tools for PS4

Notifications You must be signed in to change notification settings

0xwal/PS4Lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
BISOON
Feb 18, 2018
e884c9b · Feb 18, 2018

History

2 Commits
Feb 18, 2018
Feb 18, 2018
Feb 18, 2018
Feb 18, 2018

Repository files navigation

PS4Lib

dynamic link library to create RTMs for PS4

Usage

You need PS4API.bin server payload in order to use this library.

A Brief Examples:

Instantiate the PS4API object:

PS4API PS4 = new PS4API();

Connect to target:

PS4.ConnectTarget("192.168.0.0");

Disconnect from target:

PS4.DisconnectTarget();

Attach to game process:

PS4.AttachProcess();

Detach Process:

PS4.DetachProcess();

Notify:

PS4.Notify(222, "Hello World!");

Write to memory:

PS4.SetMemory(0x0000000000000000, new byte[]{0x00,0x00});

Read from memory:

byte[] buffer = PS4.GetBytes(0x0000000000000000, 8);

GUI:

..

About

dynamic link library to create RTMs tools for PS4

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages