Pedro Colto Posted February 24, 2016 Share Posted February 24, 2016 local Markers = createMarker ( X,Y,Z , "cylinder", 4, 0, 141, 255, 255, getRootElement( ) ) Markers1 = { {-1990.24292, 262.62424, 34.00000} } Não sei se vocês entenderão oque quis fazer acima, más vou tentar explicar. Estou tentando colocar varias posição com apenas um createMarker, no caso criar markers iguais apenas com posições diferenciadas. Alguém poderia me ajudar? Link to comment
RenanPG Posted February 24, 2016 Share Posted February 24, 2016 markers = { {x = -1990.24292, y = 262.62424, z = 34.00000}, } for i,marker in pairs(markers) do createMarker(marker.x, marker.y, marker.z, "cylinder", 4, 0, 141, 255, 255, getRootElement( ) ) end Não entendi muito bem oque você está tentando fazer, mas se é pra criar Markers com uma table poderia ser assim. Link to comment
#RooTs Posted February 24, 2016 Share Posted February 24, 2016 markers = { {x = -1990.24292, y = 262.62424, z = 34.00000}, } for i,marker in pairs(markers) do createMarker(marker.x, marker.y, marker.z, "cylinder", 4, 0, 141, 255, 255, getRootElement( ) ) end Não entendi muito bem oque você está tentando fazer, mas se é pra criar Markers com uma table poderia ser assim. Onix, eu acho q seu exemplo não vai funcionar. mais se funcionar vai ser bizarro kkkkkk Link to comment
RenanPG Posted February 24, 2016 Share Posted February 24, 2016 Por que não vai funcionar? Link to comment
xeon17 Posted February 25, 2016 Share Posted February 25, 2016 Acabei de testar no meu servidor local e funciona, sem erros no debugscript. @_@ Link to comment
Pedro Colto Posted February 27, 2016 Author Share Posted February 27, 2016 markers = { {x = -1990.24292, y = 262.62424, z = 34.00000}, } for i,marker in pairs(markers) do createMarker(marker.x, marker.y, marker.z, "cylinder", 4, 0, 141, 255, 255, getRootElement( ) ) end Não entendi muito bem oque você está tentando fazer, mas se é pra criar Markers com uma table poderia ser assim. obrigado amigo. 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