CrosRoad95 Posted August 24, 2017 Posted August 24, 2017 How can i make somethink like this? function add(c,d) c=c+d end a=5 add(a,5) print(a) -- print 10
Moderators IIYAMA Posted August 24, 2017 Moderators Posted August 24, 2017 function add(c,d) return c + d end a = 5 a = add(a,5) print(a) -- print 10 Even though it kinda useless. You better do it like this: a = 5 a = a + 5 print(a) -- print 10 Do you want to improve your Lua programming skills and make less mistakes? Start with Lua Language Server! Useful functions 3x Spoiler checkPassiveTimer getScreenStartPositionFromBox getPedGender Tutorials 4x Spoiler Scaling DX Events Attach an addEventHandler on a group of elements Debugging
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