Addict
Well-known member
- Joined
- Aug 18, 2019
- RedCents
- 570¢
Hello all!
A bug that I am encountering is that when I zone the item timers get messed up. For example the monk epic. After zoning and running the command:
[CODE lang="rich" title="Commands"]
/varset epicfists Transcended Fistwraps of Immortality
/echo ${FindItem[${epicfists}].Timer}
[/CODE]
returns a very high number of 1646. Prior to zoning the timer shows the correct number after usage of 180 seconds.

The items hotbar image also shows incorrectly that the item is ready and not on cooldown:

the red timer that normally appears is not showing on the hotbar but EQ knows that the item is on cooldown as it won't activate when clicked manually again within the timer of 3 minutes.
Has anyone encountered something similar? This seems to be the case with the Shaman epic as well. A quick fix is to remove the check
[CODE lang="rich" title="Commands"]
${FindItem[${epicfists}].Timer}==0
[/CODE]
from my code, but I don't want it to spam the click..
A bug that I am encountering is that when I zone the item timers get messed up. For example the monk epic. After zoning and running the command:
[CODE lang="rich" title="Commands"]
/varset epicfists Transcended Fistwraps of Immortality
/echo ${FindItem[${epicfists}].Timer}
[/CODE]
returns a very high number of 1646. Prior to zoning the timer shows the correct number after usage of 180 seconds.
The items hotbar image also shows incorrectly that the item is ready and not on cooldown:
the red timer that normally appears is not showing on the hotbar but EQ knows that the item is on cooldown as it won't activate when clicked manually again within the timer of 3 minutes.
Has anyone encountered something similar? This seems to be the case with the Shaman epic as well. A quick fix is to remove the check
[CODE lang="rich" title="Commands"]
${FindItem[${epicfists}].Timer}==0
[/CODE]
from my code, but I don't want it to spam the click..
Last edited:


