Page 1 of 1

Signature help

Posted: Sun May 04, 2025 3:06 pm
by satoon101
I could use a little help finding a couple CS:S signatures for my GunGame FFA Bots plugin, if anyone has the time. I haven't looked for signatures in probably a decade at this point, and the last place I got these signatures from no longer exists, unfortunately. Thanks in advance.

Syntax: Select all

{
"cstrike": {
"linux": {
"GetTeamNumber": "_ZNK11CBaseEntity13GetTeamNumberEv",
"InSameTeam": "_ZNK11CBaseEntity10InSameTeamEPS_",
"OnAudibleEvent": "_ZN6CCSBot14OnAudibleEventEP10IGameEventP11CBasePlayerf12PriorityTypebbPK6Vector",
"OnPlayerRadio": "_ZN6CCSBot13OnPlayerRadioEP10IGameEvent"
},
"windows": {
# On 1 occasion, I got:
# ValueError: Signature is too short to search for a hooked signature (absolute jump)
"GetTeamNumber": " 8B 81 F4 01 00 00 C3",

"InSameTeam": " 55 8B EC 8B 45 08 57 8B F9 85 C0 75 2A 32 C0 5F 5D C2 04 00",

# ValueError: Could not find signature
"OnAudibleEvent": " 55 8B EC 83 EC 1C 56 8B 75 0C 57 8B F9 85 F6",

# ValueError: Could not find signature
"OnPlayerRadio": " 55 8B EC 83 EC 0C 57 8B F9 8B 07 8B 80 04 01 00 00 FF D0 84 C0"
}
}
}

Re: Signature help

Posted: Sun May 04, 2025 10:20 pm
by L'In20Cible

Code: Select all

8B 81 1C 02 00 00 C3
55 8B EC 8B 45 08 57 8B F9 85 C0 75 07 32 C0
55 8B EC 83 EC 18 56 8B 75 0C 57 8B F9 85 F6
55 8B EC 83 EC 0C 57 8B F9 8B 07 8B 80 2A 2A 2A 2A FF D0 84 C0 0F 84

Re: Signature help

Posted: Mon May 05, 2025 11:36 am
by satoon101
Thank you! Much appreciated, as always.