OSRS Plugin API
    Preparing search index...

    Enumeration ON_CLAN_RECORD_TRANSMIT

    Event id for on clan record transmit. Calls the OnClanRecordTransmitCallback.

    -- Create a function
    local clanRecordTransmit = function(isDirty, dirtyIndices)
    osrs.print("Clan records have been changed: " .. tostring(isDirty))
    osrs.print("Index of the changed clan setting property: " .. tostring(dirtyIndices))
    end
    -- Subscribe to the function
    osrs.Events.subscribe(clanRecordTransmit, osrs.Events.ON_CLAN_RECORD_TRANSMIT)