2
0
mirror of https://github.com/rehlds/reapi.git synced 2024-12-27 23:25:30 +03:00

Add rg_restart_round native (#145)

This commit is contained in:
fant1kua 2019-08-29 21:57:15 +03:00 committed by Dmitry Novikov
parent c1844753ca
commit 6988e81d2a
2 changed files with 23 additions and 0 deletions

View File

@ -837,6 +837,13 @@ native rg_get_iteminfo(const ent, ItemInfo:type, any:...);
*/
native bool:rg_hint_message(const index, const message[], Float:duration = 6.0, bool:bDisplayIfPlayerDead = false, bool:bOverride = false);
/*
* Instantly restart round.
*
* @noreturn
*/
native rg_restart_round();
/*
* Instantly check win conditions.
*

View File

@ -2151,6 +2151,21 @@ cell AMX_NATIVE_CALL rg_hint_message(AMX *amx, cell *params)
return pPlayer->CSPlayer()->HintMessageEx(message, args[arg_duration], args[arg_displayIfPlayerDead], args[arg_override]) ? TRUE : FALSE;
}
/*
* Instantly restart round.
*
* @noreturn
*
* native rg_restart_round();
*/
cell AMX_NATIVE_CALL rg_restart_round(AMX *amx, cell *params)
{
CHECK_GAMERULES();
CSGameRules()->RestartRound();
return TRUE;
}
/*
* Instantly check win conditions.
*
@ -2273,6 +2288,7 @@ AMX_NATIVE_INFO Misc_Natives_RG[] =
{ "rg_hint_message", rg_hint_message },
{ "rg_restart_round", rg_restart_round },
{ "rg_check_win_conditions", rg_check_win_conditions },
{ "rg_initialize_player_counts", rg_initialize_player_counts },