I think that the problem still remains, because the, to recall te variable i must use Eval....
Global $troopstot=2
$troop_1 = GUICtrlCreateLabel("troop_1",10,10) ;Creates the first group of troop's data
$troop_1L2 = GUICtrlCreateInput("troop_1_2",10,10)
$troop_1L3 = GUICtrlCreateInput("troop_1_3",10,10)
$troop_1L4 = GUICtrlCreateInput("troop_1_4",10,10)
$troop_2 = GUICtrlCreateLabel("troop_2",20,10) ;Creates the 2nd group of troop's data
$troop_2L2 = GUICtrlCreateInput("troop_2_2",20,10)
$troop_2L3 = GUICtrlCreateInput("troop_2_3",20,10)
$troop_2L4 = GUICtrlCreateInput("troop_2_4",20,10)
GUICtrlSetOnEvent($Button, "AddTroop") ;On button pressed event adds a group of troop data to the pre-existing ones (incremental)
Func AddTroop()
Assign("troop_"&$troopstot,GUICtrlCreateLabel("troop_x",20,10)) ;"x" here should be substituted with "&$troopstot" but this would cause an error
Assign("troop_"&$troopstot&"L2",GUICtrlCreateLabel("troop_"&$troopstot&"_2,20,10))
Assign("troop_"&$troopstot&"L3",GUICtrlCreateLabel("troop_"&$troopstot&"_2,20,10))
Assign("troop_"&$troopstot&"L4",GUICtrlCreateLabel("troop_"&$troopstot&"_2,20,10))
$troopstot=($troopstot+1) ;this would grant that the next time we press the button the "$troopstot" (...)
EndFunc ;(...)will be greater by one from the previous group
Then with this script i dunno how to read the variables (for instance if we have created let's say 10 of them)