AKL DOCUMENTATION
  • 👋Introduction
  • GUSTI RESOURCES
    • ⛏️gusti-minerjob
      • Setup
      • Update
    • 🚙gusti-membershipvehicle
    • 🍗gusti-butcherjob
    • 📣gusti-iosnotify
      • Setup
      • Usage
    • 🌐gusti-status server web
      • Setup
    • ⏳gusti-loadscreen
      • Setup
      • Building
    • 💎gusti-vipmenu
      • Setup
    • 🛠️gusti-welderloot
      • Common Issues
      • Setup
    • 🏃‍♂️gusti-boostsprint
      • Setup
    • 🚀gusti-boostfps
    • 📹gusti-cctv
      • Setup
    • 📅gusti-datetime
      • Setup
    • ☢️gusti-radzone
      • Setup
    • 🔫gusti-hidereticle
    • 🚗gusti-givevehicle
      • Setup
      • Usage
    • 💥gusti-duarmemek
      • Setup
      • Usage
  • 🛡️gusti-vipsystem
    • Setup
    • Usage
  • CODE SNIPPETS
    • Fix Animasi
    • Fix Spam Punch
    • Boost Fps
    • Disable Ambient
    • Send Webhook Messages
    • Spawns GTA V Online Train On Fivem
    • Removing / Adding Limit Map
    • Blacklist Name
    • Item Probability
    • Anti Duplicate Vehicle
    • How To Unbind Keys
Powered by GitBook
On this page
  • Installation
  • Configuration
  • Item Expired
  • Configuration items in ox_inventory
  1. GUSTI RESOURCES
  2. gusti-vipmenu

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)
Previousgusti-vipmenuNextgusti-welderloot

Last updated 2 months ago

💎