Dev's Bot - a potential problem.

Removed the comFrom as you suggested for now.

Next undefined variable in shamanbot:

Code:
Toon - [2017/12/25 14:39:19] WARNING: Undefined Variable Navigation used on line 3555@devCommonPremium.inc /if (${Navigation}) {Macro Paused.
EDIT: loading mq2nav plugin fixed that undefined variable issue.

Also, on a similar note, did you get a chance to check why it keeps changing, under [General] ini settings

UseNavigation=FALSE to TRUE every time I start the macro, happens with all the macros I tested so far. Will this impact other pull methods from being used, if I don't want to pull with mq2Nav?



Another undefined variable in shamanbot:

Code:
Toon - [2017/12/25 14:45:01] WARNING: Undefined Variable equippedSlot used on line 1610@devCommonPremium.inc /if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}Macro Paused.
Toon - [2017/12/25 14:45:01] WARNING: Undefined Variable equippedSlot used on line 1610@devCommonPremium.inc /if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}Macro Paused.
Toon - [2017/12/25 14:45:01] WARNING: Undefined Variable equippedSlot used on line 1610@devCommonPremium.inc /if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}Macro Paused.
 
Last edited:
Removed the comFrom as you suggested for now.

Next undefined variable in shamanbot:

Code:
Toon - [2017/12/25 14:39:19] WARNING: Undefined Variable Navigation used on line 3555@devCommonPremium.inc /if (${Navigation}) {Macro Paused.
EDIT: loading mq2nav plugin fixed that undefined variable issue.

Also, on a similar note, did you get a chance to check why it keeps changing, under [General] ini settings

UseNavigation=FALSE to TRUE every time I start the macro, happens with all the macros I tested so far. Will this impact other pull methods from being used, if I don't want to pull with mq2Nav?



Another undefined variable in shamanbot:

Code:
Toon - [2017/12/25 14:45:01] WARNING: Undefined Variable equippedSlot used on line 1610@devCommonPremium.inc /if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}Macro Paused.
Toon - [2017/12/25 14:45:01] WARNING: Undefined Variable equippedSlot used on line 1610@devCommonPremium.inc /if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}Macro Paused.
Toon - [2017/12/25 14:45:01] WARNING: Undefined Variable equippedSlot used on line 1610@devCommonPremium.inc /if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}Macro Paused.


Interesting.
Code:
/if (${Me.Inventory[${equippedSlot[${iLoop}]}].Name.NotEqual[NULL]} && ${Me.Inventory[${equippedSlot[${iLoop}]}].Spell.Name.Equal[${effectName}]}) /return ${Me.Inventory[${equippedSlot[${iLoop}]}].Name}

