Separate the AMX
#30

Quote:
Originally Posted by SMX
Yeah that's what I meant.
But how do you replace that address?
There's a Call(DWORD from, DWORD to) function somewhere in ******' multithreading plugin - example:

pawn Код:
int hkFunctionToHook(int arg1, int arg2)
{
  logprintf("Received call to FunctionToHook! I block it, do nothing.");
  return 1;
}
pawn Код:
Call((DWORD)0x12345678, (DWORD)&hkFunctionToHook); // we redirect the function call to our function
if you actually want not to block the function call, you need to store the original (internal) function address into a function pointer:
pawn Код:
typedef RETTYPE (*FunctionToHook_t)(int, int);
FunctionToHook_t pfnOriginalFunction = (FunctionToHook_t)0x11234567;

int hkFunctionToHook(int arg1, int arg2)
{
  logprintf("Received call to FunctionToHook! I just append this log message.");
  // Call the original function
  return pfnOriginalFunction(arg1, arg2);
}
Reply


Messages In This Thread
Separate the AMX - by SMX - 28.12.2009, 21:44
Re: Separate the AMX - by cmg4life - 28.12.2009, 22:02
Re: Separate the AMX - by pliva_sb - 28.12.2009, 22:06
Re: Separate the AMX - by Zeex - 28.12.2009, 22:22
Re: Separate the AMX - by Google63 - 28.12.2009, 22:54
Re: Separate the AMX - by SMX - 28.12.2009, 23:11
Re: Separate the AMX - by Striker_Moe - 31.12.2009, 19:49
Re: Separate the AMX - by Calon - 04.01.2010, 07:11
Re: Separate the AMX - by BP13 - 04.01.2010, 07:20
Re: Separate the AMX - by MPKaboose - 04.01.2010, 15:13
Re: Separate the AMX - by SMX - 04.01.2010, 15:53
Re: Separate the AMX - by JernejL - 04.01.2010, 16:01
Re: Separate the AMX - by Burridge - 04.01.2010, 16:16
Re: Separate the AMX - by SMX - 04.01.2010, 21:29
Re: Separate the AMX - by Streetplaya - 05.01.2010, 22:15
Re: Separate the AMX - by SMX - 06.01.2010, 02:54
Re: Separate the AMX - by Streetplaya - 06.01.2010, 07:37
Re: Separate the AMX - by Streetplaya - 06.01.2010, 08:46
Re: Separate the AMX - by Streetplaya - 06.01.2010, 09:35
Re: Separate the AMX - by SMX - 06.01.2010, 13:41
Re: Separate the AMX - by Streetplaya - 06.01.2010, 17:33
Re: Separate the AMX - by SMX - 06.01.2010, 21:54
Re: Separate the AMX - by SMX - 07.01.2010, 02:21
Re: Separate the AMX - by SMX - 07.01.2010, 13:41
Re: Separate the AMX - by Streetplaya - 07.01.2010, 13:46
Re: Separate the AMX - by Google63 - 07.01.2010, 13:52
Re: Separate the AMX - by SMX - 07.01.2010, 14:29
Re: Separate the AMX - by Streetplaya - 07.01.2010, 14:35
Re: Separate the AMX - by SMX - 07.01.2010, 14:43
Re: Separate the AMX - by Streetplaya - 07.01.2010, 14:52
Re: Separate the AMX - by SMX - 07.01.2010, 16:07
Re: Separate the AMX - by SMX - 07.01.2010, 16:43
Re: Separate the AMX - by iLinx - 11.01.2010, 13:53
Re: Separate the AMX - by SMX - 11.01.2010, 20:01
Re: Separate the AMX - by iLinx - 12.01.2010, 20:29
Re: Separate the AMX - by SMX - 12.01.2010, 22:32
Re: Separate the AMX - by Littlejth - 22.01.2010, 03:48
Re: Separate the AMX - by Streetplaya - 22.01.2010, 13:02

Forum Jump:


Users browsing this thread: 1 Guest(s)