🧠Installation

After you purchase the script, you will receive it in your Keymaster account.

🪜 First steps

  1. Make sure you have YSeries

🔴 Dependencies

🖼️ Frameworks

Our script is compatible with QBCore, QBox, ESX, and Standalone(custom framework or no framework). You don't need to do anything else if you are using QBCore, QBox, or ESX. The script will auto-detect the correct framework.

⚠️ Standalone

🎯 Resource positioning

-- First, we start the framework, never below
ensure es_extended, qb-core, qbx_core (or your framework name)

-- These resources must be started before the phone
ensure your_banking
ensure your_inventory
ensure your_housing
ensure your_garages

-- the other scripts don't matter - they can be started before or after no difference

-- Boomer phone first
ensure yboomer-phone
ensure yboomer-phone-props

-- Main phone second
ensure yseries -- yphone or yflip-phone
ensure yseries-props

💳 Phone Items

["yboomer_black"] = {
	label = "Boomer Phone",
	weight = 100,
	stack = false,
	consume = 0,
	client = {
		export = "yboomer-phone.UsePhoneItem",
		remove = function()
			TriggerEvent("yboomer:client:phone-item-removed")
		end,
		add = function()
			TriggerEvent("yboomer:client:phone-item-added")
		end
	}
},

Last updated