Bots attempting to buff when target not in zone

Discussion in 'E3' started by rokze`, Jan 15, 2018.

  1. rokze`

    rokze` Orc Pawn

    Messages:
    16
    This should fix the issue when bots attempt to buff a target that is not in the same zone as them.

    navigate to Macros/e3 Includes/e3_BuffCheck.inc

    Replace line 74 in which reads as:
    /if (!${Bool[${NetBots[${buffTarget}].Buff.Find[${buffSpellID} ]}]} && !${Bool[${NetBots[${buffTarget}].ShortBuff.Find[${buffSpellID} ]}]} && ${NetBots[${buffTarget}].FreeBuffSlots}>0) {

    with the following:
    /if (!${Bool[${NetBots[${buffTarget}].Buff.Find[${buffSpellID} ]}]} && !${Bool[${NetBots[${buffTarget}].ShortBuff.Find[${buffSpellID} ]}]} && ${NetBots[${buffTarget}].FreeBuffSlots}>0 && ${Bool[${NetBots[${buffTarget}].InZone}]}) {

    This may still cause issues when toons are in the same zone but different instance ID. I will attempt to test this weekend.