diff --git a/plugins/include/amxmisc.inc b/plugins/include/amxmisc.inc index 2510afe9..26a2499a 100755 --- a/plugins/include/amxmisc.inc +++ b/plugins/include/amxmisc.inc @@ -809,6 +809,13 @@ stock reset_menu(index) /** * Calls a function after a specified time has elapsed. * + * @note The function is called in the following manner if data is passed: + * data[] - Data passed + * id - Task index + * + * @note The function is called in the following manner if no data is passed: + * id - Task index + * * @param time Time interval to assign * @param function Function to execute * @param id Task id to assign diff --git a/plugins/include/amxmodx.inc b/plugins/include/amxmodx.inc index ed1f3ec5..5f4ba7e2 100755 --- a/plugins/include/amxmodx.inc +++ b/plugins/include/amxmodx.inc @@ -1762,6 +1762,13 @@ native parse_time(const input[], const format[], time = -1); * @note Please consider using set_task_ex() instead which allows you to * use named constants for flags instead of letters. * + * @note The function is called in the following manner if data is passed: + * data[] - Data passed + * id - Task index + * + * @note The function is called in the following manner if no data is passed: + * id - Task index + * * @param time Time interval to assign * @param function Function to execute * @param id Task id to assign