Is there a way i can make 5 Global and then have another Global recall the Other 5 in a command.
For Example
Global $1=a
Global $2=b
Global $3=c
Global $4=d
Global $5=e
Global $five=$1,$2,$3,$4,$5
$test = _ImageSearchArea($five,1,587,415,659,506,$x1,$y1,0)
If $test=1 Then
MouseMove($x1,$y1,3)
MouseClick("left")
ElseIf $result=0 Then
MsgBox(0,"Error","Could not find.")
EndIF
EndIf