JK Pause Menu

Weekly Events

Promote your server's weekly events right inside the pause menu — each with a title, description and image.

How it works

The Weekly Events panel reads the CFG.WeekEvents list. Add one entry per event; leave the list empty to show the default "No events for this week" placeholder.

Configuration

shared/cfg.lua
WeekEvents = {
    {
        title       = "Drag Race Night",
        description  = "Friday 9PM — meet at the airport runway. Cash prizes!",
        image       = "https://i.imgur.com/yourimage.png",
    },
    {
        title       = "Double XP Weekend",
        description = "All jobs pay 2x from Saturday to Sunday.",
        image       = "https://i.imgur.com/another.png",
    },
},

Fields

OptionTypeDefaultDescription
titlestringEvent name shown in bold.
descriptionstringShort summary. Keep it to one or two lines for the best look.
imagestring (url)Banner image displayed for the event. Use a direct image link.
Image hostingUse a direct, publicly accessible image URL (e.g. Imgur, your CDN). Recommended aspect ratio is wide/banner so the image fills the card cleanly.
No database neededEvents are defined entirely in the config — no SQL, no panel. Edit the list and restart the resource to update them.