#cw-rep / qb-radialmenu not showing up

1 messages · Page 1 of 1 (latest)

little pollen
#

I installed the cw-rep script and it is working very good while using the /skills command. I added it to the radialmenu like described in the read me but if I select it in the radialmenu nothing shows up. I checked the console, no error is comming up, it just don't open the skillmenu. Any help would be nice. By the way, while trying to make this ticket I found out that there is no cw-rep tag. Sorry for the wrong tag but I had not the right one to choose.

viral tendon
#

Ah seems like I forgot one of the mz skills events

#

I'll push a fix as soon as I get to the PC. But if you wanna try it (would be mighty kind of you) you can change line 109 in gui.lua to

RegisterNetEvent("cw-rep:client:CheckSkills```
little pollen
#

Give me just a few minutes, will test it 🙂

#

Still not working with the radialmenu.

#

Opens with /skills but not the with the rm.

viral tendon
#

Hmmm. And you copied the code after I did the edit?

#

It said cw-skills first

little pollen
#

RegisterNetEvent("cw-rep:client:CheckSkills", function()

#

My line at 109

viral tendon
#

Hmm that should work 🤔

#

Ah wait

#

112 should be just

else
little pollen
#

With this change the rm isnt working and the /skills command doe not work anymore too

viral tendon
#

Uh you might have changed something incorrectly then? That line should not affect the command. The command is defined above

little pollen
#

else Config.TypeCommand then

#

line 112

viral tendon
#

No just else

little pollen
#

RegisterNetEvent("cw-rep:client:CheckSkills", function()
if Config.UseOxMenu then
createSkillMenuOX()
else
createSkillMenu()
else
Wait(10)
end
end)

viral tendon
#

I guess remove the other else and the wait too.

#
RegisterNetEvent("cw-rep:client:CheckSkills", function()
    if Config.UseOxMenu then
        createSkillMenuOX()
    else
        createSkillMenu()
    end
end)
little pollen
#

I edited it like you said, works now!

#

Big thanks mate 🙂