Zombie with loot

A script by alexskin91

No reviews yet.
Zombie with loot main image

Full Description

At the location if you can kill all enemy, you can loot the crates. You can change the location, and much else.

Buy from here : https://black-city-scripts.tebex.io/package/5368505
Video Preview: https://youtu.be/TyCwOsd_Itg

Code is accessible No
Subscription-based No
Lines (approximately) 500+
Requirements ESX
Support Yes

Config:

Config.lang = "en"

--| ZOMBIES |--
Config.SpawnZombie = 2
Config.ZombieDamage = 20
Config.MinSpawnDistance = 10
Config.MaxSpawnDistance = 25
Config.DespawnDistance = 40
Config.SpawnZone = {
    x = -2100.0, 
    y = 2899.0, 
    z = 33.0, 
    radio = 150.0
}
Config.ModelSpecies = {
    "csb_ramp_marine",
    "csb_mweather",
    "s_m_m_marine_01",
}

--| LOOT |--
Config.ChanceOfNothing = 60
Config.ChanceOfMoney = 30
Config.ChanceOfItem = 10
-- AllChances = Config.ChanceOfNothing + Config.ChanceOfMoney + Config.ChanceOfItem 
-- NEED TO AllChances = 100 

Config.ItemLoot = {
    { item = "bat", min = 1, max = 1 },
    { item = "drill", min = 1, max = 1 },
    { item = "flashlight", min = 1, max = 1 },
    { item = "goldnecklace", min = 1, max = 1 },
    { item = "goldwatch", min = 1, max = 1 },
    { item = "hackerDevice", min = 1, max = 1 },
    { item = "knife", min = 1, max = 1 },
    { item = "lockpick", min = 1, max = 1 },
    { item = "pistolbelso", min = 1, max = 2 },
    { item = "pistolcso", min = 1, max = 2 },
    { item = "pistoltar", min = 1, max = 2 },
    { item = "phone", min = 1, max = 1 },
    { item = "radio", min = 1, max = 1 },
    { item = "hamburger", min = 1, max = 1 },
    { item = "pistol_ammo", min = 10, max = 25 },
    { item = "water", min = 1, max = 1 },
    { item = "c4", min = 1, max = 1 },
    { item = "smg_ammo", min = 10, max = 25 },
    { item = "pistol_ammo", min = 10, max = 25 },
    { item = "rifle_ammo", min = 10, max = 25 },
    { item = "shotgun_ammo", min = 10, max = 25 },
    { item = "cocaine", min = 1, max = 1 },
    { item = "weed_lemonhaze", min = 1, max = 1 },
    { item = "bottle", min = 1, max = 1 },
    { item = "crowbar", min = 1, max = 1 },
    { item = "golfclub", min = 1, max = 1 },
}

Config.MoneyLoot = {
    { account = "money", min = 200, max = 300}
}