PaiN^ Posted April 29, 2013 Share Posted April 29, 2013 Hi, How do i make a table with coordinates to create markers from ? Thanx in advanced <3 Link to comment
iPrestege Posted April 29, 2013 Share Posted April 29, 2013 Post what you can do and we will help you . Link to comment
PaiN^ Posted April 29, 2013 Author Share Posted April 29, 2013 spots = { -- الإحداثيـآآت { 2487.6398925781, -1666.7453613281, 13.34375 }, { 2487.6398925781, -1666.7453613281, 13.34375 } } for k,v in ipairs( spots ) do createMarker ( v, kind, size, r, g, b, a ) end I did this put it didn't work for me . Link to comment
iPrestege Posted April 29, 2013 Share Posted April 29, 2013 Not tested try : local spots = { { 2487.6398925781, -1666.7453613281, 13.34375 }, { 2487.6398925781, -1666.7453613281, 13.34375 } } for k,v in ipairs( spots ) do createMarker ( v[1],v[2],v[3], kind, size, r, g, b, a ) end Link to comment
PaiN^ Posted April 29, 2013 Author Share Posted April 29, 2013 Working ! Thank you so much <3 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