Item Tooltips

lixleon

Member
Seems there is a Item tooltips bug when you login with isxeq2. It's very laggy while you try to get tooltips from inventory and equipment. Anyone got this problem?
 

Amadeus

The Maestro
Staff member
This happens even if you have no scripts running at all? In other words, this lag happens every time you get a tooltip with just isxeq2 loaded and no scripts running?
 

Kannkor

Ogre
Seems there is a Item tooltips bug when you login with isxeq2. It's very laggy while you try to get tooltips from inventory and equipment. Anyone got this problem?
Can you be more specific...
What do you mean "get tooltips"?
I just opened my bags, and hovered my mouse over an item, and the item appeared extremely quickly ( 1/4 of a second?), and at the same speed it always has been for me. I did this with a few items in my inventory, and a few items I have equipped.

I had Ogrebot running while doing these tests for what it's worth.
 

lixleon

Member
Okay, I got where the problem is.
if ${Me.Ability[Faith].TimeUntilReady}<=72 && ${Me.Equipment[2].Name.Equal[Lead Idol]} <--- this one cause the laggy.
I use this for auto switch shield when I cast Faith.
If I run this script other than Paladin, It will delay tooltips.
 
Last edited:

Kannkor

Ogre
Okay, I got where the problem is.
if ${Me.Ability[Faith].TimeUntilReady}<=72 && ${Me.Equipment[2].Name.Equal[Lead Idol]} <--- this one cause the laggy.
I use this for auto switch shield when I cast Faith.
If I run this script other than Paladin, It will delay tooltips.
Do you have this in a loop? Specifically one that runs quickly.
${Me.Ability[Faith]}
Is a server call. So if you are spamming it, it will/can delay all other server requests. I'm guessing by adding the Paladin part, since you have the spell, Ama's caching probably kicked in and prevented the lag.

But you should NEVER spam the server with a server call on a fast loop.
 
Top Bottom