What's the problem, hooks can be added as much as I want.
PHP код:
//Hook: OnPlayerEnterDynamicCP
public OnPlayerEnterDynamicCP(playerid,checkpointid){
//bla bla
#if defined YOUTAG_OnPlayerEnterDynamicCP
YOUTAG_OnPlayerEnterDynamicCP(playerid,checkpointid);
#endif
return 1;
}
#if defined _ALS_OnPlayerEnterDynamicCP
#undef OnPlayerEnterDynamicCP
#else
#define _ALS_OnPlayerEnterDynamicCP
#endif
#define OnPlayerEnterDynamicCP YOUTAG_OnPlayerEnterDynamicCP
#if defined YOUTAG_OnPlayerEnterDynamicCP
forward YOUTAG_OnPlayerEnterDynamicCP(playerid,checkpointid);
#endif