Page cover

πŸ“‹Reputation

This script uses a reputation system to determine requirements and rewards

Ensure you have imported or ran the SQL file provided to your database to ensure the reputation system works as intended


  • [0] is the rank level number

  • Label is the rank label

  • Multiplier is the amount to increase items returned from scrapping parts (the bigger the number the greater the rewards given from breaking down the part)

  • Duration is the amount to reduce the progressCircle timer by (the smaller the number the faster the duration to break down the part)

    Config.Reputation = {
        [0] = { label = 'Rookie', multiplier = 1, duration = 1.0 },
        [100] = { label = 'Wrencher', multiplier = 2, duration = 0.80 },
        [250] = { label = 'Stripper', multiplier = 3, duration = 0.65 },
        [500] = { label = 'Master', multiplier = 4, duration = 0.5 },
        [750] = { label = 'Legend', multiplier = 5, duration = 0.4 },
        [1000] = { label = 'The OG', multiplier = 5, duration = 0.3 },
    }

Last updated