Guest User

Untitled

a guest
Jun 23rd, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (mouse_check_button_pressed(mb_right)) {
  2.   var count, ids;
  3.   count = 0;
  4.   for (i = 0; i < instance_number(obj_unit); i += 1) {
  5.     if (instance_find(obj_unit, i).selected == 1) {
  6.       count += 1;
  7.       ids[count] = instance_find(obj_unit, i).id;
  8.     }
  9.   }
  10.   //show_message(count);
  11.  
  12.   for (i = 0; i < count/4; i += 1) {
  13.     for (j = 0; j < count/4; j += 1) {
  14.       var ii;
  15.       ii = ids[i + j];
  16.       ii.new_x = mouse_x + (i * 20);
  17.       ii.new_y = mouse_y + (j * 20);
  18.     }
  19.   }
  20. }
Add Comment
Please, Sign In to add comment