enzoDs Posted June 6, 2020 Posted June 6, 2020 (edited) Hello, i need convert a string to 3 variables x,y,z = "15,20,18" -----------> x = 15 y = 20 z = 18 Thanks Edited June 6, 2020 by enzoDs
Moderators IIYAMA Posted June 6, 2020 Moderators Posted June 6, 2020 1 hour ago, enzoDs said: Hello, i need convert a string to 3 variables x,y,z = "15,20,18" -----------> x = 15 y = 20 z = 18 Thanks local position = "15,20,18" local x, y, z = unpack(split(position, ",")) 2 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