There are a few default languages that come with the script. You can easily add your own language or just translate one of the default ones. Let me show you how to choose your language.
1) Go to the fxmanifest.lua and look for shared_scripts.
2) You will find this on that spot:
shared_scripts {
'locales/en.lua', --Choose a language, you can add some yourself if you want
'config.lua'
}
3) On the 2nd line you see locales/en.lua this stands for English. So if you want Dutch for example you choose nl.lua instead of en.lua. This is possible because nl.lua is already present in the locales folder.
Blip and location
The storeLocation is only if you don't use target, just leave it as it is if you have target. Blip icons and colours are found .
Config.Store = {
storelocation = vector3(562.27, 2751.56, 42.88), --Location where you can buy pets
blipcoords = vector3(562.37, 2751.36, 42.88), -- Location on the map for the blip
blipsprite = 273, --Blip icon
blipcolor = 24,
blipscale = 0.6,
bliplabel = "Pet store",
blipshortrange = true, --If false then it will be visible on minimap when not near it (should stay on true)
}
Whitelisting
If you don't want to use any whitelist and enable it for all players do this
Config.UseIds = false --true to use id's, false to disable
Config.UseRoles = false --true to use roles, false to disable
If you're only using whitelist on id's do this
Config.UseIds = true --true to use id's, false to disable
Config.UseRoles = false --true to use roles, false to disable