1REM Example Random Integer 2ATTACKMODE HID STORAGE 3 4LED_OFF 5VAR $A = $_RANDOM_INT 6WHILE ($A > 0) 7 LED_G 8 DELAY 500 9 LED_OFF 10 DELAY 500 11 $A = ($A - 1) 12END_WHILE 13 14 15REM Each time this payload is executed, the LED will randomly blink between 1 and 9 times. 16 17