Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Guide Blip On And Off F3 Radial Menu Integrated

Rezox

Member
Joined
Apr 18, 2021
Messages
310
Reaction score
156,330
Points
401
You download the script from this topic and start it from server.cfg.

Now let's come to the f3 integrated..

For f3 integration, it is sufficient to enter the config file of the f3 menu.

You add this line of code to the bottom of config.lua.


Code:
RegisterNetEvent('clothingciblip')
AddEventHandler('clothingciblip', function()
ExecuteCommand('clothingciblip')
end)

RegisterNetEvent('marketblip')
AddEventHandler('marketblip', function()
ExecuteCommand('marketblip')
end)

RegisterNetEvent('garajblip')
AddEventHandler('garajblip', function()
ExecuteCommand('garajblip')
end)

RegisterNetEvent('berberblip')
AddEventHandler('berberblip', function()
ExecuteCommand('berberblip')
end)

RegisterNetEvent('bankablip')
AddEventHandler('bankablip', function()
ExecuteCommand('bankablip')
end)

Then you paste this line of code in the newSubMenus = { section.

Code:
['clothesciblips'] = {
title = "Clothes",
icon = "#blips-clothe",
functionName = "clothingciblip"
},
['garajblips'] = {
title = "Garage",
icon = "#blips-garages",
functionName = "garajblip"
},
['berberblips'] = {
title = "Barber",
icon = "#blips-barbershop",
functionName = "berberblip"
},
['marketblips'] = {
title = "Market",
icon = "#judge-licenses-grant-house",
functionName = "marketblip"
},
['bankablips'] = {
title = "Bank",
icon = "#judge-actions-check-bank",
functionName = "bankable"
},

And finally, you paste this line of code in the rootMenuConfig = { section and we're done.
Code:
{
id = "general",
displayName = "Blip Toggle",
icon = "#blips",
enableMenu = function() return true end,
subMenus = {"clothingciblips","garajblips","berberblips","marketblips","bankablips"}
},
 
Last edited by a moderator:
Top