jesse50671 Posted July 10, 2019 Share Posted July 10, 2019 function shadowedText(text,x,y,w,h,color,fontsize,font,aligX,alignY) dxDrawText(text:gsub("#%x%x%x%x%x%x",""),x,y+1,w,h+1,tocolor(0,0,0,255),fontsize,font,aligX,alignY, false, false, false, true) dxDrawText(text:gsub("#%x%x%x%x%x%x",""),x,y-1,w,h-1,tocolor(0,0,0,255),fontsize,font,aligX,alignY, false, false, false, true) dxDrawText(text:gsub("#%x%x%x%x%x%x",""),x-1,y,w-1,h,tocolor(0,0,0,255),fontsize,font,aligX,alignY, false, false, false, true) dxDrawText(text:gsub("#%x%x%x%x%x%x",""),x+1,y,w+1,h,tocolor(0,0,0,255),fontsize,font,aligX,alignY, false, false, false, true) dxDrawText(text,x,y,w,h,color,fontsize,font,aligX,alignY, false, false, false, true) end The Problem: attempt to perform arithmetic on local 'h' (a nil value) Link to comment
DNL291 Posted July 10, 2019 Share Posted July 10, 2019 This error is probably in the snippet that's calling this function, but this snippet seems ok. 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