Page 1 of 1

DOMO (Dream Of Mirror Online) auto-musician

Posted: Sat Jan 05, 2008 7:42 pm
by Administrator
NOTE: This script is designed for MicroMacro v0.95

This is a script that a friend of and mine have used in DOMO. Simply set up a second computer to run this script on your musician. It will continue to use skills F1 to F4, casting them 11 seconds apart.

You can add, remove or edit the key presses it uses however you want.

Code: Select all

function main()
  win = findWindow("DOMO - Dream Of Mirror Online(Dec 28 2007)");
  attach(win);

  running = true;
  while( running ) do
    keyboardPress(key.VK_F1);
    yrest(11000);  -- 11 seconds

    keyboardPress(key.VK_F2);
    yrest(11000);  -- 11 seconds

    keyboardPress(key.VK_F3);
    yrest(11000);  -- 11 seconds

    keyboardPress(key.VK_F4);
    yrest(11000);  -- 11 seconds
  end

  detach(win);
end

startMacro(main);
Â