Specifically ${Me.Inventory[#].Name.Equal[String]} is what it should be. According to the loop, it checks 1-23, which are equippable slots. This is the only line of code ${equippedSlot[#]} is used, going to change it to ${Me.Inventory[${iLoop}]....which should correct the issue.

I was pretty sure I added a check for /plugin mq2nav....and I did.

Code:
Sub CommonInit
	/declare CurrentSub string outer
	/varset CurrentSub CommonInit
	/declare DebugLevel int outer 3
	/call Debug 3 "${CurrentSub} entered DevCommonPremium.inc"
	
	/cechob "\ao~~~~~~~~~~~~~~~~ChatWithThisName was Here~~~~~~~~~~~~~~~~~~~~~"
	
	/if (${Plugin[MQ2Nav].Name.NotEqual[MQ2Nav]}) {
		/cechob "\ayMQ2Nav wasn't loaded, loading MQ2Nav"
		/plugin MQ2Nav
	}............

Not sure why it's not being done. Going to have to check for commonInit sub's /calls

Not yet on the changing of the INI settings, but I'll check it out when time allows.

Code:
	/if (${Bool[${Ini[${ININame},${INISection},${INIKey}]}]}) {
		/varset iniValue ${Ini[${ININame},${INISection},${INIKey}]}
	} else {
		/ini "${ININame}" "${INISection}" "${INIKey}" "${defaultValue}"
		/varset iniValue ${defaultValue}
	}
may have an issue with it that's causing the bool to return false when I expect it to return true. Will need to check it more in depth to know.
 

Attachments

  • devCommonPremium.inc
    332.3 KB · Views: 3
Last edited:
Log with Debug set to 3 for bardbot.mac ~ Posting for historical reasons. Shows if it used /varset or /ini when running Sub GetINISettings

Code:
Toon - [2017/12/25 14:55:30] DBG3: CommonInit entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:30] "~~~~~~~~~~~~~~~~ChatWithThisName was Here~~~~~~~~~~~~~~~~~~~~~"
Toon - [2017/12/25 14:55:30] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:30] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] [MQ2] [MQ2] >> Initialized devCommonPremium.inc v3.54 - Written By Devestator - Updated by ChatWithThisName
Toon - [2017/12/25 14:55:31] DBG3: MovementInit entered devMovementPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: moveLogWrapper entered devMovementPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] [MQ2] [MQ2] >> Initializing devMovementPremium.inc v2.74 - Written By Devestator
Toon - [2017/12/25 14:55:31] DBG3: MQ2CastInit entered devCast.inc
Toon - [2017/12/25 14:55:31] DBG3: devCastInit entered devCast.inc
Toon - [2017/12/25 14:55:31] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] [MQ2] [MQ2] >> Initializing devCast.inc v2.00
Toon - [2017/12/25 14:55:31] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] [MQ2] [MQ2] >> Loading Bot specific configuration...
Toon - [2017/12/25 14:55:31] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] bardBotSettings.ini is the name of INI.
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: General, Key: FadeHP
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: General, Key: FadeWhenTankDead
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: General, Key: StayBehind
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /ini because the INI did not have a value for Section: Bard_General, Key: UseTwist
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /ini because the INI did not have a value for Section: Bard_General, Key: UseMelody
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Bard_General, Key: FadeHP
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Bard_General, Key: FadeWhenTankDead
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Bard_General, Key: StayBehind
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: MezAtStart
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: MezSong
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: MezGem
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: MezAnnounceAttempt
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: MezAnnounceSuccess
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: AEMezSong
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: AEMezGem
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: AEMezMinMobs
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: AEMezAnnounce
Toon - [2017/12/25 14:55:31] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:31] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:31] DBG3: Used /varset because the INI had a value for Section: Songs, Key: MezMaxAttempts
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: MezMinHP
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: OutOfCombatSong
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: OutOfCombatGem
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: OutOfCombatSong1
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: OutOfCombatGem1
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: OutOfCombatSong2
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: OutOfCombatGem2
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: OutOfCombatSong3
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: OutOfCombatGem3
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: OutOfCombatSong4
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: OutOfCombatGem4
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: AuraSong
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: AuraText
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: AuraGem
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: CombatSongOnAssist
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatSong1
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatGem1
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatSong2
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatGem2
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatSong3
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatGem3
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatSong4
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /varset because the INI had a value for Section: Songs, Key: CombatGem4
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: CombatSong5
Toon - [2017/12/25 14:55:32] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:32] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:32] DBG3: Used /ini because the INI did not have a value for Section: Songs, Key: CombatGem5
Toon - [2017/12/25 14:55:32] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3:  entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] [MQ2] [MQ2] >> Checking include file versions...
Toon - [2017/12/25 14:55:33] DBG3: CommonIniLoad entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] [MQ2] [MQ2] >> Common INI Load started, INI Name: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /varset because the INI had a value for Section: Commands, Key: EQBCCommands
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /varset because the INI had a value for Section: Commands, Key: GroupCommands
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /varset because the INI had a value for Section: Commands, Key: TellCommands
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /varset because the INI had a value for Section: Commands, Key: echoCommands
Toon - [2017/12/25 14:55:33] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /ini because the INI did not have a value for Section: Debuffs, Key: DebuffAdds
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /varset because the INI had a value for Section: Debuffs, Key: DebuffAllDebuffsAtOnce
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /ini because the INI did not have a value for Section: Debuffs, Key: DebuffAllDebuffsOneTarget
Toon - [2017/12/25 14:55:33] DBG2: /if (Debuff1 <= 0)
Toon - [2017/12/25 14:55:33] DBG2: /if (Debuff1 > 0)
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:33] DBG3: Used /varset because the INI had a value for Section: SelfBuffs, Key: SelfBuffName1
Toon - [2017/12/25 14:55:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:33] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /varset because the INI had a value for Section: SelfBuffs, Key: SelfBuffText1
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /varset because the INI had a value for Section: SelfBuffs, Key: SelfBuffSlot1
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /varset because the INI had a value for Section: SelfBuffs, Key: SelfBuffAuto1
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /varset because the INI had a value for Section: SelfBuffs, Key: SelfBuffAlias1
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /ini because the INI did not have a value for Section: SelfBuffs, Key: SelfBuffCombat1
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /ini because the INI did not have a value for Section: Alerts, Key: AlertDeathAudioFile
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /ini because the INI did not have a value for Section: Alerts, Key: AlertEvac
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /ini because the INI did not have a value for Section: Alerts, Key: AlertUnsafePC
Toon - [2017/12/25 14:55:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:34] DBG3: Used /ini because the INI did not have a value for Section: Alerts, Key: AlertGM
Toon - [2017/12/25 14:55:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:34] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellName1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMinMana1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMaxMana1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMinMobHPs1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxMobHPs1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellRecastDelay1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxMobs1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMinMobs1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellSlot1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellCondition1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMinHPs1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxHPs1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellType1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellGOM1
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellFOP1
Toon - [2017/12/25 14:55:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellName2
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMinMana2
Toon - [2017/12/25 14:55:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:35] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:35] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMaxMana2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMinMobHPs2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxMobHPs2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellRecastDelay2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxMobs2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMinMobs2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellSlot2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellCondition2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMinHPs2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxHPs2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellType2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellGOM2
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellFOP2
Toon - [2017/12/25 14:55:36] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellName3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMinMana3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMaxMana3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMinMobHPs3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxMobHPs3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellRecastDelay3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMaxMobs3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellMinMobs3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /varset because the INI had a value for Section: Combat, Key: SpellSlot3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellCondition3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:36] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:36] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMinHPs3
Toon - [2017/12/25 14:55:36] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellMaxHPs3
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellType3
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellGOM3
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: Combat, Key: SpellFOP3
Toon - [2017/12/25 14:55:37] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: CampRadius
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: ResistTries
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: TimeToSitAfterCast
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: General, Key: ReplyToTells
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: Announcements
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: AnnounceChan
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: MinSafeDistance
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: General, Key: LootCorpses
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: General, Key: LootINI
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: DebuffAtStart
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: MinDebuffCheckTimer
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: GroupBuffAtStart
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: SelfBuffAtStart
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /ini because the INI did not have a value for Section: General, Key: PetBuffAtStart
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: WatchBuffAtStart
Toon - [2017/12/25 14:55:37] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:37] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:37] DBG3: Used /varset because the INI had a value for Section: General, Key: PullerName
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: MainTank
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: MainAssist
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: SecondaryAssist
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: AssistPct
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: AllowInterrupt
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: UnsafePCAction
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UnsafePCRadius
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UnsafePCImmediateAction
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: GMAction
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UseMerc
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: ResistRetryTime
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: CampAfterGate
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: ${iniName]
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: CheckForAdds
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: UseEQBC
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: RelayChat
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: RelayTells
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: RelayTarget
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: OutOfCombatSit
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /varset because the INI had a value for Section: General, Key: InCombatSit
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: AllowSit
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: FaceWhenCasting
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UseXTargetOnly
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UseXTarget
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:38] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UseLAHoTT
Toon - [2017/12/25 14:55:38] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:38] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: MercAssistPct
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: DebugMode
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: DebugLevel
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: RespitePct
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: HealPotName
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: HealPotHPs
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: ModRodName
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: ModRodMinHPs
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: ModRodMana
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: FaceStartupDirectionAtCamp
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: AlwaysAttemptReturn
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: AutoBuffsEnabled
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: CastWhileInvis
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: MinRezAcceptPercent
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: MaxRezWaitTime
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: DefaultGem
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: LootOnlyKilledCorpses
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: CastMaxWaitTime
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: EmuMode
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: HideCorpses
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: CampReturnRatio
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /ini because the INI did not have a value for Section: General, Key: MedModeManaThreshold
Toon - [2017/12/25 14:55:39] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:39] DBG3: Used /varset because the INI had a value for Section: General, Key: MedModeMedTo
Toon - [2017/12/25 14:55:39] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:39] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: AutoBuffLoad entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] [MQ2] [MQ2] >> Loading automatic buffs, this may take a few seconds
Toon - [2017/12/25 14:55:40] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText1
Toon - [2017/12/25 14:55:40] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat1
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled1
Toon - [2017/12/25 14:55:40] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText2
Toon - [2017/12/25 14:55:40] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat2
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled2
Toon - [2017/12/25 14:55:40] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:40] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:40] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText3
Toon - [2017/12/25 14:55:41] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat3
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled3
Toon - [2017/12/25 14:55:41] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText4
Toon - [2017/12/25 14:55:41] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat4
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled4
Toon - [2017/12/25 14:55:41] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName5
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText5
Toon - [2017/12/25 14:55:41] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot5
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType5
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:41] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:41] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets5
Toon - [2017/12/25 14:55:41] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto5
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias5
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat5
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled5
Toon - [2017/12/25 14:55:42] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText6
Toon - [2017/12/25 14:55:42] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat6
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled6
Toon - [2017/12/25 14:55:42] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffName7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffText7
Toon - [2017/12/25 14:55:42] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffSlot7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffType7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffTargets7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffAuto7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /varset because the INI had a value for Section: AutoBuffs, Key: AutoBuffAlias7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffCombat7
Toon - [2017/12/25 14:55:42] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:42] DBG3: Used /ini because the INI did not have a value for Section: AutoBuffs, Key: AutoBuffEnabled7
Toon - [2017/12/25 14:55:42] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:42] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:43] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: AutoBuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellName entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetSpellRank entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: devCommonPremium.dat
Toon - [2017/12/25 14:55:44] DBG3: Used /varset because the INI had a value for Section: General, Key: Version
Toon - [2017/12/25 14:55:44] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] [MQ2] [MQ2] >> Using devCommonPremium.dat v1.02
Toon - [2017/12/25 14:55:44] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:44] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: Debuffs
Toon - [2017/12/25 14:55:44] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:44] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: AutoBuffs
Toon - [2017/12/25 14:55:44] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:44] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: SelfBuffs
Toon - [2017/12/25 14:55:44] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:44] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: PetBuffs
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: GroupBuffs
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: GroupPetBuffs
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: WatchBuffs
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: CombatBuffDelay
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: CombatSpells
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: AddCheck
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: AssistFrequency
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Priorities, Key: UnsafePCCheck
Toon - [2017/12/25 14:55:45] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /ini because the INI did not have a value for Section: General, Key: UseNavigation
Toon - [2017/12/25 14:55:45] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] [MQ2] [MQ2] >> Warning, MQ2Navigation is being used but MQ2EQDraw could not be loaded.  Will not be able to navigate through doors.
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: MercSettings, Key: BurnPct
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: MercSettings, Key: ManageMerc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /ini because the INI did not have a value for Section: MercSettings, Key: AssistPct
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: MercSettings, Key: OutOfCombatStance
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: MercSettings, Key: InCombatStance
Toon - [2017/12/25 14:55:45] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /ini because the INI did not have a value for Section: Mission, Key: MissionMode
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /ini because the INI did not have a value for Section: Mission, Key: MissionINI
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Mission, Key: MissionLeader
Toon - [2017/12/25 14:55:45] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:45] DBG3: Used /varset because the INI had a value for Section: Mission, Key: MissionFollowers
Toon - [2017/12/25 14:55:45] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:45] [MQ2] [MQ2] >> Initialized devLoot.inc v1.36 - Written by Devestator
Toon - [2017/12/25 14:55:45] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] [MQ2] [MQ2] >> devLoot.inc settings loaded from devLoot.ini
Toon - [2017/12/25 14:55:46] DBG3: PullInit entered devPull.inc
Toon - [2017/12/25 14:55:46] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullAtStart
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullWith
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullGem
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullType
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullPathName
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullPathMaxTime
Toon - [2017/12/25 14:55:46] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullPathName1
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullPathZone1
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullPathMaxTime1
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullTimeout
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullRadius
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullZRadius
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullMinLevel
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullMaxLevel
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: LullSong
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: Lull
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: LullGem
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: LullSlot
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: LullRadius
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: DefaultMinMana
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:46] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: DefaultMinHP
Toon - [2017/12/25 14:55:46] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:46] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: DefaultMinEnd
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: DefaultMedToMana
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: DefaultMedToHP
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: DefaultMedToEnd
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullRestTime
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: CircuitRestTime
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullBandolier
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: NormalBandolier
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: BandolierSwapAtCamp
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: ReturnToCamp
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: FadeOnPull
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: FaceAtCamp
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullAtMobsLeftInCamp
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /varset because the INI had a value for Section: Pull Settings, Key: PullAtAssistMobHP
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: RequiredHealers
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: MaxTargetRange
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: IncomingMessage
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: UnsafePCReturnToCamp
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: UnsafePCCheck
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: UseFastFaceOnAggro
Toon - [2017/12/25 14:55:47] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: GetINISetting entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: bardBotSettings.ini
Toon - [2017/12/25 14:55:47] DBG3: Used /ini because the INI did not have a value for Section: Pull Settings, Key: PullTargetAlert
Toon - [2017/12/25 14:55:47] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: SetHome entered devMovementPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: PullBuildPathList entered devPull.inc
Toon - [2017/12/25 14:55:47] DBG3: CheckPathExists entered devMovementPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: LoadPath entered devMovementPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: moveLogWrapper entered devMovementPremium.inc
Toon - [2017/12/25 14:55:47] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> PoKnowledge could not be found to load.
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Unable to find the pull path PoKnowledge, excluding it from the pull paths list.
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Unable to load any pull paths, pulling will default to pulling without a path within the pull radius of 100.00
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> devPull.inc v1.10 loaded
Toon - [2017/12/25 14:55:48] DBG3: CreateIgnoreAlert entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Creating ignore alert list number 101
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: CreateSafeAlert entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Creating safe pc alert list number 102
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> BardBot v2.32, written by Devestator, initiated
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Looting Corpses: FALSE
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Main Tank: NULL
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Main Assist: NULL
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Puller: NULL
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> INI FileName: bardBotSettings.ini
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Self Buffing: TRUE
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Stay Behind: TRUE
Toon - [2017/12/25 14:55:48] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] [MQ2] [MQ2] >> Pulling: FALSE
Toon - [2017/12/25 14:55:48] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:48] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:49] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:50] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:51] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] Usage: /call <subroutine> [param [param...]]
Toon - [2017/12/25 14:55:52] DBG3: CheckForAdds entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: CheckForXTargetAdds entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: CorpseCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: BuffCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: buffCheckRoutine entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG2: CastBuff --> 3164 1 Sub: StripText
Toon - [2017/12/25 14:55:52] DBG3: CastBuff entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: FindPotionBelt entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: ItemSwapCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG2: MQ2Cast --> Distorting Crystal Grimace ITEM 0 CheckForAggro -targetID|3164 -maxtries|2 Sub: ItemSwapCheck
Toon - [2017/12/25 14:55:52] DBG3: MQ2Cast entered devCast.inc
Toon - [2017/12/25 14:55:52] DBG2: Cast --> Distorting Crystal Grimace ITEM 0 CheckForAggro Sub: MQ2Cast
Toon - [2017/12/25 14:55:52] DBG3: Cast entered devCast.inc
Toon - [2017/12/25 14:55:52] DBG2: CastName: Distorting Crystal Grimace, CastSlot: ITEM, CastMaxTryTime: 0, CastCallRoutine: CheckForAggro
Toon - [2017/12/25 14:55:52] DBG2: Cast_GetSpellName --> Distorting Crystal Grimace Sub: Cast
Toon - [2017/12/25 14:55:52] DBG3: Cast_GetSpellName entered devCast.inc
Toon - [2017/12/25 14:55:52] DBG2: Cast_GetSpellRank --> Distorting Crystal Grimace Sub: Cast
Toon - [2017/12/25 14:55:52] DBG3: Cast_GetSpellRank entered devCast.inc
Toon - [2017/12/25 14:55:52] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:52] DBG3: Event_devCastResult entered devCast.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG2: Cast --> Distorting Crystal Grimace ITEM 0 CheckForAggro Sub: CheckForAggro
Toon - [2017/12/25 14:55:53] DBG3: Cast entered devCast.inc
Toon - [2017/12/25 14:55:53] DBG2: CastName: Distorting Crystal Grimace, CastSlot: ITEM, CastMaxTryTime: 0, CastCallRoutine: CheckForAggro
Toon - [2017/12/25 14:55:53] DBG2: Cast_GetSpellName --> Distorting Crystal Grimace Sub: Cast
Toon - [2017/12/25 14:55:53] DBG3: Cast_GetSpellName entered devCast.inc
Toon - [2017/12/25 14:55:53] DBG2: Cast_GetSpellRank --> Distorting Crystal Grimace Sub: Cast
Toon - [2017/12/25 14:55:53] DBG3: Cast_GetSpellRank entered devCast.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:53] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG2: CastBuff --> 3164 3 Sub: Event_MQ2Cmd
Toon - [2017/12/25 14:55:55] DBG3: CastBuff entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: FindPotionBelt entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: ItemSwapCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG2: MQ2Cast --> Frost Spikes Pauldrons ITEM 0 CheckForAggro -targetID|3164 -maxtries|2 Sub: ItemSwapCheck
Toon - [2017/12/25 14:55:55] DBG3: MQ2Cast entered devCast.inc
Toon - [2017/12/25 14:55:55] DBG2: Cast --> Frost Spikes Pauldrons ITEM 0 CheckForAggro Sub: MQ2Cast
Toon - [2017/12/25 14:55:55] DBG3: Cast entered devCast.inc
Toon - [2017/12/25 14:55:55] DBG2: CastName: Frost Spikes Pauldrons, CastSlot: ITEM, CastMaxTryTime: 0, CastCallRoutine: CheckForAggro
Toon - [2017/12/25 14:55:55] DBG2: Cast_GetSpellName --> Frost Spikes Pauldrons Sub: Cast
Toon - [2017/12/25 14:55:55] DBG3: Cast_GetSpellName entered devCast.inc
Toon - [2017/12/25 14:55:55] DBG2: Cast_GetSpellRank --> Frost Spikes Pauldrons Sub: Cast
Toon - [2017/12/25 14:55:55] DBG3: Cast_GetSpellRank entered devCast.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:55] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:56] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: Event_MQ2Cmd entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG2: CastBuff --> 3164 5 Sub: Event_MQ2Cmd
Toon - [2017/12/25 14:55:57] DBG3: CastBuff entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: EchoLog entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: StripText entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: FindPotionBelt entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG3: ItemSwapCheck entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:57] DBG2: MQ2Cast --> Jeweled Plate Belt ITEM 0 CheckForAggro -targetID|3164 -maxtries|2 Sub: ItemSwapCheck
Toon - [2017/12/25 14:55:57] DBG3: MQ2Cast entered devCast.inc
Toon - [2017/12/25 14:55:57] DBG2: Cast --> Jeweled Plate Belt ITEM 0 CheckForAggro Sub: MQ2Cast
Toon - [2017/12/25 14:55:57] DBG3: Cast entered devCast.inc
Toon - [2017/12/25 14:55:57] DBG2: CastName: Jeweled Plate Belt, CastSlot: ITEM, CastMaxTryTime: 0, CastCallRoutine: CheckForAggro
Toon - [2017/12/25 14:55:57] DBG2: Cast_GetSpellName --> Jeweled Plate Belt Sub: Cast
Toon - [2017/12/25 14:55:57] DBG3: Cast_GetSpellName entered devCast.inc
Toon - [2017/12/25 14:55:57] DBG2: Cast_GetSpellRank --> Jeweled Plate Belt Sub: Cast
Toon - [2017/12/25 14:55:57] DBG3: Cast_GetSpellRank entered devCast.inc
Toon - [2017/12/25 14:55:57] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] DBG3: CheckForAggro entered DevCommonPremium.inc
Toon - [2017/12/25 14:55:58] The current macro has ended.
Toon - [2017/12/25 14:56:22] Your integrity has been preserved.
 
