General Assist Broken after Distance of 200
Reply
Assist Broken after Distance of 200
In my wizard macro I am using:

/assist ${MA}

after the distance is exceeds 200, the target becomes the MA. Is there a way to fix that?

Thanks!
Thu Dec 20, 2012 5:29 pm
Post the macro or sub that deals with targeting and nuking.
_________________
To be continued...
Thu Dec 20, 2012 6:42 pm
Listen to This Guy
For example:


Sub Fnuke1Nuke
/assist ${MA}
/call cast "${fnuke1}" gem1 0s
/delay 1 !${Me.Casting.ID}
/varset fnuke1timer 2
/return

Thanks!
Thu Dec 20, 2012 10:17 pm
1) /assist is a built in command and may have a restriction built into the client. i never tested it out.
2) Command targeting (/target) anything > 200 away from you is generally a good way to be detected as a MQ2 user. Not sure how /assist works.
3) if you are going to use MQ2, then USE it.

Macro
More +
| on one toon before the rest log in
/plugin MQ2Cast
/plugin MQ2EQBC
/plugin MQ2NetBots
| on all toons
/net on grab=on send=on

Macro
More +
/declare TankName string outer YOUR_TANK_NAME

sub Main
:Loop
  /call CastNuke "Big Nuke 1"
  /call CastNuke "Big Nuke 2"
  /delay 1
  /goto :Loop
/return

sub CastNuke(string NukeSpell)
  /if(${Cast.Ready[${NukeSpell}]} && ${NetBots[${TankName}].TargetID} && ${Spawn[${NetBots[${TankName}].TargetID}].Distance3D} < ${Spell[${NukeSpell}].MyRange}) {
    /casting "${NukeSpell}" gem1 -targetid|${NetBots[${TankName}].TargetID}
  }
/return

_________________
Sorvani
Thu Dec 20, 2012 11:27 pm
Senior Project Member
General Assist Broken after Distance of 200
Reply