FAQ
1. What is the Ata DMV School System?
The Ata DMV School System is a FiveM script that simulates a driving school experience, allowing players to obtain various vehicle licenses through theory and practical exams.
2. How do I install the Ata DMV School System?
Place the
ata_dmvschool_v2
folder in your server'sresources
directory.Add
ensure ata_core
andensure ata_dmvschool_v2
to yourserver.cfg
.Configure the
config.lua
file to suit your server's needs.Restart your server.
3. What licenses can players obtain?
Players can obtain licenses for driving cars, bikes, planes, boats, and trucks. Each license has a theory and practical component.
4. How do I give a player a license?
Use the GiveLicenseToPlayer
export function. For example, in ESX:
5. How can I check if a player has a specific license?
Use the CheckLicense
export function. For example, in QBCore:
6. Can I remove a license from a player?
Yes, use the RemoveLicenseFromPlayer
export function. For example, in ESX:
7. How do I customize the exam questions?
Edit the question files (e.g., questions/driver.lua or questions/truck.lua
) to add or modify questions. Ensure each question has a question
, a
, b
, c
, and correct
field.
8. What happens if a player fails an exam?
Players can retake exams. The script can be configured to allow multiple attempts and set cooldown periods between attempts.
9. How do I change the language of the script?
Modify the locale.lua
file to change text strings. You can add new languages by creating additional entries in the Locale
table
Last updated