Page 1 of 1

mage/warden question

Posted: Mon Aug 19, 2013 4:20 pm
by zeljomir
i got one question, i remember old macro for register SW it go like this "/script for i=1, 500, 1 do GuildHousesWar_Register() end" can i use simular thing for flame whit new elite skill ??

Re: mage/warden question

Posted: Mon Aug 19, 2013 5:01 pm
by BlubBlab
Any macro system that exist with the exception of rom's internal macro system.
e.g MM here , Autohotkey, Keybordmacros ......

In MM it would be like this(from demo):

Code: Select all

function main()
 
  while(true) do
    ---key under which is your spell
     keyboardPress( key.VK_1 );
    -- if they press space bar, break out of the while
    if( keyPressedLocal(key.VK_SPACE) ) then
      break;
    end
  end
 
end
  
-- startMacro will now call main() within a protected environment for us.
startMacro(main);