DOMO (Dream Of Mirror Online) auto-musician

You may request or share scripts for MicroMacro in this forum.
Post Reply
Message
Author
User avatar
Administrator
Site Admin
Posts: 5306
Joined: Sat Jan 05, 2008 4:21 pm

DOMO (Dream Of Mirror Online) auto-musician

#1 Post by Administrator » Sat Jan 05, 2008 7:42 pm

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);
 

Post Reply

Who is online

Users browsing this forum: No registered users and 5 guests