FAQ

This page was made for FAQ I hope you will find the question what are you looking for :D

  1. How do I install script and how do I set it up. Ofc, go to my docs. Open Baspel Wheel Clamp section and in the drop down menu choose Installation guide

  2. How do I set database for saving vehicles clamp before and loading after restart. You just need to turn on in config:

    Config.SaveIntoDatabase = true

    And after that go to into section Baspel Wheel Clamp -> Tutorials and there you will find showcase how to implement two exports into your scripts 👍If you have any additional questions, create ticket on discord.

  3. I use QB Core with qb-target script, why its not working? This issue is probably because qb-target uses different option to job input, also different versions uses different input... 😄 Use one of these examples:

    Config.AllowedJobs = 'police' -- Only for one job
    Config.AllowedJobs = {'police'} -- Only for one job if above isnt working
    Config.AllowedJobs = {['police'] = 0, ['bcso'] = 0} -- This is only for when you want to use multiple jobs or you want use grade restriction

  4. Why my script isnt working when I have none target system? This problem most likely occured when you wrongly set config.lua, one of the mainest problem is setting of this:

    Config.AllowedJobs = nil -- Should be nil not {'nil'} or smth similar 

  5. How do I change notify system? Its easy, navigate into (script) shared/notify.lua

  6. I have a question, does script using states? Yeah, the script using states on vehicles. 👍 And its compatible with all other script, garage scripts, vehicle scripts or advanced_parking scripts.

Last updated