Hey, I noticed the CPU usage of the 5.3.4 version (only one I use right now) was about 50% (laptop has 2x CPU so it consumes 1x CPU). I tested and reduced the consumption by adding a sleep() function to while loop of the the GUI input.
Hope this is useful.
Cheers!
Code:
While 1
GUIGetMsg()
If _GUICtrlComboBox_GetCurSel($cmbTroopComp) <> $icmbTroopComp Then
$icmbTroopComp = _GUICtrlComboBox_GetCurSel($cmbTroopComp)
SetComboTroopComp()
EndIf
Sleep(100) ;Reduce the CPU consumption by 90+%
WEnd
Hope this is useful.
Cheers!