Quick Start
Get your first mechanic shop operational in under 5 minutes.
Prerequisites
Completed Installation
Server running without errors
Mechanic tablet item available in inventory
Step 1: Create Your First Shop (30 seconds)
Open dusa_mechanicv2/shared/config.lua and add your shop configuration:
Config.Shops = {
{
name = "bennys",
label = "Benny's Motorworks",
coords = vector3(-212.0, -1324.0, 31.0),
blip = {
enabled = true,
sprite = 446,
color = 5,
scale = 0.8,
label = "Benny's Motorworks"
},
employees = {}, -- Auto-populated from database
zones = {
{
type = "sphere",
coords = vector3(-212.0, -1324.0, 31.0),
radius = 20.0
}
}
}
}Save the file and restart the resource:
Step 2: Add Yourself as Employee (30 seconds)
Use the admin command to add yourself as shop owner:
[playerId]- Your player ID (find with/idcommand)bennys- Shop name from config4- Rank 4 (Owner with full permissions)
Rank levels:
0 = Trainee (view only)
1 = Mechanic (create orders, tune)
2 = Senior Mechanic (assign orders)
3 = Manager (inventory, employees)
4 = Owner (full access, finances)
Step 3: Open the Tablet (15 seconds)
Give yourself the mechanic tablet item:
Open your inventory and use the mechanic_tablet item
The tablet interface should open showing the app list
Click on the Mechanic app (wrench icon)
You should see the Benny's Motorworks dashboard
If tablet doesn't open: Check F8 console for errors and verify dusa_tablet is running.
Step 4: Create a Test Work Order (2 minutes)
Let's create your first work order:
In the Mechanic app, click "New Work Order" button
Fill in the form:
Vehicle Plate: Enter any plate (e.g., "ABC123")
Customer Name: Enter test customer name
Vehicle Model: Optional (auto-detected if near vehicle)
Description: "Oil change and brake inspection"
Add a service:
Click "Add Service"
Service name: "Oil Change"
Price: $500
Click "Create Work Order"
You should see a success message and the order in your dashboard
Congratulations! You've created your first work order.
Step 5: Test Vehicle Tuning (2 minutes)
Now let's test the tuning system:
Spawn a vehicle and get in as driver
Drive to your shop location (within the zone radius)
Open the tablet β Mechanic app β Tuning tab
The tuning menu should open showing categories:
Performance
Cosmetic
Stance
Engine Swaps
Navigate to Cosmetic β Front Bumper
Select a different bumper option
You should see the vehicle update in real-time (preview mode)
Click "Apply" to purchase and permanently apply the mod
Note: Tuning requires sufficient funds in your bank account. Prices are configurable in config.lua.
You're Done! π
Your mechanic shop is now fully operational! You've successfully:
β Created a mechanic shop
β Added yourself as shop owner
β Opened the tablet interface
β Created a work order
β Tested vehicle tuning
Next Steps
Now that your shop is running, explore these features:
Learn the System
Tablet Basics - Master the tablet interface
Work Orders - Complete work order workflow
Vehicle Tuning - All tuning options explained
Parts Management - Inventory system
Shop Management - Boss menu features
Customize Your Setup
Configuration - Customize prices, settings, and features
First Shop Setup - Detailed shop configuration guide
Adding Vehicle Mods - Add custom modifications
Multi-Shop Setup - Run multiple locations
Hire Your Team
Use the tablet's Management section to:
Hire employees (must be nearby)
Assign ranks and permissions
Track employee performance
Manage shop finances
Common Actions
Give someone the mechanic job:
Create additional shops: Add more entries to Config.Shops in config.lua and restart the resource.
Adjust tuning prices: Edit MechanicConfig.Tuning.Prices in config.lua:
Troubleshooting
Tablet won't open
Check F8 console for errors
Verify dusa_tablet is running:
ensure dusa_tabletTry relogging to the server
Mechanic app not showing
Ensure dusa_mechanicv2 is running:
ensure dusa_mechanicv2Check server console for errors
Verify resource load order in server.cfg
Tuning menu won't open
Ensure you're in the driver seat
Verify vehicle is within the tuning zone radius
Check that you have mechanic job
Can't create work orders
Verify you have sufficient job rank (minimum rank 1)
Check database connection
Review server console for validation errors
For more solutions, see the Troubleshooting Guide.
Need More Help?
Full Documentation: Start with User Guide
Configuration Reference: Configuration
Developer Docs: Developer Documentation
Common Issues: Troubleshooting
Happy mechanic work! π§
Last updated