Based on what I'm looking at in my log it's likely that the Bool is returning false when the value is set to false in the INI and the defaultvalue is true. I'll have to add a check to verify that the ${Ini[${ININame},${INISection},${INIKey}]} doesn't Equal FALSE to avoid the overwrite. Shouldn't be too hard, just got to sit down and do a bit of testing to find a .Equal for the INI value. Don't imagine it's going to be difficult. ${Ini[${ININame},

!${Ini[${ININame,${INISection},${INIKey}].Equal[FALSE]} as an added check should be correct. Will post the update if that's the case.
 
Last edited:
Yep getting some similar spam when I ran both shamanbot and bardbot with the devcommonpremium.inc from post #62


Code:
Toon1 - [2017/12/25 16:13:33] DBG3: CommonInit entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] "~~~~~~~~~~~~~~~~ChatWithThisName was Here~~~~~~~~~~~~~~~~~~~~~"
Toon1 - [2017/12/25 16:13:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] [MQ2] [MQ2] >> Initialized devCommonPremium.inc v3.54 - Written By Devestator - Updated by ChatWithThisName
Toon1 - [2017/12/25 16:13:33] DBG3: MovementInit entered devMovementPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: moveLogWrapper entered devMovementPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] [MQ2] [MQ2] >> Initializing devMovementPremium.inc v2.74 - Written By Devestator
Toon1 - [2017/12/25 16:13:33] DBG3: MQ2CastInit entered devCast.inc
Toon1 - [2017/12/25 16:13:33] DBG3: devCastInit entered devCast.inc
Toon1 - [2017/12/25 16:13:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] [MQ2] [MQ2] >> Initializing devCast.inc v2.00
Toon1 - [2017/12/25 16:13:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] [MQ2] [MQ2] >> Loading Bot specific configuration...
Toon1 - [2017/12/25 16:13:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] bardBotSettings_Toon1.ini is the name of INI.
Toon1 - [2017/12/25 16:13:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:33] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:33] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:33] DBG3: GetINISetting entered DevCommonPremium.inc

Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3:  entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] [MQ2] [MQ2] >> Checking include file versions...
Toon1 - [2017/12/25 16:13:34] DBG3: CommonIniLoad entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] [MQ2] [MQ2] >> Common INI Load started, INI Name: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG2: /if (Debuff1 <= 0)
Toon1 - [2017/12/25 16:13:34] DBG2: /if (Debuff1 > 0)
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:34] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:34] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: bardBotSettings_Toon1.ini
Toon1 - [2017/12/25 16:13:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: EchoLog entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: StripText entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINISetting entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] DBG3: GetINIArrayCount entered DevCommonPremium.inc
Toon1 - [2017/12/25 16:13:35] The current macro has ended.
 
