SN-Applicaions
Start Here
Download the SN-Applicaions file from keymaster.
Unzip the file and drag the resource anywhere inside your server files while keeping the name "SN-Applicaions" (If the name is changed the resource will not function)
Head to the
config.luaand set your framework as true.Proceed depending on your framework.
Frameworks:
In [qb] > qb-core > shared > items.lua add the following:
['job_application'] = {['name'] = 'job_application', ['label'] = 'Job Application', ['weight'] = 0, ['type'] = 'item', ['image'] = 'job_application.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Job Application'},
['application_results'] = {['name'] = 'application_results', ['label'] = 'Application Results', ['weight'] = 0, ['type'] = 'item', ['image'] = 'application_results.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Application results'},Make sure to run the ESXONLY.sql in your database to get the items
In ox_inventory > data > items.lua add the following:
['job_application'] = {
label = 'Job Application',
weight = 0,
stack = false,
close = true,
},
['application_results'] = {
label = 'Application Results',
weight = 0,
stack = false,
close = true,
},Options:
Use these inside Questions = {}
Customizing:
(Optional) Webhooks:
if you would like to use discord webhooks add:
under any application
Example Application:
Last updated


