🚗 Safe Vehicle Spawn

This feature is specially designed to catch cheat menus that try to spawn vehicles using “safe spawn” exploits. 🛑✨ These cheats usually bypass regular spawn checks but PrettyPacketAC is watching 👀💖

🔍 What It Does:

  • Detects vehicles spawned outside of approved zones, like garages or dealerships, along with 2 other detection methods that we wont go into.

  • Can take action (warn, kick, or ban) based on your config. 💥

⚙️ Configuration Example:

PrettyPacketAC.SafeVehicleSpawn = {
    enabled = false,
    action = "WARN", -- or "KICK"/"BAN"
    distance = 50,   -- Max allowed distance from a garage/shop to spawn a vehicle
}

📍 Setup Required:

You'll need to add the coordinates of all garages and vehicle shops to this section:

PrettyPacketAC.VehicleLocations = {
    vector3(308.19, -595.35, 43.29), -- Example: Pillbox Garage
    vector3(-56.78, -1096.45, 26.42), -- Example: Car Dealership
    -- Add more here 💕
}

💡 Pro Tip: If you’re using multiple garages (like in qb-garages or custom dealership scripts), make sure to add each location where vehicles can be spawned to avoid false flags. It’s a one-time setup for peace of mind! 💖🔧

Last updated