๐Ÿš— 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