Post#3 » Mon Jul 13, 2026 9:53 am
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