Consider a player weak by their ITM changing the threshold depending on the time and the day of week:
- less than 50% in the morning;
- less than 48% in the afternoon and at night;
- less than 46% in the evening and on the weekends.
(time(ANY,05,00,12,00) and ITM<50) or
((time(ANY,12,00,17,00) or
time(ANY,21,00,05,00)) and ITM<48) or
((time(ANY,17,00,21,00) or
time(SAT+SUN,00,00,23,59)) and ITM<46)