For the complete documentation index, see llms.txt. This page is also available as Markdown.

Announcements

Here, you'll find key exports for managing weapons. These exports allow you to register and update weapons as needed.


Type

type Announcement = {
    id: number,
    title: string,
    content: string, // stringified JSON
    pinned: boolean,
    author: {
        identifier: string,
        name: string
    }
}

Exports

Search for an Announcement

exports['redutzu-mdt']:SearchAnnouncement(id: number) // AnnouncementType | null

Create a new Announcement

Update a Announcement

Delete an Announcement

Last updated