Page 1 of 1

interact

Posted: Tue Jun 16, 2026 3:52 pm
by Wuppies1993
Does interact work in this version? https://github.com/vargv666/Interact

Re: interact

Posted: Tue Jun 16, 2026 10:28 pm
by Gillas
It requires VanillaFixes and the one that you install over OctoLauncher gives Troijan warning and gets blocked by Windows. Then https://github.com/hannesmann/vanillafi ... tag/v1.5.3 on the other hands gives error:

DLL entry point returned an error (0).
Make sure you have a compatible game client (1.6.1-1.12.1).

Unfortunately. I would love to see interact working.

Re: interact

Posted: Mon Jul 13, 2026 9:53 am
by Vaded
ive fixed interact just replace content of interact.lua with this

BINDING_HEADER_INTERACT = 'Interact'

StaticPopupDialogs['INTERACT_WARNING'] = {
text = 'Failed to load |cffffd200Interact|cffffffff. Follow the installation instructions to ensure proper installation.',
button1 = 'Okay',
timeout = 0,
whileDead = true,
}

if not InteractNearest then
StaticPopup_Show('INTERACT_WARNING')
end

function Interact(autoloot)
if not InteractNearest then
StaticPopup_Show('INTERACT_WARNING')
return
end

InteractNearest(autoloot)
end