Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

/chaseoff doesn't work anymore. My chars just keep following.
/chaseoff doesn't work anymore. My chars just keep following.
Yes the message on all followers is: [MQ2] Reset General ChaseAssist 0Are you getting a message like Changing ChaseAssist to 0
Sub Bind_ChangeVarInt(ISection, IName, IVar)
/if (${Debug}) Bind_ChangeVarInt ${ISection} ${IName} ${IVar} \agLine#: ${Macro.CurLine}
/echo Changing ${IName} to ${IVar}
/varset ${IName} ${IVar}
/ini "${IniFileName}" "${ISection}" "${IName}" "${IVar}"
/if (${IName.Find[mezon]} && !${Defined[MezTimer1]}) /call CreateTimersMez
/if (${IName.Find[dpson]} && !${Defined[DPSTimer1]}) /call CreateTimersDPS
/if (${IName.Find[buffson]} && !${Defined[Buffs1Timer0]}) {
/call CreateTimersBuffs
/echo Buffs on creating timers
}
/if (${IName.Equal[ChaseAssist]} && ${ReturnToCamp}) /varset ReturnToCamp 0
/if (${IName.Equal[ChaseAssist]} && ${IVar}==0 && ${Stick.Active}) /squelch /stick off
/if (${IName.Equal[ChaseAssist]} && ${IVar}==1 && !${Stick.Active}) /varset RebuffOn 300
/if (${IName.Equal[MaxRadius]}) /varcalc CampRadiusExceed ${MaxRadius}+200
/return
Absolutely. Autocleric produces the same message btw and does the right thing.Are you sure? I can't find anywhere in kissassist where we use /echo Reset. The Bind_ChangeVarInt routine only uses /echo Changing.. see below:
...
There are 3 aliases. /chase, /chaseoff, /chaseon. /chase can use paramters on, off, 1, 0.
The 1 flaw in it is the spacing ? I tried myself to /chaseofff I get the same message he is getting but /chase off works perfectly I maybe shooting a blank here but chase off and chase on work fine /chase 1 and chase 0 as wel
- - - Updated - - -
I get the alias but the macro isn't designed to read stacked commands /chaseon in game will echo a failure for me every time /chase on I stick to my toon and follow also he should probably unload mq2moveutils as I noticed in 10.0.4 update it didn't work well with kiss I had to reset my moveutils conf I use I am not saying I know anything hell I don't my c ++ knowledge is very poor anymore. Just going off my experience
Sub AliasSetup
/squelch /alias /camphere /togglevariable ReturnToCamp
/noparse /alias /campoff /togglevariable ReturnToCamp 0
/squelch /alias /campradius /changevarint General CampRadius
/squelch /alias /chase /togglevariable ChaseAssist
/squelch /alias /chaseoff /changevarint General ChaseAssist 0
/squelch /alias /chaseon /changevarint General ChaseAssist 1
/squelch /alias /meleeon /togglevariable MeleeOn
/squelch /alias /meleeoff /togglevariable MeleeOn 0
/squelch /alias /mezon /changevarint Mez MezOn
/squelch /alias /mezoff /changevarint Mez MezOn 0
/squelch /alias /slowon /togglevariable UseSlow 1
/squelch /alias /slowoff /togglevariable UseSlow 0
/squelch /alias /returntocamp /togglevariable ReturnToCamp
/noparse /alias /instantrelease /togglevariable InstantRelease
/noparse /alias /usefellowship /togglevariable UseFellowship
/return
