QBus Script Error

[ script:qb-traphouse] Error loading script server/main.lua in resource qb-traphouse: @qb-traphouse/server/main.lua:94: attempt to index a nil value (global ‘Lang’)
[ script:qb-traphouse] stack traceback:
[ script:qb-traphouse] @qb-traphouse/server/main.lua:94: in main chunk

Can anyone help?

Greetings

1 Like

Errorfix:

qb-traphouse/locales/**.lua

if GetConvar('qb_locale', 'en') == '**' then

    Lang = Locale:new({

        phrases = Translations,

        warnOnMissing = true

    })    

end

to

qb-traphouse/locales/**.lua

    Lang = Locale:new({

        phrases = Translations,

        warnOnMissing = true

    })

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.