Jump to content

Markers From Table !!


PaiN^

Recommended Posts

Posted

Hi,

How do i make a table with coordinates to create markers from ?

Thanx in advanced <3

" Keep Thinking Different . " - Steve Jops

--------------------

Don't send me PMs asking for help, I Won't reply !

Posted
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 .

" Keep Thinking Different . " - Steve Jops

--------------------

Don't send me PMs asking for help, I Won't reply !

Posted

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 

  

Posted

Working !

Thank you so much <3

" Keep Thinking Different . " - Steve Jops

--------------------

Don't send me PMs asking for help, I Won't reply !

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...