Installation

Prepare and install dependencies

Framework dependencies (supported by current bridge)

For framework, you can either choose:

Download

Please make you downloaded your resource:

Add items

Add items to ox_inventory/data/items.lua;

    ["rottweiler1"]        = {
        label = "Rottweiler",
        weight = 5000,
        stack = true,
        close = true,
        description = "Black-colored",
    },
    ["rottweiler2"]        = {
        label = "Rottweiler",
        weight = 5000,
        stack = true,
        close = true,
        description = "Brown-colored",
    },
    ["rottweiler3"]        = {
        label = "Rottweiler",
        weight = 5000,
        stack = true,
        close = true,
        description = "Dark brown brindle-colored",
    },
    ["cat1"]               = {
        label = "Cat",
        weight = 1000,
        stack = true,
        close = true,
        description = "Tabby kitten",
        },
    ["cat2"]               = {
        label = "Cat",
        weight = 1000,
        stack = true,
        close = true,
        description = "Tuxedo kitten",
        },
    ["cat3"]               = {
        label = "Cat",
        weight = 1000,
        stack = true,
        close = true,
        description = "Orange kitten",
        },
    ["chicken"]            = {
        label = "Chicken",
        weight = 1000,
        stack = true,
        close = true,
        description = "What is a chicken doing here?",
        },
    ["husky1"]             = {
        label = "Husky",
        weight = 5000,
        stack = true,
        close = true,
        description = "Black and white-colored",
    },
    ["husky2"]             = {
        label = "Husky",
        weight = 5000,
        stack = true,
        close = true,
        description = "Golden and white-colored",
    },
    ["husky3"]             = {
        label = "Husky",
        weight = 5000,
        stack = true,
        close = true,
        description = "Light-colored",
    },
    ["mtlion1"]            = {
        label = "Mountain lion",
        weight = 10000,
        stack = true,
        close = true,
        description = "What is a kitten doing here?",
        },
    ["panther"]            = {
        label = "Panther",
        weight = 10000,
        stack = true,
        close = true,
        description = "What is a kitten doing here?",
        },
    ["poodle"]             = {
        label = "Poodle",
        weight = 5000,
        stack = true,
        close = true,
        description = "A dog for fancy people",
        },
    ["shepherd1"]          = {
        label = "Border Collie",
        weight = 5000,
        stack = true,
        close = true,
        description = "Good shepherd dog",
        },
    ["pug1"]               = {
        label = "Pug",
        weight = 5000,
        stack = true,
        close = true,
        description = "Light-colored",
        },
    ["pug2"]               = {
        label = "Pug",
        weight = 5000,
        stack = true,
        close = true,
        description = "Gray-colored",
    },
    ["pug3"]               = {
        label = "Pug",
        weight = 5000,
        stack = true,
        close = true,
        description = "Brown-colored",
    },
    ["pug4"]               = {
        label = "Pug",
        weight = 5000,
        stack = true,
        close = true,
        description = "Black-colored",
    },
    ["retriever1"]         = {
        label = "Retriever",
        weight = 5000,
        stack = true,
        close = true,
        description = "Light orange-colored",
    },
    ["retriever2"]         = {
        label = "Retriever",
        weight = 1000,
        stack = true,
        close = true,
        description = "Black-colored",
    },
    ["retriever3"]         = {
        label = "Retriever",
        weight = 5000,
        stack = true,
        close = true,
        description = "Light brown-colored",
    },
    ["retriever4"]         = {
        label = "Retriever",
        weight = 5000,
        stack = true,
        close = true,
        description = "Brown-colored",
    },

    ["westy1"]             = {
        label = "West Highland White Terrier",
        weight = 5000,
        stack = true,
        close = true,
        description = "White-colored",
    },
    ["westy2"]             = {
        label = "Scottish Terrier",
        weight = 5000,
        stack = true,
        close = true,
        description = "Brown-colored",

    },
    ["westy3"]             = {
        label = "Scottish Terrier",
        weight = 5000,
        stack = true,
        close = true,
        description = "Black-colored",
    },
    ["rabbit"]             = {
        label = "Rabbit",
        weight = 5000,
        stack = true,
        close = true,
        description = "Bring some carrots for sure",
    },

Start resource

Make sure, resource is started after ox_lib.

  ensure ox_lib
  ...
  ensure fd_pets