SphereCommunity
tooltips - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: tooltips (/Thread-tooltips--6538)



tooltips - Lestatnine - 01-06-2020 12:26 PM

Here is how i have spehre.ini set but when i move over and item or even click on it no tooltips shows.. Using .056b


// FeatureAOS, used to control AOS expansion features ( default 0 )
// FEATURE_AOS_UPDATE_A 01 // AOS Monsters, Map
// FEATURE_AOS_UPDATE_B 02 // Tooltip, Fightbook, Necro/paladin on creation, Single/Six char selection screen, Skills, Newer spellbook support
// FEATURE_AOS_POPUP 04 // PopUp Menus
// FEATURE_AOS_DAMAGE 08
FeatureAOS = 02|04

EDIT: You have to add up the numbers 15 in this case works...



Another question is what feature allows you to click on a vendor and a list of options comes up like buy/sell so you dont have to type that.
Thx


RE: tooltips - Coruja - 01-07-2020 09:25 AM

It's the popup (context menu) feature, you already enabled it
I don't remember if you just need to enable the flag 08 or if it only works when 01 is enabled too

But note that these values are in hex and should not be confused with dec format. Just taking a quick example, 01|02|04|08|010|020 = 03f (correct) is completely different from doing 1+2+4+8+10+20 = 45 (wrong). Anyway, to avoid deal with these weird hex numbers you can just set FeatureAOS=01|02|04|08 instead FeatureAOS=15 or FeatureAOS=0f