01.04.2020, 20:12
Take a look here:
https://sampforum.blast.hk/showthread.php?tid=574534
Here's a simple example of a callback hook:
https://sampforum.blast.hk/showthread.php?tid=574534
Here's a simple example of a callback hook:
PHP Code:
public OnPlayerConnect(playerid)
{
#if defined MyLib_OnPlayerConnect
MyLib_OnPlayerConnect(playerid);
#endif
return 1;
}
#if defined _ALS_OnPlayerConnect
#undef OnPlayerConnect
#else
#define _ALS_OnPlayerConnect
#endif
#define OnPlayerConnect MyLib_OnPlayerConnect
#if defined MyLib_OnPlayerConnect
forward MyLib_OnPlayerConnect(playerid);
#endif