General: Add in a API call to hide infection timer.

This commit is contained in:
zaCade 2019-01-23 18:48:00 +01:00
parent 0c6b863c00
commit a251f6b755
2 changed files with 22 additions and 2 deletions

View File

@ -28,6 +28,7 @@
/**
* @section Global forward handles.
*/
new Handle:g_hAPIFwdOnInfectCountdown = INVALID_HANDLE;
new Handle:g_hAPIFwdOnClientInfect = INVALID_HANDLE;
new Handle:g_hAPIFwdOnClientInfected = INVALID_HANDLE;
new Handle:g_hAPIFwdOnClientHuman = INVALID_HANDLE;
@ -51,6 +52,7 @@ APIInfectInit()
CreateNative("ZR_HumanClient", APIHumanClient);
// Forwards
g_hAPIFwdOnInfectCountdown = CreateGlobalForward("ZR_OnInfectCountdown", ET_Hook);
g_hAPIFwdOnClientInfect = CreateGlobalForward("ZR_OnClientInfect", ET_Hook, Param_CellByRef, Param_CellByRef, Param_CellByRef, Param_CellByRef, Param_CellByRef);
g_hAPIFwdOnClientInfected = CreateGlobalForward("ZR_OnClientInfected", ET_Ignore, Param_Cell, Param_Cell, Param_Cell, Param_Cell, Param_Cell);
g_hAPIFwdOnClientHuman = CreateGlobalForward("ZR_OnClientHuman", ET_Hook, Param_CellByRef, Param_CellByRef, Param_CellByRef);
@ -126,6 +128,20 @@ public APIHumanClient(Handle:plugin, numParams)
return InfectZombieToHuman(client, respawn, protect);
}
/**
* Called on infection timer to determine if timer should show.
*/
Action:APIOnInfectCountdown()
{
// Start forward call.
Call_StartForward(g_hAPIFwdOnInfectCountdown);
// Get what they returned.
new Action:result;
Call_Finish(result);
return result;
}
/**
* Called when a client is about to become a zombie.
*

View File

@ -694,8 +694,12 @@ public Action:InfectCountdown(Handle:timer)
return Plugin_Stop;
}
// Print the countdown text to the clients.
TranslationPrintCenterTextAll(false, "Infect countdown", RoundToNearest(length - counter));
// Ask plugin API if timer should be shown.
if (APIOnInfectCountdown() == Plugin_Continue)
{
// Print the countdown text to the clients.
TranslationPrintCenterTextAll(false, "Infect countdown", RoundToNearest(length - counter));
}
counter++;