OSRS Plugin API
    Preparing search index...

    Enumeration ON_MAP_REBUILD_POST

    Event id for finishing the loading of new section of the map. Calls the OnMapRebuildPostCallback.

    -- Create a function
    local mapRebuildPost = function()
    osrs.print("Loaded into new section of the map")
    end
    -- Subscribe to the function
    osrs.Events.subscribe(mapRebuildPost, osrs.Events.ON_MAP_REBUILD_POST)