What's new

Guide Blip On And Off F3 Radial Menu Integrated

Rezox

Member
Joined
Apr 18, 2021
Messages
308
Reaction score
116,440
Points
391
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