Setup

Installation

Follow the instructions below to run the gusti-vipmenu script on your server

  • Extract rar file [ESX] Gusti Vipmenu

  • Copy / cut gusti-vipmenu into your server's resources folder

  • Open server.cfg

  • Add the gusti-vipmenu script by ensure gusti-vipmenu in server.cfg

  • Restart server

  • Finished

  • Now you can enjoy the features of the gusti-vipmenu script on your server

Before running the gusti-vipmenu script, please pay attention to the dependencies section!

Configuration

Open the config.lua file located in the gusti-vipmenu folder to configure

  • Name tag

  • Ped model

  • Context menu

  • Drift mode

Item Expired

The Gusti Vipmenu script uses an expired item system from ox_inventory, so that it can be used, please follow the steps below

Configuration items in ox_inventory

data/items.lua
["vip"] = {
  label = "VIP",
	weight = 1,
	degrade = 43800, -- 1 month
	stack = true,
	close = true,
	consume = 0,
},
modules/items/client.lua
Item('vip', function(data, slot)
	ox_inventory:useItem(data, function(data)
		if data then
			TriggerEvent('gusti-vipmenu:openmenu')
		end
	end)
end)

Last updated