You can try to make snapshots from very low altitude in GE in about 4800x XXXX pixels but you need Google Earth Pro/Plus. Low alt sat pictures are without clouds mainly. That's how I did 20480x20480 pixels satellite PNG file for my island :)
Hello again guys. I would like to convert any number, for example number 12 into array. So I want 12 in format [1,2,3,4,5,6,7,8,9,10,11,12] to have ability to select random numbers. Is it possible ?
Actually I made a trick before I read your post but thank you so much for helping me, your solution is working same good as my solution :)
I made it like this:
=======================================
_waypointLOC = getMarkerPos _marker
_waypointLOC1 = format ["%1",_waypointLOC]
goto "loop"
#check1
player sideChat "It works"
#loop
_waypointLOCnow = getMarkerPos _marker
_waypointLOCnow1 = format ["%1",_waypointLOCnow]
?(_waypointLOC1 != _waypointLOCnow1) : goto "check1"
~4
goto "loop"
=======================================
Now it works but it's very strange for me. Because _waypointLOCnow is returning array position same as _waypointLOC and then _waypointLOCnow1 and _waypointLOC1 are returning that array position as string because of format command. Well, all I can say now that condition doesn't return anything when we try to equal or not to equal position array.
But your way, Myke, the distance, it's working pretty good too so thank you very mutch.
So now moderator can lock this topic but please do not remove it because it may be very good for new mission makers :)
Hello everybody. I made a simple script to put it into bigger one :)
O have a problem with it so you can see the script down here between "===" :
=======================================
_waypointLOC = getMarkerPos _marker
goto "loop"
#check1
player sideChat "It works"
#loop
_waypointLOCnow = getMarkerPos _marker
?(_waypointLOC != _waypointLOCnow) : goto "check1"
~4
goto "loop"
=======================================
_waypointLOC is position of marker saved in memory when script starts
_waypointLOCnow is position of marker when marker changes it's position (or not), so it's dynamic
So my condition is the problem here --> ?(_waypointLOC != _waypointLOCnow) : goto "check1" doesn't work. When I change position of my marker, the condition doesn't return true and doesn't go to "check1".
I checked if _waypointLOC and _waypointLOCnow are in same formats (I did it using hint format) and so.... they are good I mean both are in [x,z,y] format.
I don't know what to do. Can anybody help me ? Maybe I made something wrong :/