Configuration


Config Preview: v1.0

Config = {}

Config.webhook = {
    url = "",
    title = "Panning",  
}

Config.Lang = "EN" -- PT,EN ... languages

Config.timep = 5000 -- time for panning

Config.Goldpan = 'goldpan' -- Goldpan item
Config.qtygoldpan = 1 -- quantity to be removed from inventory
Config.chancebroke = true
Config.chancebroken = 60 -- if true...chance that can break 1=1%, 2=2% etc

Config.GoldpanItem = 'pedra' -- The item the player will need for panning
Config.qtygoldpanitem = 1 --quantity to remove from this item

Config.chance1 = 45 --1-100 chance of receiving GoldItems 1=1%, 2=2% etc
Config.qtygolditems = {1,5} -- quantity for random from 1 to 5
Config.GoldItems = {'pepita_ouro', 'pepita_cobre', 'pepita_ferro'} -- items you get if chance is chosen... random choice of 1 item

Config.qtywash = {1,2} -- quantity for random from 1 to 2
Config.WashingItems = { -- Items you can get from washing rocks
    'sal',
    'pedra',
    'carvao',
    
}

Config.rareitem = true
Config.chance2 = 5 --1-100 chance of receiving rareitems 1=1%, 2=2% etc
Config.qty = 1 --amount of rare items dropped
Config.rareitems = { -- items with lower chance of coming out
    'diamante',
    'rubi'
}

Config.qtychancehotspot = {5,10} -- amount to increase the chance if it is inside a polyzone... it will increase the chance randomly ... min 1 max 100  % 
Config.Hotspots = { -- increases the probability of dropping rare items
    {
        label = 'Kamassa River', -- The name, this is strictly visual for blip names, can be named anything!
        id = 'kamassa_river', -- The identifier of the river HAS TO BE UNIQUE
        coords = { -- Vector2 Polyzone coords
            vector2(2302.1120605468, 191.99772644042),
            vector2(2258.7827148438, 244.7160949707),
            vector2(2235.6157226562, 308.85150146484),
            vector2(2267.6584472656, 320.87823486328),
            vector2(2306.5317382812, 262.37814331054),
            vector2(2333.0869140625, 213.49571228028)
        },
        minZ = 43.875305175782, -- Minimum Z Pos for the polyzone
        maxZ = 53.66160583496, -- Maximum Z Pos for the polyzone
    },
    {
        label = 'Window Rock River',
        id = 'window_rock',
        coords = {
            vector2(-113.18208312988, 1443.2928466796),
            vector2(-87.23462677002, 1457.6431884766),
            vector2(-75.73860168457, 1481.8635253906),
            vector2(-38.384033203125, 1474.3354492188),
            vector2(-57.992519378662, 1432.5572509766),
            vector2(-84.852905273438, 1411.8271484375)
        },
        minZ = 108.87984466552,
        maxZ = 118.41208648682,
    },
    {
        label = 'Lower Montana River',
        id = 'lower_montana',
        coords = {
            vector2(-2165.4360351562, -2037.6072998046),
            vector2(-2135.3989257812, -2051.5485839844),
            vector2(-2127.9128417968, -2060.2097167968),
            vector2(-2137.5129394532, -2072.5593261718),
            vector2(-2156.8508300782, -2061.6994628906),
            vector2(-2173.6037597656, -2054.7192382812)
        },
        minZ = 45.603881835938,
        maxZ = 55.94333267212,
    },
}

Last updated