- Joined
- Jan 25, 2011
- Messages
- 2,289
Great title!
Quick question about points saved in variables.
Set Temp_Point_1 = some location
Set Temp_Point_2 = Temp_Point_1
call RemoveLocation (udg_Temp_Point_2)
I assume this will also remove Temp_Point_1 because they are the same point, right?
Set Temp_Point_1 = some location
Set Temp_Point_2 = same location as above
call RemoveLocation (udg_Temp_Point_2)
However. Will this also remove Temp_Point_1?
The two variables are set to the exact location but they are not equal to each other. Or will they automatically be the same point because they are set to the same point in the map?
Quick question about points saved in variables.
Set Temp_Point_1 = some location
Set Temp_Point_2 = Temp_Point_1
call RemoveLocation (udg_Temp_Point_2)
I assume this will also remove Temp_Point_1 because they are the same point, right?
Set Temp_Point_1 = some location
Set Temp_Point_2 = same location as above
call RemoveLocation (udg_Temp_Point_2)
However. Will this also remove Temp_Point_1?
The two variables are set to the exact location but they are not equal to each other. Or will they automatically be the same point because they are set to the same point in the map?
Last edited by a moderator: