Client Exports

Here you will find the list of usable exports for Banking, you can use them if you have basic or advanced programming knowledge, we do not recommend using these if you do not have such knowledge.


inPracticeExam

Use following export to check if player is currently in practice exam

local result = exports['p_dmvschool']:inPracticeExam()
print(result)

Return:

  • result: boolean


inTheoryExam

Use following export to check if player is currently in theory exam

local result = exports['p_dmvschool']:inTheoryExam()
print(result)

Return:

  • result: boolean


finishPracticeExam

Use following export to finish player practice exam [only works if player is in exam]

local result = true
exports['p_dmvschool']:finishPracticeExam(result)
  • result: boolean

Last updated