you for got to set the time in the task ..you have 0.0
i set ist to 0.2
PHP Code:
if ( get_user_flags(id) & ACCESS && RoundCount == 3 )
{
set_task(0.2, "show_menu", id);
}
or like xpaw said
PHP Code:
if ( get_user_flags(id) & ACCESS && RoundCount == 3 )
{
show_menu(id);
}
__________________