mod-eluna icon indicating copy to clipboard operation
mod-eluna copied to clipboard

If GossipMenuAddItem larger than 32 times, the server will crash.

Open kissingers opened this issue 2 years ago • 1 comments

If GossipMenuAddItem larger than 32 times, the server will crash. Can limit or give an error message to prevent it?

kissingers avatar Apr 04 '23 05:04 kissingers

image Confirmed with

local function hello(event, player, object)
    for n = 1, 40, 1 do
        player:GossipMenuAddItem(1, "Text "..n, 20124, n)
        print("added: "..n)
    end
    player:GossipSendMenu(0, object, 0)
end

RegisterCreatureGossipEvent(20124, 1, hello)

55Honey avatar Apr 04 '23 18:04 55Honey