Page cover

πŸ—£οΈCommands

  • This script has some commands that players can use for various tasks

  • To edit these commands simply change the relevant information in Config.CoreSettings.Misc.Commands

Misc = { -- misc settings
    ---
    Commands = { -- commands
        RequestTow = { -- request tow command
            Command = 'requesttow', -- command name
            Description = 'Call for a tow truck driver', -- command description
        },
        TowRequests = { -- view tow requests command (only for jobs permitted)
            Command = 'towrequests', -- command name
            Description = 'View pending tow requests', -- command description
        },
        TowBilling = { -- tow billing command
            Command = 'towbilling', -- command name
            Description = 'Open the towing billing menu', -- command description
        },
        StartNPCTow = { -- start npc towing mission command
            Command = 'npctowing', -- command name
            Description = 'Start an NPC towing mission', -- command description
        },
        StopNPCTow = { -- stop npc towing mission command
            Command = 'cancelnpctowing', -- command name
            Description = 'Cancel an NPC towing mission', -- command description
        },
    },
},

Last updated