🛠️Installation

Welcome to our installation guide! In this section, we'll walk you through the steps to effortlessly set up the Script S-Banking!

Shops System Installation

Follow this steps to install the script:

  1. Download the Script from Keymaster

  2. Drag the Script into your resources

  3. Add this to you your server.cfg: start S-Banking

  4. If you want to switch your default img: Switch in inser-me.sql https://your-image.png' with your default Image PNG

  5. Import the database tables by running insert-me.sql

  6. For ESX 1.1 and 1.2 insert this in <es_extended> > <server> > <functions.lua> under ESX.GetPlayers

function ESX.GetExtendedPlayers(key, val)
	local xPlayers = {}
	for k, v in pairs(ESX.Players) do
		if key then
			if (key == 'job' and v.job.name == val) or v[key] == val then
				xPlayers[#xPlayers + 1] = v
			end
		else
			xPlayers[#xPlayers + 1] = v
		end
	end
	return xPlayers
end
  1. Restart the Server and play S-Banking on your Server!

Last updated