So, I'm trying to make this autoit script, and there's a function and stuff, but I can't write a function, inside a function! It's just not working. Like; Func Function_A($para1)
Local $thing = 1
Func Function_B()
;Stuff here
EndFunc
If Function_B($thing) Then
;Stuff
Else
;Stuff
EndIf
EndFunc
; Something like that.I'm either doing it wrong, or I can't do it in autoit. Anyway, help me please!