| 1 |
script_execute(scr_color_light_blue); |
| 2 |
can_execute = true; |
| 3 |
final_circle = circle_count - 1; |
| 4 |
shrink_speed = 2; |
| 5 |
small_circle = 16; |
| 6 |
outline_start = 30; |
| 7 |
imagea_default = 1; |
| 8 |
imagea_dec = 0.05263157894736842; |
| 9 |
thick_default = 0; |
| 10 |
thick_increase = 2; |
| 11 |
color_default[0] = 16777215; |
| 12 |
color_default[1] = 0; |
| 13 |
color_hit[0] = c_lightblue; |
| 14 |
color_hit[1] = 65535; |
| 15 |
color_hit[2] = 255; |
| 16 |
color_alt_speed = 0.5; |
| 17 |
color_alt_max = 1; |
| 18 |
for (i = 0; i < circle_count; i++) |
| 19 |
{ |
| 20 |
outline[i] = outline_start; |
| 21 |
shrink[i] = true; |
| 22 |
hit[i] = 0; |
| 23 |
imagea[i] = imagea_default; |
| 24 |
thickness[i] = thick_default; |
| 25 |
cursor_color[i] = color_default[0]; |
| 26 |
outline_color[i] = color_default[1]; |
| 27 |
color_hit_number[i] = 0; |
| 28 |
color_alt_total[i] = -color_alt_speed; |
| 29 |
outline_start += (shrink_speed * 15); |
| 30 |
} |
| 31 |
shot_total = 0; |
| 32 |
shot_total_pre = 0; |
| 33 |
button_pressed = false; |
| 34 |
button_pressed_main = false; |
| 35 |
button_pressed_pre = false; |
| 36 |
circle_current = 0; |
| 37 |
no_loop = false; |
| 38 |
execute_create = true; |