jesse50671 Posted July 10, 2019 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)
HassoN Posted July 10, 2019 Posted July 10, 2019 your 'h' is not defined. * There is No God but Allah discord: HassoN#2709 Visit my wiki profile: https://wiki.multitheftauto.com/wiki/User:Hassan_saad
DNL291 Posted July 10, 2019 Posted July 10, 2019 This error is probably in the snippet that's calling this function, but this snippet seems ok. Please do not PM me with scripting related question nor support, use the forums instead.
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