Try this change. Added a check to make sure that the INIKey is not false.

When I run it on bardbot.mac it runs through just fine, I'm still getting the spam you would get if you used the command /call without providing a sub name. I'm running a search through all the files in hopes of finding a spot where it would do a /call without a sub name, such as one that does /call ${variable}

Code:
Search "/call $" (9 hits in 2 files)
  C:\MacroQuest2\Macros\devCommonPremium.inc (8 hits)
	Line 1641: 					/if (${CallRoutine.NotEqual[NULL]}) /call ${CallRoutine}
	Line 1874: 									/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
	Line 1884: 								/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
	Line 1899: 					/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
	Line 1956: 									/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
	Line 1965: 									/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
	Line 2025: 										/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
	Line 2037: 										/if (${combatBuff} && ${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
  C:\MacroQuest2\Macros\bardBot.mac (1 hit)
	Line 437: 		/if (${onCallRoutine.NotEqual[NULL]}) /call ${onCallRoutine}
appear to be my list of possible offenders.

Code:
Toon - [2017/12/25 15:53:48] DBG1: if onCallRoutine.NotEqual[NULL] it's /call onCallRoutine variable ~ Potential Spam
Toon - [2017/12/25 15:53:48] Usage: /call <subroutine> [param [param...]]
some quick debug output messages yeilded this. Will need to check this out to find out what's causing it.

Not really sure what it was supposed to do, commenting it out doesn't appear to hurt anything. Code commented out ~
Code:
		|/call Debug 1 "if onCallRoutine.NotEqual[NULL] it's /call onCallRoutine variable ~ Potential Spam"
		|/if (${onCallRoutine.NotEqual[NULL]}) {
		|	/call Debug 1 "onCallRoutine: ${onCallRoutine} Bool of onCallRoutine: ${Bool[${onCallRoutine}]}"
		|	/call ${onCallRoutine}
		|}

Looking into parameters for CastSong shows onCallRoutine as a parameter that is supposed to be supplied and it has a check to see if it has been provided. Best to provide all parameters now. I will have to look into updating each /call CastSong to have all parameters according to the defined routine
Code:
Sub CastSong(string songName, int songGem, int maxTries, bool endSong, string onCallRoutine, bool immediateInterrupt)

Fixed combatGem undeclared variable. was used as an array when it wasn't an array as it was in the previous fix for the other variable.
 
Last edited:
Just ran the new devcommonpremium and bardbot from post #66


Getting the following now:

Code:
Toon1 - [2017/12/25 17:25:33] No such 'ticks' member 'Float'
Toon1 - [2017/12/25 17:25:33] bardbot.mac@861 (MezList(string Action, int AddID, string setTimer)): /if (${setTimer.Equal[NULL]}) /varset setTimer ${Spell[${mezSong}].Duration.Float}s
Toon1 - [2017/12/25 17:25:33] bardbot.mac@936 (MezRoutine): /call MezList UPDATE
Toon1 - [2017/12/25 17:25:33] bardbot.mac@506 (Combat): /if (${mezEnabled}) /call MezRoutine
Toon1 - [2017/12/25 17:25:33] bardbot.mac@219 (main(string iniNameStr)): /call Combat
Toon1 - [2017/12/25 17:25:34] No such 'ticks' member 'Float'
The good news is its mezzing with single target mez, but spends time chaining it probably because of the Float calculation on the duration maybe?

The other good news is it was melee'ing too when combat started instead of sitting idle from the previous versions, so fixing the combatgem undefined variable finally got it to enter combat and melee looks like.
 
Last edited:
Just ran the new devcommonpremium and bardbot from post #66


Getting the following now:

Code:
Toon1 - [2017/12/25 17:25:33] No such 'ticks' member 'Float'
Toon1 - [2017/12/25 17:25:33] bardbot.mac@861 (MezList(string Action, int AddID, string setTimer)): /if (${setTimer.Equal[NULL]}) /varset setTimer ${Spell[${mezSong}].Duration.Float}s
Toon1 - [2017/12/25 17:25:33] bardbot.mac@936 (MezRoutine): /call MezList UPDATE
Toon1 - [2017/12/25 17:25:33] bardbot.mac@506 (Combat): /if (${mezEnabled}) /call MezRoutine
Toon1 - [2017/12/25 17:25:33] bardbot.mac@219 (main(string iniNameStr)): /call Combat
Toon1 - [2017/12/25 17:25:34] No such 'ticks' member 'Float'
The good news is its mezzing with single target mez, but spends time chaining it probably because of the Float calculation on the duration maybe?

The other good news is it was melee'ing too when combat started instead of sitting idle from the previous versions, so fixing the combatgem undefined variable finally got it to enter combat and melee looks like.

already found, already did a potential fix. checking it now and I'll throw you a new file, check again in a couple mins.
 
Fix for the mez timer issue. Just removed the .Float from the variable.
 
Last edited:
Error is fixed , but the behavior is different from how the bard used to twist in combat previously (previously as in before the September core mq2 updates)


Before, if it was just 1 extra add in camp, the bard would mez and return to the regular song twist as well as melee, and switch back to mezzing the add just 2-3 secs before the 18 sec duration mez song faded on the mob.

Currently, it keeps chaining the mez song more often then it needs too, and not casting a regular combat song between the mez song cast, or switching back to melee the current target after it has cast the mez song on the add.
 
Last edited:
Error is fixed , but the behavior is different from how the bard used to twist in combat previously (previously as in before the September core mq2 updates)


Before, if it was just 1 extra add in camp, the bard would mez and return to the regular song twist as well as melee, and switch back to mezzing the add just 2-3 secs before the 18 sec duration mez song faded on the mob.

Currently, it keeps chaining the mez song more often then it needs too, and not casting a regular combat song between the mez song cast, or switching back to melee the current target after it has cast the mez song on the add.

Fixing mechanics of the macro isn't the same as fixing variables :-x. I'll look into the hangup. I had done a check on the .Duration for Lullaby of the Forlorn and it returned 3. Which means 3 seconds. which is undoubtably not the correct duration for the Mez. This is likely the issue. <~This is a mental note. I can look into finding the correct duration to use and updating it appropriately.
 
Was hopefully easier than I expected. .Duration.TotalSeconds = what I needed I believe.

Try this.
 
Last edited:
Still doing it in the above #72 version, on spending most of its time chaining mez song. But atleast no undefined variables now lol.
 
N/m Found it. I have the next few days off so can help test any changes to the bardbot.

Ok loaded it up, it casts the same song over and over again (Catana of Replenishment -- my manna song I have set in the ini).

I don't see anything useful in the logs to post really :(

Code:
[12/26/2017 16:45:00] Initialized devCommonPremium.inc v3.55 - Written By Devestator - Updated by ChatWithThisName
[12/26/2017 16:45:00] Initializing devMovementPremium.inc v2.74 - Written By Devestator
[12/26/2017 16:45:00] Initializing devCast.inc v2.00
[12/26/2017 16:45:00] Loading Bot specific configuration...
[12/26/2017 16:45:00] BardBot Initialized
[12/26/2017 16:45:00] Loading variables...
[12/26/2017 16:45:01] Loading 0 Combat Abilitie(s)
[12/26/2017 16:45:01] Checking include file versions...
[12/26/2017 16:45:01] Common INI Load started, INI Name: bardBotSettings.ini
[12/26/2017 16:45:01] Loading 0 custom command(s).
[12/26/2017 16:45:01] Loading 1 watched PCs
[12/26/2017 16:45:01] .....NAME 1: ones added to the watch list
[12/26/2017 16:45:01] Loading 0 debuff(s):
[12/26/2017 16:45:01] Loading buffs
[12/26/2017 16:45:01] .....Loading 1 self buff(s)
[12/26/2017 16:45:01] ..........1 - NAME: Selo's Sonata TEXT: Selo's Sonata SLOT: alt AUTO: TRUE COMBAT: FALSE ALIAS: SELF1
[12/26/2017 16:45:01] .....Loading 0 group buff(s)
[12/26/2017 16:45:01] Loading safe pc list:  0 safe pc(s)
[12/26/2017 16:45:01] Loading mobs to ignore:  0 mob(s)
[12/26/2017 16:45:01] Loading Alerts
[12/26/2017 16:45:01] .....Death: NULL
[12/26/2017 16:45:01] .....Evac: NULL
[12/26/2017 16:45:01] .....UnsafePC: NULL
[12/26/2017 16:45:01] .....Loading 0 mob alert(s)
[12/26/2017 16:45:01] .....Loading 0 text alert(s)
[12/26/2017 16:45:01] Loading combat spells:  3 combat spell(s)
[12/26/2017 16:45:01] .....1 - NAME: Fierce Eye SLOT: alt MAXMOBS: 100 MINMOBS: 1 MAXMOBHPS: 95 MINMOBHPS: 50 MINMANA: 0 MAXMANA: 100 RECAST: 10m CONDITION: TargetNamed MINHPS: NULL MAXHPS: 100 TYPE: ALL
[12/26/2017 16:45:01] .....2 - NAME: Selo's Kick SLOT: alt MAXMOBS: 100 MINMOBS: 1 MAXMOBHPS: 97 MINMOBHPS: 1 MINMANA: 0 MAXMANA: 100 RECAST: 8s CONDITION: NULL MINHPS: NULL MAXHPS: 100 TYPE: ALL
[12/26/2017 16:45:01] .....3 - NAME: Boastful Bellow SLOT: alt MAXMOBS: 100 MINMOBS: 1 MAXMOBHPS: 95 MINMOBHPS: 1 MINMANA: 0 MAXMANA: 100 RECAST: 10s CONDITION: NULL MINHPS: NULL MAXHPS: 100 TYPE: ALL
[12/26/2017 16:45:01] Loading common general settings
[12/26/2017 16:45:02] .....GMAction: stop
[12/26/2017 16:45:02] .....Facing When Casting: TRUE
[12/26/2017 16:45:02] .....Casting while invis: TRUE
[12/26/2017 16:45:02] Using devCommonPremium.dat v1.02
[12/26/2017 16:45:02] Checking for MQ2Navigation for movement
[12/26/2017 16:45:02] MQ2Navigation detected and set to be used, but you have no mesh for the current zone, not using MQ2Navigation
[12/26/2017 16:45:02] Loading 0 Summoned Items
[12/26/2017 16:45:02] Initialized devLoot.inc v1.36 - Written by Devestator
[12/26/2017 16:45:02] devLoot.inc settings loaded from devLoot.ini
[12/26/2017 16:45:02] Initializing devPull.inc v1.10
[12/26/2017 16:45:02] Loading pull settings
[12/26/2017 16:45:03] .....PULLATSTART: FALSE PULLWITH: Boastful Bellow  PULLTYPE: alt PULLRADIUS: 100.00 CAMPRETURN: TRUE PULLMINLEVEL: 1 PULLMAXLEVEL: 90
[12/26/2017 16:45:03] drogab could not be found to load.
[12/26/2017 16:45:03] Unable to find the pull path drogab, excluding it from the pull paths list.
[12/26/2017 16:45:03] Unable to load any pull paths, pulling will default to pulling without a path within the pull radius of 100.00
[12/26/2017 16:45:03] devPull.inc v1.10 loaded
[12/26/2017 16:45:03] Creating ignore alert list number 101
[12/26/2017 16:45:03] .....Adding untargetable mobs in the zone to the ignore list
[12/26/2017 16:45:03] Creating safe pc alert list number 102
[12/26/2017 16:45:03] XXX added to safe pc alert list (from group)
[12/26/2017 16:45:03] XXX added to safe pc alert list (from group)
[12/26/2017 16:45:03] XXX added to safe pc alert list (from group)
[12/26/2017 16:45:03] XXX added to safe pc alert list (from group)
[12/26/2017 16:45:03] XXX added to safe pc alert list (from group)
[12/26/2017 16:45:03] BardBot v2.35, written by Devestator, initiated
[12/26/2017 16:45:03] Looting Corpses: FALSE
[12/26/2017 16:45:03] Main Tank: XXX
[12/26/2017 16:45:03] Main Assist: XXX
[12/26/2017 16:45:03] Puller: XXX
[12/26/2017 16:45:03] INI FileName: bardBotSettings.ini
[12/26/2017 16:45:03] Self Buffing: TRUE
[12/26/2017 16:45:03] Stay Behind: TRUE
[12/26/2017 16:45:03] Pulling: FALSE
[12/26/2017 16:45:03] Checking buffs (|SELF|)- In Combat: FALSE
[12/26/2017 16:45:03] Checking self buffs
[12/26/2017 16:45:04] Attempting to cast buff Selo's Sonata on XXX
[12/26/2017 16:45:05] Buff check Completed

Edit -- If a mob is in camp it works well. Two pull it used single mez, but it definitely tried to re-mez too often. Pulled 4 used AE mez then switched to single like normal.
 
Last edited:
Undeclared if the bard dies:

Code:
TOONNAME - [2017/12/26 20:58:47] [MQ2] [MQ2] >> We have died and are waiting for a rez
TOONNAME - [2017/12/26 20:58:47] WARNING: Undefined Variable rezSelf used on line 5607@devCommonPremium.inc /if ((!${Defined[rezSelf]} || !${rezSelf}) && ${Zone.ID}==${deathZone}) {Macro Paused.
 
Undeclared if the bard dies:

Code:
TOONNAME - [2017/12/26 20:58:47] [MQ2] [MQ2] >> We have died and are waiting for a rez
TOONNAME - [2017/12/26 20:58:47] WARNING: Undefined Variable rezSelf used on line 5607@devCommonPremium.inc /if ((!${Defined[rezSelf]} || !${rezSelf}) && ${Zone.ID}==${deathZone}) {Macro Paused.

Interestingly enough that's the only line that rezSelf is used. I'll look at the code and figure out what's it is doing and figure out how to reproduce the desired results and get back with a fix. Based on what i'm seeing this would happen on any character that dies using any of dev's bots.
 
Changes for rezSelf in devCommonPremium.inc and fix for bardBot.mac chain casting ooc songs.

Fix for bards is applicable if UseTwist=TRUE in bardBotSettings.ini
 
Last edited:
Wonder if that is the issue I'm having with the chaining of mez song, Dev has like 3 setups for twisting:

1) Dev's built in twist code, probably in devcast.inc? (the one I'm using)
2) mq2Twist plugin
3) EQ /melody


