Noob lost and searched the forums

knucklz79

Member
I know this might be a simple question, I have tried using the search function but it hasn't helped me at all I guess if I learn a little about scripting I would be more able to understand what is going on.

Anyways I have an inquisitor lvl 45 and when I'm running eq2bot i notice in the console the following error.

Error:Unparsable in Calculation of "Group": 'G' @${Me.Ability[${SpellType[${PreSpellRange[${xAction},1]}]}].TargetType.Equal[Group]}
Could not calculate "Group"

When I was first getting this error non stop and the bot wouldn't do anything I had my pull method set to pet I corrected that and it still sporadically gives me this error. I do notice that it's giving me this error while eq2bot window displays Current Action: Idle on the main tab. In order to give the most information my options are set as follows: (only listing the settings that are selected)

Main tab: Main tank and Main Assist
Eq2 Bot Tab: Basic Options subtab Pull Non Aggro Mobs, check if Priest has Power, Out of Range Reaction Distance 40, Automatically Pull (pull type: Spell or CA: Invocation IV) Pull when power is at least at 70% and health is at least at 90% Pull range 15), Engage in Melee Combat, Loot Chests, Loot Corpses loot method accept, roll on lore item, roll on no trade items roll on prev. collected shineys.
Ignore sub tab: Ignore red con mobs, Ignore Orange con mobs, Ignore Grey con mobs
Navigation: Camp Pathing is selected but I'm manually moving my character about
Class Tab: Cast Cures, Cure Curses, Maintain single target reactive on MT, Battle Cleric? (When i did use Buff HP-DPS on: it would just loop casting Tenacity on target selected remove it then recast doing nothing else but that)

That all being included the reason why I'm asking about this is during my search regarding the error I read something about pinging the server and panicked that I'm pinning the server with some request and that flag me for bot like activity. Thanks in advance for reading this and any help provided or not.
 

Kannkor

Ogre
Error:Unparsable in Calculation of "Group": 'G' @${Me.Ability[${SpellType[${PreSpellRange[${xAction},1]}]}].TargetType.Equal[Group]}
Could not calculate "Group"
From meory, TargetType is a number. "Group" is a string.
.Equal is a member of a string, not an int or float.

So you're trying to do a text comparison on a number.

In a situation like this, you'll want to debug to find out where you went wrong. Since you know (from the error) the issue is with "Group". So remove it.

In short, you're trying to compare: ${Me.Ability[${SpellType[${PreSpellRange[${xAction},1]}]}].TargetType} to see if it's equal to "Group". So check the value of ${Me.Ability[${SpellType[${PreSpellRange[${xAction},1]}]}].TargetType} and see what it returns. Likewise, you can check the isxeq2 wiki and see that .TargetType is an int, not a string. Then you can check the Lavishwiki to see what members an int has, that you can then use.
 

knucklz79

Member
Actually I'm not trying to do anything except for run the bot to collect components to transmute, my scripts are unedited from the SVN update. I only noticed this when eq2 bot wasn't doing anything so i opened the console searched regarding the error then realized I had set my pull method incorrectly. I was worried that I was spamming the server or something and leaving tell tale signs of my automated combat that would attract attention. I'm a noob when it comes to scripting, the most editing I did was back when RoK was released I changed the craft to use the new ingredients and the harvester to recognize the new nodes but that was years ago and I just started using isxeq2 again so i'm learning everything all over again, heck i coudln't even remember my old login's and passwords.
 
Last edited:
Top Bottom