Item Quick Access
Moderators: Active Admins, Forum Moderators, Active DMs
-
- Posts: 2364
- Joined: Mon Sep 08, 2014 4:34 am
Item Quick Access
I am quickly learning to love this thing. Not needing to quickslot all my wands is a blessing. My only real gripe is that there are no sorting options - only alphabetical. Being able to sort by duration, for instance, would be super helpful. I'd rename all my wands to accomplish that myself, but only some wands seem to be renamable.
Rolled: Helene d'Arque, Sara Lyonall
Shelved: Kels Vetian, Cin ys'Andalis, Saul Haidt
Playing: Oshe Jordain
Shelved: Kels Vetian, Cin ys'Andalis, Saul Haidt
Playing: Oshe Jordain
Re: Item Quick Access
Hi there !
I haven't played in a long time, and despite my searching the updates section I haven't found what this "Item Quick Access" refers to ... But it sounds wildly interesting!!
Could you please link me to a place where is described what and how it is done?
Thanks in advance
I haven't played in a long time, and despite my searching the updates section I haven't found what this "Item Quick Access" refers to ... But it sounds wildly interesting!!
Could you please link me to a place where is described what and how it is done?

Thanks in advance
Re: Item Quick Access
It's one of the wander NUI stuff made by Morderon. Type -nui item, and you'll be able to use all your potions, wands, and scrolls in your inventory.Tikin wrote: Wed Dec 21, 2022 8:27 am Hi there !
I haven't played in a long time, and despite my searching the updates section I haven't found what this "Item Quick Access" refers to ... But it sounds wildly interesting!!
Could you please link me to a place where is described what and how it is done?![]()
Thanks in advance![]()
Re: Item Quick Access
Thanks a lot! 
Re: Item Quick Access
Here is autohotscript I am using to open NUI item menu, instructions are similar to script I posted to "Buying Basic Potions & Writing Paper" viewtopic.php?p=310886#p310807
I apologize if following is confusing. NUI commands reference: https://wiki.nwnarelith.com/Console_command#-nui , or chat command "-nui ?"
Installation:
Installation: https://www.autohotkey.com/download/ahk-install.exe , shoud associate .ahk scripts with this program, which are just text files.
Make an file, for example - nwn-nui.ahk or put it in you common nwn autohotkey script as I do.
Content of script text file:
Save file, double click it to run with AutoHotkey. You can see it's running by white H icon on green background in your system tray area. Right click shows menu with option to exit or reload the script in case it's needed after edit.
On pressing Ctrl + Alt + A, it opens item menu, sets it transparent, borderless and moves it to right-down corner of screen, resizing it to defined size.
How to get the right coordinates?
- Use chat (=console) command "-nui item" to open NUI Item menu
- Use "-nui helper" to open helper window
- Use mouse to position the NUI Item menu window suitably
- In helper window in top-right dropdown "window select" select "nui_item" to view properities of NUI Item menu window
- Hit refresh button in helper window
- Make note of horizontal & vertical postion and widht & height
- Edit Autohotkey script with these values (geometry command)
Merry xmas to all.
I apologize if following is confusing. NUI commands reference: https://wiki.nwnarelith.com/Console_command#-nui , or chat command "-nui ?"
Installation:
Installation: https://www.autohotkey.com/download/ahk-install.exe , shoud associate .ahk scripts with this program, which are just text files.
Make an file, for example - nwn-nui.ahk or put it in you common nwn autohotkey script as I do.
Content of script text file:
Code: Select all
!^a::
Send {enter}
Sleep, 300
Send -nui item{enter}
Send {enter}
Sleep, 300
Send -nui set nui_item transparent true{enter}
Send {enter}
Sleep, 300
Send -nui set nui_item border false{enter}
Send {enter}
Sleep, 300
Send -nui set nui_item geometry 2155,470,232,663{enter}
return
On pressing Ctrl + Alt + A, it opens item menu, sets it transparent, borderless and moves it to right-down corner of screen, resizing it to defined size.
How to get the right coordinates?
- Use chat (=console) command "-nui item" to open NUI Item menu
- Use "-nui helper" to open helper window
- Use mouse to position the NUI Item menu window suitably
- In helper window in top-right dropdown "window select" select "nui_item" to view properities of NUI Item menu window
- Hit refresh button in helper window
- Make note of horizontal & vertical postion and widht & height
- Edit Autohotkey script with these values (geometry command)
Merry xmas to all.
Characters:
Cecil - Active
Qtar Thepetor - Lost in the Void
Rudolfo - Teleported thru the roof
Re: Item Quick Access
Nice!
Thank you, Santa!!
And good holydays to all
Thank you, Santa!!

And good holydays to all
Re: Item Quick Access
This NUI tool is fantastic. A great piece of work.
Is there way to change the default selection to?
1) Self
2) Wands
(I find that's the selection I use most)
Is there way to change the default selection to?
1) Self
2) Wands
(I find that's the selection I use most)