Page cover

βš™οΈConfiguration

This is the configuration that you can give to this script to modify it to your liking

Config File

Config = {}

Config.Debug = true -- Activa el comando /testhit para crear un clon y probar
Config.Command = 'hitmarker'

Config.Default = {
    enabled = true,
    sound = true,
    font = 4, -- Chalet Comprime
    colors = {
        headshot = '#FF3B3B',
        body = '#FFFFFF',
        armor = '#3BA4FF'
    },
    sounds = {
        headshot = "headshot_csgo.mp3",
        hit = "rust.mp3"
    }
}

Config.Fonts = {
    { label = "Chalet London", id = 0 },
    { label = "House Script", id = 1 },
    { label = "Monospace", id = 2 },
    { label = "Chalet Comprime", id = 4 },
    { label = "Pricedown", id = 7 }
}

Config.Sounds = {
    headshot = {
        { label = "CS:GO Headshot", file = "headshot_csgo.mp3" },
        { label = "CS Headshot", file = "headshot_cs.mp3" },            
        { label = "Toma Don Ramon", file = "toma_don_ramon.mp3" },
        { label = "Rust", file = "rust.mp3" },
        { label = "Minecraft", file = "minecraft.mp3" },
        { label = "Roblox", file = "roblox.mp3" },
        { label = "Bongo", file = "bongo.mp3" },
        { label = "Fart", file = "fart.mp3" }
    },
    hit = {
        { label = "Rust", file = "rust.mp3" },
        { label = "Minecraft", file = "minecraft.mp3" },
        { label = "Minecraft Stone", file = "minecraft_stone.mp3" },
    }
}

Last updated