View Single Post
joropito
AlliedModders Donor
Join Date: Mar 2009
Location: pfnAddToFullPack
Old 07-26-2018 , 10:50   Re: func vs func_POST
Reply With Quote #5

Normally on the engine or game dll there're calls (ClientCommand for example).

Metamod hooks the call and replace with this:

Code:
ClientCommand_Hook() {
  call Metamod_Module_Client_Command()
  call Original_ClientCommand()
  call Metamod_Module_Client_Command_Post()
}
So not all _Post() calls can be useful, sometimes only works to know there was a call. The thing is you can't modify too much stuff after the original was called.
__________________

Divide et vinces
approved plugins | steam account

I don't accept PM for support. Just ask on forums.
If you're looking for private work, PM me.

Last edited by joropito; 07-26-2018 at 10:50.
joropito is offline
Send a message via MSN to joropito