Hey will those spell training scripts work for skill trainin

Moderator: MacroQuest Developers

ryu1356
decaying skeleton
decaying skeleton
Posts: 2
Joined: Tue May 23, 2006 6:06 pm

Hey will those spell training scripts work for skill trainin

Post by ryu1356 » Wed Jul 19, 2006 1:16 am

Hey I wanted to train my hiding and sneaking on my rogue so I was wondering if those spell training scripts can be configured to do sneak and hide?

User avatar
aChallenged1
a grimling bloodguard
a grimling bloodguard
Posts: 1804
Joined: Mon Jun 28, 2004 10:12 pm

Post by aChallenged1 » Wed Jul 19, 2006 6:25 am

I'd just write one to do sneak and hide. it shouldn't be that hard, really.
Fuck writing MQ2 macros. Go with IS scripts; IS Rules!

hendrix04
a lesser mummy
a lesser mummy
Posts: 38
Joined: Tue Jul 13, 2004 5:02 pm

Post by hendrix04 » Sun Sep 17, 2006 2:11 am

ok, im not sure on how long it takes for sneak/hide to renew (if there is any time) but this will sneak then hide, turn off sneak and hide, then wait 5 seconds and do it again. If there is no reuse change the wait 50 to waitframe. if ti is longer than 5 seconds adjust the wait accordingly. Also it assumes sneak is hotbutton 1 and hide is hotbutton 2...

Code: Select all

function main()
{
  while 1
  {
    press 1
    press 2
    waitframe
    press 1
    press 2
    wait 50
  }
}