According to the macro file itself:

| v1.20 Update Notes
| -Moved bard specific settings to [Bard_General] section
| -Added the options [Bard_General] UseTwist=TRUE/FALSE UseMelody=TRUE/FALSE
| If both are FALSE will use my own combat song twist method, otherwise Melody has priority over Twist.
My settings are :

Code:
[Bard_General]
FadeHP=50
FadeWhenTankDead=FALSE
StayBehind=TRUE
UseTwist=FALSE
UseMelody=FALSE
Btw, the settings I use are what most other users will tell you are the best ones, his bardbot stood out from the rest of the macros out there because it prevented spell gem lock ups iirr.
 
So I added a fix for timers for anything that uses /call timer

In this case it was directly related to bardbot.mac's mez routines which caused the bard to chaincast single target mez because timers were returning false when it was supposed to be true. I've corrected the issue with that and since the timer sub was in devcommonpremium.inc it is likely that it will affect other things as well.

In addition I've corrected AutoBuff#Auto and AutoBuff#Enabled to default to false, it used to change FALSE to true and it no longer does that.

Code:
/call GetINISetting ${iniName] General CheckForAdds checkForAdds TRUE FALSE
the above typo in ${iniName} was fixed so it will quit generating an additional INI called ${iniName].ini and instead generate the appropriate INI Field in the players INI or get the information from the INI.

