Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
i'd also love a mod that lets me zoom out more, why is it so confined?
; ======================== Begin ===========================
toggleWorldTooltips = Y
; Set your world tooltips key in the BG3 OS options to something other than LAlt.
; I'm using the letter 'y' for example.
; When LAlt is pressed, execute the ToggleWorldTips() function.
$LAlt::ToggleWorldTips()
; Toggle function.
ToggleWorldTips()
{
global toggleWorldTooltips := !toggleWorldTooltips
if (!toggleWorldTooltips)
{
SendInput {y Up}
}
else
{
SendInput {y Down}
}
return
}
; Press NumLock to suspend the script so you can use LAlt normally.
$NumLock:: Suspend
; ========================= End ============================
In game set the key for show item labels to "Y" (or change it to whatever key you want in the script and then set it to that). Note, you'll also need to change the key for "expand tooltip" to something else in game (if you don't want to have to suspend the script every time). I chose to change it to right alt. Finally, run the script and voila, left alt now toggles item labels.
No idea why "Highlight my characters" is bound, but not "highlight items"
Thank you so much. As someone with a disability, holding alt would have been a deal breaker.