Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support. Test
Posted By: dineshsorry, i have no good ideas. is it logging you out (back to the character selection screen), or is it actually giving you a "disconnected from server" message and making you log in again from scratch?
Posted By: brykrysJust a thought - check the settings for the ScanFinish module, and see if you have the "Log out when scan complete" option enabled; although that is only supposed to log you out after a full scan, some people have been reporting oddities with that module.
Posted By: Janikeitonohito, which locale do you have?
local name = private.curQuery.name -- make a copy of name (dont forget to use it in actual call to private.Hook.QueryAuctionItems)
if (name and string.len(name) > 61) then -- check name for long utf-8 strings
name = string.sub(name, 1, 61) -- strip it off
if (string.byte(name, 61) >= 192) then -- check last byte for utf-8 start code
name = string.sub(name, 1, 60) -- ugly code to strip last byte
end
end
function lib.qaiPrepareName(ItemName)
local name = ItemName
if (name and string.len(name) > 61) then
name = string.sub(name, 1, 61)
if (string.byte(name, 61) >= 192) then
name = string.sub(name, 1, 60)
end
end
return name
end function lib.qaiPrepareName(ItemName)
return ItemName
end 1 to 23 of 23