Stopped chain casting of out of combat songs ONLY if UseTwist=TRUE in the INI. Can't help you otherwise :p.

There are still undefined variables on death....short of dying a lot will take a bit to iron them out.

So far i'm aware of

Code:
[2017/12/27 02:46:14] WARNING: Undefined Variable maxWaitTimer used on line 5628@devCommonPremium.inc /if (${waitTimer} && !${maxWaitTimer})

will address the issues as I can. For now this should improve the functionality of bardbot with mq2twist
 
Last edited:
Skbot2.mac (probably across all 16 mac files)

Code:
Toon1 - [2017/12/28 20:50:17] WARNING: Undefined Variable spellSetTypeValue used on line 3324@devCommonPremium.inc /call GetINISetting ${iniName} Combat SpellSetType${nArray} NULL NULL ${If[${spellSetTypeValue},TRUE,FALSE]}Macro Paused.
Also, there is a bunch on post #41.


New one in bardbot.mac (probably across all 16 mac files)


Code:
Toon1 - [2017/12/29 13:10:23] WARNING: Undefined Variable caTimer1 used on line 563@bardbot.mac /if ((!${Defined[caTimer${nArray}]} || !${caTimer${nArray}}) && (${Me.CombatAbilityReady[${caName[${nArray}]}]} || ${Me.AbilityReady[${caName[${nArray}]}]})) {Macro Paused.
 
Last edited: