Electrosumm Posted August 17, 2015 Share Posted August 17, 2015 i got this dxDrawText ( "Kinézet",..skin, x/3.6, y/3.2, x, y, tocolor ( 255, 255, 255, 255 ), 1, "clear" ) unexpected symbol near ')' where is the problem ? Link to comment
Moderators Citizen Posted August 17, 2015 Moderators Share Posted August 17, 2015 u put a comma between the text and the variable you want to concatenate with: dxDrawText ( "Kinézet "..skin, x/3.6, y/3.2, x, y, tocolor ( 255, 255, 255, 255 ), 1, "clear" ) Link to comment
Electrosumm Posted August 17, 2015 Author Share Posted August 17, 2015 now local playerSkin = getElementModel (localPlayer) dxDrawText ( "Kinézet"..skin, x/3.6, y/3.2, x, y, tocolor ( 255, 255, 255, 255 ), 1, "clear" ) attempt to concatenate (global) "skin" (a nil value ) Link to comment
1LoL1 Posted August 17, 2015 Share Posted August 17, 2015 now local playerSkin = getElementModel (localPlayer) dxDrawText ( "Kinézet"..skin, x/3.6, y/3.2, x, y, tocolor ( 255, 255, 255, 255 ), 1, "clear" ) attempt to concatenate (global) "skin" (a nil value ) local playerSkin = getElementModel (localPlayer) dxDrawText ( "Kinézet"..playerSkin, x/3.6, y/3.2, x, y, tocolor ( 255, 255, 255, 255 ), 1, "clear" ) 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