Page cover

πŸ’ΈEquipment

  • You can define equipment available to purchase at the diving instructor peds and their cost

  • Name is the item name

  • Cost is the item cost

Config.Equipment = {
    --define items available to buy at the diving instructor
    --name is the item name
    --cost is the price of that item
    --add as many items here as you wish
    { name = 'divingtank',     cost = 1000, },
    { name = 'divingrefill',   cost = 25, },
    { name = 'anchor',         cost = 500, },
    { name = 'wetsuit',        cost = 1000, },
    { name = 'crowbar',        cost = 500, },
}

Last updated