• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Problem - Error ending mac with Mag heal entry.

Joined
Dec 13, 2021
RedCents
1,569¢
I get this error message after summoning new pet, and with the heal entry below set to TarCnt=1. If a pet is already up, the heal entry is ok.
EQ000001.jpg

Code:
[AdvHeal]
AHCount=1
AHNewFormat=1
AHAllowDismount=TRUE
AHCheckTime=2
AHHealOOBC=FALSE
AHHealMode=0|0|12
AHInterruptLevel=1
AHClassPriority=enc,wiz,mag,nec,clr,dru,shm,pal,shd,war,bst,rng,ber,rog,brd,mnk
AHXTgtWatch=
[AH1]
Gem=7
Spell=Renewal of Evreth
SpellFoci=
DurMod=0
SpellMinMana=0
SpellAlias=petheal
Announce=/bc
TarCnt=1
Class=mypet75
PreCondition=TRUE
 
Check /alias list make sure you don't have a bad /if alias in there. Someone had one a day or two ago. On mobile ATM, so can't read it super well - but saw the I'd thing
 
Checked the aliases and don't see anything myself,
Code:
[Aliases]
/tloc=/echo ${If[${Target.ID},${Target.DisplayName}'s Location is ${Target.Y} ${Target.X} ${Target.Z},You do not have a target!]}
/yes=/multiline ; /squelch /notify LargeDialogWindow LDW_YesButton leftmouseup ; /squelch /notify LargeDialogWindow LDW_OKButton leftmouseup ; /squelch /notify ConfirmationDialogBox CD_Yes_Button leftmouseup ; /squelch /notify ConfirmationDialogBox CD_OK_Button leftmouseup ; /squelch /notify TradeWND TRDW_Trade_Button leftmouseup ; /squelch /notify GiveWnd GVW_Give_Button leftmouseup ; /squelch /notify ProgressionSelectionWnd ProgressionTemplateSelectAcceptButton leftmouseup ; /squelch /notify TaskSelectWnd TSEL_AcceptButton leftmouseup ; /squelch /notify RaidWindow RAID_AcceptButton leftmouseup
/no=/multiline ; /squelch /notify LargeDialogWindow LDW_NoButton leftmouseup ; /squelch /notify ConfirmationDialogBox CD_No_Button leftmouseup ; /squelch /notify ConfirmationDialogBox CD_Cancel_Button leftmouseup ; /squelch /notify TradeWND TRDW_Cancel_Button leftmouseup ; /squelch /notify GiveWnd GVW_Cancel_Button leftmouseup ; /squelch /notify ProgressionSelectionWnd ProgressionTemplateSelectCancelButton leftmouseup ; /squelch /notify TaskSelectWnd TSEL_DeclineButton leftmouseup ; /squelch /notify RaidWindow RAID_DeclineButton leftmouseup
/mb=/echo MB-
/jcecho=/echo \ar[\a-gOverseerAgents\ar]\aw > \ao
/lootignore=/echo LootIniItem Ignore ${Cursor.Name}
/lootsell=/echo LootIniItem Sell ${Cursor.Name}
/lootkeep=/echo LootIniItem Keep ${Cursor.Name}
/lootdestroy=/echo LootIniItem Destroy ${Cursor.Name}
/lootquest=/echo LootIniItem Quest|${QuestKeep} ${Cursor.Name}
/sellstuff=/echo NinjadvLoot selling items to vendor
/depositstuff=/echo NinjadvLoot depositing items to guildbank
/afktoolson=/changevarint AFKTools AFKToolsOn
/assistat=/changevarint Melee AssistAt
/autofireon=/togglevariable AutoFireOn
/autorezon=/togglevariable AutoRezOn
/buffson=/togglevariable BuffsOn
/camphere=/togglevariable ReturnToCamp
/campradius=/changevarint General CampRadius
/chase=/togglevariable ChaseAssist
/chasedistance=/changevarint General ChaseDistance
/chaseoff=/changevarint General ChaseAssist 0
/chaseon=/changevarint General ChaseAssist 1
/debugall=/debug all on log
/dpsinterval=/changevarint DPS DPSInterval
/dpsmeter=/togglevariable DPSMeter
/dpson=/changevarint DPS DPSOn
/dpsskip=/changevarint DPS DPSSkip
/dpswrite=/togglevariable DPSWriteOn
/healson=/changevarint Heals HealsOn
/interrupton=/togglevariable CastingInterruptOn
/ktdismount=/echo KTDismount
/ktdoor=/echo KTDoorClick
/kthail=/echo KTHail
/ktinvite=/echo KTInvite
/ktsay=/echo KTSay
/kttarget=/echo KTTarget
/looton=/changevarint General LootOn
/maxradius=/changevarint Pull MaxRadius
/maxzrange=/changevarint Pull MaxZRange
/medcombat=/togglevariable MedCombat
/medstart=/changevarint General MedStart
/meleedistance=/changevarint Melee MeleeDistance
/meleeon=/togglevariable MeleeOn
/mercassistat=/changevarint Merc MercAssistAt
/mezon=/changevarint Mez MezOn
/movewhenhit=/togglevariable MoveWhenHit
/pethold=/togglevariable PetHold
/peton=/togglevariable PetOn
/pettoyson=/togglevariable PetToysOn
/pettoysplz=/echo PetToysPlease
/rebuffon=/togglevariable RebuffOn
/returntocamp=/togglevariable ReturnToCamp
/rezallon=/togglevariable AutoRezAll 1
/rezalloff=/togglevariable AutoRezAll 0
/scatteron=/togglevariable ScatterOn
/setae=/iniwrite AE
/setaggro=/iniwrite Aggro
/setbackoff=/backoff
/setbuffs=/iniwrite Buffs
/setburn=/iniwrite Burn
/setcure=/iniwrite Cure
/setdps=/iniwrite DPS
/setheals=/iniwrite Heals
/katwistpause=/togglevariable TwistHold 1
/katwistresume=/togglevariable TwistHold 0
/switchma=/switchma
/waithere=/togglevariable waithere
/trackme=/trackmedown
/bazecho=/echo \ar[\a-gBazaar3.mac\ar]\aw > \ao
 
Line 356 is missing a closing )

} else /if (${Spawn[${AHbTargetID}].Master.Type.Equal[pc]} {
should be
} else /if (${Spawn[${AHbTargetID}].Master.Type.Equal[pc]}) {

/varset mString ${Spawn[${AHtTargetID}].Name}${AHtCnt}]}
has an extra ]}
should be
/varset mString ${Spawn[${AHtTargetID}].Name}${AHtCnt} I believe.

That's the only two places I found unbalanced brackets in that file.

The one on line 356 is most likely to be the issue you're encountering.
 
Line 356 is missing a closing )

} else /if (${Spawn[${AHbTargetID}].Master.Type.Equal[pc]} {
should be
} else /if (${Spawn[${AHbTargetID}].Master.Type.Equal[pc]}) {

/varset mString ${Spawn[${AHtTargetID}].Name}${AHtCnt}]}
has an extra ]}
should be
/varset mString ${Spawn[${AHtTargetID}].Name}${AHtCnt} I believe.

That's the only two places I found unbalanced brackets in that file.

The one on line 356 is most likely to be the issue you're encountering.
That fixed it. Thanks!
 
Thanks for finding the issues. I have been playing around with an EMU server and modbot, so was a little distracted the last few days.

Magoo, is there a reason you want AHHealOOBC=FALSE ? I would be curious to know your setup/scenario where you would want it false.
 
Last edited:
Nope, just didn't notice it.

EDIT: Is that the default setting? I just checked all my ini, and all but the healing classes were set to FALSE.
 
Last edited:
Problem - Error ending mac with Mag heal entry.

Users who are viewing this thread

Back
Top
Cart