/casting question

eqitchy

Lifetimer
Joined
Nov 8, 2009
Messages
451
Reaction score
8
Points
18
Age
51
Hi guys,

Have 2 questions. I am using the /casting "spell name" gem1 -kill command in a hotkey and on bst it works 1st time then I get the "[1070040404] MQ2Cast:[Casting]: Aborting. any idea why? Did this with attack on or off.

Other question, using same command on wiz and it works fine but if I run out of mana for spell and mana regens it wont cast the spell again, is this normal?

Just asking here cause I am on emu and wanted to know if i should have it looked into.
 
There are several things that can cause a cast abort. On your 2nd question, yes, that's normal. You can use the TLO members to help you decide when/if you should reissue the command(s).

As far as seeing more info on why the cast abort is happening on your bst, you can use /castdebug (and maybe use mq2log with it).

You could also watch the TLO members, when I want to use it, here is an example of one of my hud elements:

Code:
[MQ2Cast] 
// MQ2Cast
LineBreak11a=3,2,240,835,255,255,255,${If[${Plugin[MQ2Cast].Name.Length},______________________ ,]}
LineBreak11b=3,2,241,850,255,255,255,${If[${Plugin[MQ2Cast].Name.Length},  MQ2Cast ,]}
LineBreak11c=3,2,240,855,255,255,255,${If[${Plugin[MQ2Cast].Name.Length},______________________ ,]}
BG11a=3,2,240,850,0,0,0,${If[${Plugin[MQ2Cast].Name.Length},|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ,]}
BG11b=3,2,240,845,0,0,0,${If[${Plugin[MQ2Cast].Name.Length},|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ,]}
BG11c=3,2,240,855,0,0,0,${If[${Plugin[MQ2Cast].Name.Length},|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ,]}
BG11d=3,2,241,850,0,0,0,${If[${Plugin[MQ2Cast].Name.Length},|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ,]}
BG11e=3,2,241,845,0,0,0,${If[${Plugin[MQ2Cast].Name.Length},|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ,]}
BG11f=3,2,241,855,0,0,0,${If[${Plugin[MQ2Cast].Name.Length},|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ,]}
CastActiveText=3,2,245,870,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Active:,]}
CastActive=3,2,290,870,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Active},]}
CastEffectText=3,2,245,882,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Effect:,]}
CastEffect=3,2,290,882,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Effect},]}
CastStoredText=3,2,245,894,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Stored:,]}
CastStored=3,2,290,894,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Stored},]}
CastResultText=3,2,245,906,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Result:,]}
CastResult=3,2,290,906,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Result},]}
CastReturnText=3,2,245,918,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Return:,]}
CastReturn=3,2,290,918,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Return},]}
CastStatusText=3,2,245,930,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Status:,]}
CastStatus=3,2,290,930,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Status},]}
CastTimingText=3,2,245,942,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Timing:,]}
CastTiming=3,2,290,942,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Timing},]}
CastTakenText=3,2,245,954,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Taken:,]}
CastTaken=3,2,290,954,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Taken},]}
CastReadyText=3,2,245,966,255,234,8,${If[${Plugin[MQ2Cast].Name.Length},Ready:,]}
CastReady=3,2,290,966,0,255,0,${If[${Plugin[MQ2Cast].Name.Length},${Cast.Ready},]}
 
Last edited: