1) Add '[B][COLOR="#0066cc"]SPC.DLL[/COLOR][/B]' as a reference in your c# project.
2) Add a using statement in your desired class like so...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
[B][COLOR="#0066cc"]using SPC;[/COLOR][/B]
3) You'll be calling to the SourcePort.cs class, so first things first. Set the desired system IP address
[COLOR="#0066cc"][B]SourcePort.IP[/B][/COLOR] = "000.000.0.00"; //IP HERE
4) [COLOR="#0066cc"][B]SourcePort.Start()[/B][/COLOR] is what you'll use to Connect, Attach, & Enable RPC (It does it all in order).
It is a bool function which means it returns either True or False.
True if everything went accordingly, and False otherwise.
private static void yourStartFunction()
{
[COLOR="#0066cc"][B]bool isRunning = SourcePort.Start();[/B][/COLOR] // <-- starts the DLL, & stores True or False in this variable.
}
Credits:
- Choco [His original DLL / PPC Code]
- iMCSx [His PS3Lib, Makes CEX RTE Possible]
- SC58 [Some IDA Assistance]
1) Add '[B][COLOR="#0066cc"]SPC.DLL[/COLOR][/B]' as a reference in your c# project.
2) Add a using statement in your desired class like so...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
[B][COLOR="#0066cc"]using SPC;[/COLOR][/B]
3) You'll be calling to the SourcePort.cs class, so first things first. Set the desired system IP address
[COLOR="#0066cc"][B]SourcePort.IP[/B][/COLOR] = "000.000.0.00"; //IP HERE
4) [COLOR="#0066cc"][B]SourcePort.Start()[/B][/COLOR] is what you'll use to Connect, Attach, & Enable RPC (It does it all in order).
It is a bool function which means it returns either True or False.
True if everything went accordingly, and False otherwise.
private static void yourStartFunction()
{
[COLOR="#0066cc"][B]bool isRunning = SourcePort.Start();[/B][/COLOR] // <-- starts the DLL, & stores True or False in this variable.
}
Credits:
- Choco [His original DLL / PPC Code]
- iMCSx [His PS3Lib, Makes CEX RTE Possible]
- SC58 [Some IDA Assistance]
1) Add '[B][COLOR="#0066cc"]SPC.DLL[/COLOR][/B]' as a reference in your c# project.
2) Add a using statement in your desired class like so...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
[B][COLOR="#0066cc"]using SPC;[/COLOR][/B]
3) You'll be calling to the SourcePort.cs class, so first things first. Set the desired system IP address
[COLOR="#0066cc"][B]SourcePort.IP[/B][/COLOR] = "000.000.0.00"; //IP HERE
4) [COLOR="#0066cc"][B]SourcePort.Start()[/B][/COLOR] is what you'll use to Connect, Attach, & Enable RPC (It does it all in order).
It is a bool function which means it returns either True or False.
True if everything went accordingly, and False otherwise.
private static void yourStartFunction()
{
[COLOR="#0066cc"][B]bool isRunning = SourcePort.Start();[/B][/COLOR] // <-- starts the DLL, & stores True or False in this variable.
}
Credits:
- Choco [His original DLL / PPC Code]
- iMCSx [His PS3Lib, Makes CEX RTE Possible]
- SC58 [Some IDA Assistance]
Copyright © 2026, NextGenUpdate.
All Rights Reserved.