Do you want to limit the menu to only display once, or be able to use the options in the menu only once?
If you want it only to be able to display the menu once, then move AlreadyUsed[id] = true from HandleMenu() to VMENU() inside the IF statement.
Also, add this to plugin_init:
register_event("RoundTime", "new_round", "bc")
and a new function:
PHP Code:
public new_round() {
if(floatround(get_cvar_float("mp_roundtime") * 60.0,floatround_floor) != read_data(1)) return
new counter;
counter = 0;
while(counter < sizeof(AlreadyUsed)) {
AlreadyUsed[counter] = false;
}
}
So you'll reset the data of menu already being used that round.