AyzrusPT Posted December 22, 2021 Share Posted December 22, 2021 gente estou com problema no seguinte codigo 1 local screenW, screenH = guiGetScreenSize() 2 local selecionado = nil 3 local tick = nil 4 local isShopVisible = false 5 local labelQuantidade = guiCreateEdit(0.40, 0.5675, 0.12, 0.04, "Quantidade", true) 6 guiSetAlpha(labelQuantidade, 0) 7 guiSetVisible(labelQuantidade, false) 8 guiEditSetMaxLength(labelQuantidade, 3) 9 function onStart() 10 font1 = dxCreateFont("fontes/Roboto.ttf", 10) 11 "default-bold" = dxCreateFont("fontes/RobotoBold.ttf", 10) 12 end 13 addEventHandler("onClientResourceStart", resourceRoot, onStart) Tenho erro na linha 11 o erro é unexpected symbol near '=' queria saber como corrigir pois script nao funciona por causa desse erro. eu é que numerei a linha de codigo no post mas no visual studio o erro é mesmo na linha 11 Link to comment
FonsecaBF Posted January 3, 2022 Share Posted January 3, 2022 On 21/12/2021 at 21:23, AyzrusPT said: gente estou com problema no seguinte codigo 1 local screenW, screenH = guiGetScreenSize() 2 local selecionado = nil 3 local tick = nil 4 local isShopVisible = false 5 local labelQuantidade = guiCreateEdit(0.40, 0.5675, 0.12, 0.04, "Quantidade", true) 6 guiSetAlpha(labelQuantidade, 0) 7 guiSetVisible(labelQuantidade, false) 8 guiEditSetMaxLength(labelQuantidade, 3) 9 function onStart() 10 font1 = dxCreateFont("fontes/Roboto.ttf", 10) 11 "default-bold" = dxCreateFont("fontes/RobotoBold.ttf", 10) 12 end 13 addEventHandler("onClientResourceStart", resourceRoot, onStart) Tenho erro na linha 11 o erro é unexpected symbol near '=' queria saber como corrigir pois script nao funciona por causa desse erro. eu é que numerei a linha de codigo no post mas no visual studio o erro é mesmo na linha 11 local screenW, screenH = guiGetScreenSize() local selecionado = nil local tick = nil local isShopVisible = false local labelQuantidade = guiCreateEdit(0.40, 0.5675, 0.12, 0.04, "Quantidade", true) guiSetAlpha(labelQuantidade, 0) guiSetVisible(labelQuantidade, false) guiEditSetMaxLength(labelQuantidade, 3) function onStart() font1 = dxCreateFont("fontes/Roboto.ttf", 10) font2 = dxCreateFont("fontes/RobotoBold.ttf", 10) end addEventHandler("onClientResourceStart", resourceRoot, onStart) Link to comment
angeluni Posted January 3, 2022 Share Posted January 3, 2022 (edited) >D Edited January 3, 2022 by angeluni Link to comment
Other Languages Moderators Lord Henry Posted January 3, 2022 Other Languages Moderators Share Posted January 3, 2022 @AyzrusPTO erro ocorreu pois você utilizou símbolos ilegais para definir uma variável. "default-bold" Não utilize símbolos, acentos nem espaços nos nomes das variáveis. Utilize somente letras ou números. (Ç é considerado letra com acentuação, então não pode tbm) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now