run hitmacro?

metalnick

Active Member
hey guys, I just got back into eq2 after 2 years, and there was this one command I used very often for afk killing mobs to level up, the command was something like "run hitmacro" and it would just spam the 1 key on the hotbars, my isx doesn't seem to recognize it, any tips on how to get it? :S
 

Kannkor

Ogre
hey guys, I just got back into eq2 after 2 years, and there was this one command I used very often for afk killing mobs to level up, the command was something like "run hitmacro" and it would just spam the 1 key on the hotbars, my isx doesn't seem to recognize it, any tips on how to get it? :S
uhhh... I'd say 99% of people here use bots, rather than a basic spam the 1 key. We have logic available to us, so we use it.


None the less... here's the code if you want it...
Code:
function main()
{
  while 1
  {
     press 1
     ;// Put a delay.. 10 = 1 second
     wait 10
   }
}
 

pr517

Active Member
I wrote something that keeps me going during forced patch updates.

Stick these in your scripts folder and type run masher to run it. If you have multiple computers, edit the uplink strings at the top of the masher.iss flie. If you are also wanting it to mash on this console and not just all others, do run masher all instead. Basically, the script monitors your caps lock. When you press caps lock, it will first send the "=" key. Then it will endlessly mash the "2" key. When you press caps lock again, it will stop mashing "2" and press "1" once. This is handy to reattach the characters to you after combat. So an in-game macro for the "1" key might look like this:

Code:
/stopfollow
/autoattack 0
/clearabilityqueue
/pet backoff
/cancel_spellcast
/follow Somebody
And, as always, don't use this stuff in public zones or else.
 

Attachments

metalnick

Active Member
uhhh... I'd say 99% of people here use bots, rather than a basic spam the 1 key. We have logic available to us, so we use it.


None the less... here's the code if you want it...
Code:
function main()
{
  while 1
  {
     press 1
     ;// Put a delay.. 10 = 1 second
     wait 10
   }
}
the problem with eq2bot was that sometimes, for no reason, it would cease to work, thus ending up killing me, but thanks everyone for the tips, will probably get ogrebot
 

metalnick

Active Member
uhhh... I'd say 99% of people here use bots, rather than a basic spam the 1 key. We have logic available to us, so we use it.


None the less... here's the code if you want it...
Code:
function main()
{
  while 1
  {
     press 1
     ;// Put a delay.. 10 = 1 second
     wait 10
   }
}

actually, how do I use this? I don't know how to edit codes and such
 
Top Bottom