AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Orpheu Signature Help (https://forums.alliedmods.net/showthread.php?t=328186)

Al3x1337 10-30-2020 04:14

Orpheu Signature Help
 
Hello everybody !

I need help for finding a signature on linux for NET_QueuePacket

I found this

Code:

8B 44 24 04 56 57 53 55  81 EC EC 0F 00 00 8B D0
I made this:

Code:

[0x8B,0x44,0x24,0x04,0x56,0x57,0x53,0x55,0x81,0xEC,0xEC,0x0F,0x00,0x00,0x8B,0xD0]
but nothing works. i try with name functions

Code:

_Z15NET_QueuePacket8netsrc_s
nothing..


Code:

{
    "name"      : "NET_QueuePacket",
    "library"  : "engine",
    "arguments" :
    [
        {
            "type" : "int"
        }
    ],
    "identifiers" :
    [
        {
            "os"    : "windows",
            "mod"  : "cstrike",
            "value" : [0x55,0x8B,0xEC,0x81,0xEC,"*","*","*","*",0x53,0x8B,"*","*",0x56,0x57,0x33,0xFF,0x89,"*","*",0x85,0xFF]
        },
        {
            "os"    : "linux",
            "mod"  : "cstrike",
            "value" : [0x8B,0x44,0x24,0x04,0x56,0x57,0x53,0x55,0x81,0xEC,0xEC,0x0F,0x00,0x00,0x8B,0xD0]
        }
    ]
}

or

Code:

{
    "name"      : "NET_QueuePacket",
    "library"  : "engine",
    "arguments" :
    [
        {
            "type" : "int"
        }
    ],
    "identifiers" :
    [
        {
            "os"    : "windows",
            "mod"  : "cstrike",
            "value" : [0x55,0x8B,0xEC,0x81,0xEC,"*","*","*","*",0x53,0x8B,"*","*",0x56,0x57,0x33,0xFF,0x89,"*","*",0x85,0xFF]
        },
        {
            "os"    : "linux",
            "mod"  : "cstrike",
            "value" : "_Z15NET_QueuePacket8netsrc_s"
        }
    ]
}

Some help? :D

Al3x1337 10-31-2020 12:54

Re: Orpheu Signature Help
 
Help? up? :D

HamletEagle 10-31-2020 15:35

Re: Orpheu Signature Help
 
What do you mean it doesn't work? The function is not found? It is found but your hook is never called?

Also, don't bump.

Al3x1337 10-31-2020 19:31

Re: Orpheu Signature Help
 
Quote:

Originally Posted by HamletEagle (Post 2723262)
What do you mean it doesn't work? The function is not found? It is found but your hook is never called?

Also, don't bump.

NET_QueuePacket not found.


All times are GMT -4. The time now is 13:46.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.