PSXHAX.COM website and domain for sale. Contact Us with your offer!
PS4 GTA V Native Caller / Invoker (GTANatives.dll) by BISOON
Hi everyone.

As far as I know, GTA V natives invoker already ported to PS4 and can only be injected into the game process to make it works and to call the native function. To be honest, I don't like to use a mod menu for a couple of reasons (that's no matter), last week I was working on RPC function that can serve our purpose to call native remotely using desktop tools as we already have on PS3.

Most of you if not all (developers) know the awesome and huge header file which is natives.h by Alexander blade and his team for GTA V, so I just converted all the functions listed in the nativedb to C# [B]file[/B]. now c# developers able to call over 2000 natives that rely on the [B]RPC.cs[/B], this will be good for (desktop app developers, testers, etc)

RPC class made on top of the PS4Lib.dll and it's only valid for GTA V. and the first argument of Call method can be either native hash or the function address.

Also I made the GTANatives dll to make it easier for people, only reference it in your C# project and you're ready to go.

Download: GTA5-Native-Caller-master.zip / GIT

GTANatives

GTA 5 Library for PS4 to create desktop tools. This library allows you to call over 2000 native functions that can be found here Nativedb

Brief Example:

Enable RPC
Code:
public static void Enable(PS4API ps4);

Call function (Thread Safe)
Code:
public static T Call<T>(ulong address, params object[] parameters);
Demo that referenced GTANatives.dll
Code:
      PS4API PS4 = new PS4API();
      private void btnConnect_Click(object sender, EventArgs e)
        {
            if (PS4.IsConnected)
                return;

            btnConnect.ForeColor = PS4.ConnectTarget(txtIp.Text)  ?  Color.Green : Color.Red;

        }

        private void btnAttach_Click(object sender, EventArgs e)
        {
            btnAttach.ForeColor = PS4.AttachProcess() ? Color.Green : Color.Red...
Back
Top