Wise Scripts Docs
ShopDiscord
  • 👋Welcome
  • 💻 Scripts
    • 🚙Wise Garage
      • Installation
      • Database
      • Events
      • Example Configs
        • Main
        • Garages
        • Impounds
    • 🖥️Wise Hud
      • Installation
      • Example Configs
        • Main
    • 🦌Wise Hunting
      • Installation
      • Example Configs
        • Main
        • Animals
        • Huntareas
        • Market
    • 🔫Wise Gungame
      • Installation
      • Setup for Ambulancejob
    • 👥Wise Faction
      • Installation
      • Exports
      • Events
      • Setup FFA & Gangwar
      • Example Configs
        • Main
        • FFA
        • Gangwar
        • Robbery
        • Shop
        • Missions
    • 🔔Wise Notify
      • Installation
      • Exports & Triggers
      • ESX Replacements
    • ⚠️Wise Report
      • Installation
    • 🎮Wise Lifeinvader
      • Installation
  • 🏡PROPS
    • 🪨Wise Ore Props Pack
    • ✨Wise Crystal Props Pack
  • 🧟‍♂️PEDS
    • 🎃HALLOWEEN Pumpkin Monster
    • 🎃HALLOWEEN MR Bright
Powered by GitBook
On this page
  1. 💻 Scripts
  2. Wise Hunting
  3. Example Configs

Animals

Config.Animals = {
  {
    name = "Deer",
    health = 300,
    model = "a_c_deer",
    aggressive = false,
    loot = {
      { item = "animalskin",        amount = 8,  dropChance = 0.90 },
      { item = "peltdeer1stargold", amount = 4,  dropChance = 0.35 },
      { item = "peltdeer2stargold", amount = 3,  dropChance = 0.25 },
      { item = "peltdeer3stargold", amount = 2,  dropChance = 0.15 },
      { item = "peltdeer3starred",  amount = 1,  dropChance = 0.10 },
      { item = "deerantler",        amount = 1,  dropChance = 0.10 },
      { item = "deer_meat",         amount = 10, dropChance = 1.00 }
    }
  },
  {
    name = "Boar",
    health = 500,
    model = "a_c_boar",
    aggressive = true,
    loot = {
      { item = "animalskin",        amount = 8,  dropChance = 0.90 },
      { item = "peltboar1stargold", amount = 4,  dropChance = 0.35 },
      { item = "peltboar2stargold", amount = 3,  dropChance = 0.25 },
      { item = "peltboar3stargold", amount = 2,  dropChance = 0.15 },
      { item = "peltboar3starred",  amount = 1,  dropChance = 0.10 },
      { item = "boar_meat",         amount = 13, dropChance = 1.00 }
    }
  },
  {
    name = "Pig",
    health = 200,
    model = "a_c_pig",
    aggressive = false,
    loot = {
      { item = "animalskin",            amount = 8, dropChance = 0.90 },
      { item = "pelthousepig1stargold", amount = 4, dropChance = 0.35 },
      { item = "pelthousepig2stargold", amount = 3, dropChance = 0.25 },
      { item = "pelthousepig3stargold", amount = 2, dropChance = 0.15 },
      { item = "pelthousepig3starred",  amount = 1, dropChance = 0.10 },
      { item = "pork",                  amount = 5, dropChance = 1.00 }
    }
  },
  {
    name = "Cow",
    health = 300,
    model = "a_c_cow",
    aggressive = false,
    loot = {
      { item = "animalskin",       amount = 8, dropChance = 0.90 },
      { item = "peltcow1stargold", amount = 4, dropChance = 0.35 },
      { item = "peltcow2stargold", amount = 3, dropChance = 0.25 },
      { item = "peltcow3stargold", amount = 2, dropChance = 0.15 },
      { item = "peltcow3starred",  amount = 1, dropChance = 0.10 },
      { item = "beef",             amount = 6, dropChance = 1.00 }
    }
  },
  {
    name = "Lion",
    health = 850,
    model = "a_c_mtlion",
    aggressive = true,
    loot = {
      { item = "animalskin",      amount = 8,  dropChance = 0.90 },
      { item = "petlion1starred", amount = 4,  dropChance = 0.35 },
      { item = "petlion2starred", amount = 3,  dropChance = 0.25 },
      { item = "petlion3starred", amount = 1,  dropChance = 0.10 },
      { item = "lion_meat",       amount = 25, dropChance = 1.00 }
    }
  },
  {
    name = "Coyote",
    health = 350,
    model = "a_c_coyote",
    aggressive = true,
    loot = {
      { item = "animalskin",          amount = 8,  dropChance = 0.90 },
      { item = "coyotepelt1stargold", amount = 4,  dropChance = 0.35 },
      { item = "coyotepelt2stargold", amount = 3,  dropChance = 0.25 },
      { item = "coyotepelt3stargold", amount = 2,  dropChance = 0.15 },
      { item = "coyotepelt3starred",  amount = 1,  dropChance = 0.10 },
      { item = "meat",                amount = 10, dropChance = 1.00 }
    }
  },
  {
    name = "Chicken",
    health = 200,
    model = "a_c_hen",
    aggressive = false,
    loot = {
      { item = "animalskin",           amount = 8,  dropChance = 0.90 },
      { item = "peltchicken1stargold", amount = 4,  dropChance = 0.35 },
      { item = "peltchicken2stargold", amount = 3,  dropChance = 0.25 },
      { item = "peltchicken3stargold", amount = 2,  dropChance = 0.15 },
      { item = "peltchicken3starred",  amount = 1,  dropChance = 0.10 },
      { item = "chicken_wings",        amount = 10, dropChance = 1.00 }
    }
  },

  {
    name = "Cat",
    health = 200,
    model = "a_c_cat_01",
    aggressive = false,
    loot = {
      { item = "animalskin",      amount = 8,  dropChance = 0.90 },
      { item = "peltcat1starred", amount = 4,  dropChance = 0.35 },
      { item = "peltcat2starred", amount = 3,  dropChance = 0.25 },
      { item = "peltcat3starred", amount = 1,  dropChance = 0.10 },
      { item = "meat",            amount = 10, dropChance = 1.00 }
    }
  },
  {
    name = "Rabbit",
    health = 200,
    model = "a_c_rabbit_01",
    aggressive = false,
    loot = {
      { item = "animalskin",          amount = 8,  dropChance = 0.90 },
      { item = "peltrabbit1stargold", amount = 4,  dropChance = 0.35 },
      { item = "peltrabbit2stargold", amount = 3,  dropChance = 0.25 },
      { item = "peltrabbit3stargold", amount = 2,  dropChance = 0.15 },
      { item = "peltrabbit3starred",  amount = 1,  dropChance = 0.10 },
      { item = "rabbit_meat",         amount = 10, dropChance = 1.00 }
    }
  },
}
PreviousMainNextHuntareas

Last updated 6 months ago

🦌