View Single Post
  #4  
Old 03-27-2012, 04:28 AM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

Should work

Btw. You use bools so its not nessesary to write:
if ((BGTarget2 == true) && (BGTarget2_1 == true) && (BGTarget2_2 == true))
you could also use:
if (BGTarget2 && BGTarget2_1 && BGTarget2_2)
Reply With Quote