This is the AMP version of this page.
If you want to load the real page instead, click this text.

Solved Help with hook?

Status
Not open for further replies.

Daleon228_09

Solid & Active Platinian
Help hook this
C#:
private void RpcSpawnGrenade(int OOFLGCNHPII, Vector3 KGCMGOKFKAH, Vector3 CFPJOKBPNNO, MLOJMPNNOJN.CGCHGOHHMPA EKMLLGOCIBN) { }

Im try this
C++:
void (*old_nuke)(void *instance, int a, Vector3 b, Vector3 c, void* d);
void nuke(void *instance, int a, Vector3 b, Vector3 c, void* d){
    if (instance != NULL){
        if (Nuke){
            old_nuke(instance, a, b, c, d);
            old_nuke(instance, a, b, c, d);
            old_nuke(instance, a, b, c, d);
            old_nuke(instance, a, b, c, d);
        }
    }
    return old_nuke(instance, a,b,c,d);
}
but this doesn't work
 
Looks like a photon game to me. That requires an RPC call. For that, you need to learn how photon works. A simple hook like that won't do anything. Ig your game here is FWD, or another game by Blayze Games. And the last parameter looks like an enum to me, not a void. So, you would use an int there.
 
Thread will be set to "solved" and closed.
When you're not happy with that just send me a message and i will re-open the thread for you.

Thanks.
 
Status
Not open for further replies.