💻Installation
Don't know how to install the script? Don't worry, we are here to help!
1) Go to keymaster and download the package
You can find your keymaster here, you'll need to login with your Fivem account. Make sure you get the right account because when you purchase the package, it is connected to the Fivem account you logged into.
Once logged in, you can download the package! Downloading the package is as easy as just pressing one button.

2) Putting it in the server
Unzip the folder and drop it into one of your folders inside resources.
3) Version
By default the selected version is Gabz, if you don't have the Gabz map or rather have the default GTA one go to your fxmanifest.lua
. In shared_scripts
and client_scripts
do the following:
shared_scripts {
'configNormal.lua',
--'configGabz.lua',
'translations/en.lua'
}
client_scripts {
'client/cl_mainNormal.lua',
--'client/cl_mainGabz.lua',
'client/functions.lua',
'@PolyZone/client.lua',
'@PolyZone/BoxZone.lua',
'@PolyZone/EntityZone.lua',
'@PolyZone/CircleZone.lua',
'@PolyZone/ComboZone.lua',
}
4) Adding katana
Add this to
qb-core > shared > weapons.lua
[`weapon_katana`] = {['name'] = 'weapon_katana', ['label'] = 'Katana', ['weapontype'] = 'Melee', ['ammotype'] = nil, ['damagereason'] = 'Melee killed / Sliced'},
Add this to
qb-core > shared > items.lua
['weapon_katana'] = {['name'] = 'weapon_katana', ['label'] = 'Katana', ['weight'] = 1000, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'katana.png', ['unique'] = true, ['useable'] = true, ['description'] = 'Really sharp ninja sword'},
Add the image found in images folder to your
qb-inventory > html > images
Go to
qb-smallresources > client > weapdraw.lua
and add'WEAPON_KATANA',
tolocal weapons = {}
Go to
qb-weapons > config.lua
and add this toConfig.DurabilityMultiplier = {}
['weapon_katana'] = 0.15,
5) Adding map item (for not Gabz users)
Add this to
qb-core > shared > items.lua
['secret_map'] = {['name'] = 'secret_map', ['label'] = 'Secret map', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'secret_map.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Treasure map? Secret location? ...?'},
Add the image found in images folder to your
qb-inventory > html > images
6) Installing dependencies
Link to the hack minigame is provided here, download the resource and put it in your [standalone]
folder. Don't forget to start it.
7) Start the script
Start the script and enjoy! For configuration info go to the next page 😄
Last updated