RPC DLL for all updates - Source code included!
Hey
Today I'll be making my first major release for ghosts - an RPC (remote procedure calls) DLL that allows you to call any function in the game from your PC!
This DLL is intended to be used by developers - it must be added to a C# project to be used. It does not contain the ps3tmapi_net DLL, but it will not work if the file is not on your computer. This DLL will only work for DEX users.
How to Use
1. Download the DLL.
2. Add the DLL as a reference to your C# Project.
3. In your code, after you have connected and attached the process, enter this code:
Code:
4. Enjoy your RPC!
How to Call Functions
1. After finding the function you want to call, simply use this format:
Code:
This RPC will work for any updates from 1.03 onwards.
Download
Download the DLL: https://www.mediafire.com/?d0wqykzy9z29wqz
Virus Scan: https://www.virustotal.com/en/file/b...is/1386375986/
Download source code (C# Project): https://www.mediafire.com/?szo97djd79dzj67
Thanks to aerosoul94 for his PS3TMAPI importing functions!
Enjoy this guys! I plan on soon creating a version for CEX users
Credits: Choco
Hey
Today I'll be making my first major release for ghosts - an RPC (remote procedure calls) DLL that allows you to call any function in the game from your PC!
This DLL is intended to be used by developers - it must be added to a C# project to be used. It does not contain the ps3tmapi_net DLL, but it will not work if the file is not on your computer. This DLL will only work for DEX users.
How to Use
1. Download the DLL.
2. Add the DLL as a reference to your C# Project.
3. In your code, after you have connected and attached the process, enter this code:
Code:
Code:
int err = GHOSTS.PS3.Init();
This code will will return 0 if the RPC is successfully initialized, and -1 if an error occurs.
4. Enjoy your RPC!
How to Call Functions
1. After finding the function you want to call, simply use this format:
Code:
Code:
GHOSTS.RPC.Call(uint func_address, params object[] parameters);
Unlike my previous RPC releases, this one supports many argument types: floats (single-precision), ints, uints, and strings.
This RPC will work for any updates from 1.03 onwards.
Download
Download the DLL: https://www.mediafire.com/?d0wqykzy9z29wqz
Virus Scan: https://www.virustotal.com/en/file/b...is/1386375986/
Download source code (C# Project): https://www.mediafire.com/?szo97djd79dzj67
Thanks to aerosoul94 for his PS3TMAPI importing functions!
Enjoy this guys! I plan on soon creating a version for CEX users
Credits: Choco