Skip to main content

Installation Steps

1

Extract and place the resource

Extract the script from the zip file and place it into your standalone folder or a folder that starts before your scripts.
2

Configure the resource

Open config.lua and adjust the settings to your liking. See the configuration section below for details.
3

Add to server.cfg

Add the following to your server.cfg:
ensure projectx-tasks

Configuration

Below is the full configuration file with explanations for each option.
Config = Config or {}

Config = {
    ToggleCommand = {
        Enabled = true,
        Command = "toggletasks",
        Keybind = 'J',
        KeybindDescription = 'Toggle Task List'
    }
}

Toggle Command Settings

ToggleCommand.Enabled
boolean
default:"true"
Enable or disable the command and keybind to toggle the task list visibility. Set to false to completely disable the toggle feature.
ToggleCommand.Command
string
default:"toggletasks"
The command players can use to toggle the task list on/off (e.g., /toggletasks in chat)
ToggleCommand.Keybind
string
default:"J"
The keybind to toggle the task list. Set to '' (empty string) or comment out to disable keybind functionality while keeping the command active.
ToggleCommand.KeybindDescription
string
default:"Toggle Task List"
Description text shown in the FiveM keybinds menu to help players identify what the keybind does