Names

This file is not relevant to the operation of the script, it is simply a list with random names and surnames for some particular cases, such as obtaining evidence from NPCs or the owner of a vehicle without an owner (a random name is assigned)

config/names.lua
Config.RandomNames = {
    { -- Firstnames
        ["male"] = {
            "Tyler",
            "John",
            "Derek",
            ---
        },
        ["female"] = {
            "Dannyel",
            "Mirella",
            "Zowy",
            ---
        } 
    },
    { -- Lastnames
        "Locket",
        "Leon",
        "Kawasaki",
        ---
    }
}

Last updated