all they have to do is fix this;Quote:
LINE 6243
error: array variable has incorrect number of subscripts or subscript dimension range exceeded
i can't use PR...
Code:
/*decompiled code:->
$Var06C2[] -> NFSW Process List --Array
Fn0131() -> PR Click Function
Fn013F() -> Control Click
Fn0140() -> Android's old, depracated ShiftUP fix
others are not important
*/
//--code start
Func Fn0131()
Fn013F($Var06C2[2][1], "", "", "{\}")
Sleep(0x01F4)
Fn0140()
Fn013F($Var06C2[2][1], "", "", "{P}")
Sleep(0x03E8)
Fn0140()
ControlClick($Var06C2[2][1], "", "", "left", 2, 0x01D3, 0x0146)
Sleep(0x06A4)
Fn0140()
ControlClick($Var06C2[2][1], "", "", "left", 2, 0x02D0, 0x0140)
Sleep(0x05DC)
Fn0140()
ControlClick($Var06C2[2][1], "", "", "left", 2, 0x00F6, 0x0154)
Sleep(0x01F4)
Fn0140()
EndFunc
//--code end
//this is wrong it literally jumps to the code without even checking, it should be;
//--fixed code start
Func Fn0131()
If Not $Var06C2[0][0] = 2 Then
MsgBox(0, "", "There should be 2 NFSW Processes running!")
AdlibUnRegister("Fn0131")
ElseIf $Var06C2[0][0] = 2 Then
Fn013F($Var06C2[2][1], "", "", "{\}")
Sleep(0x01F4)
Fn0140()
Fn013F($Var06C2[2][1], "", "", "{P}")
Sleep(0x03E8)
Fn0140()
ControlClick($Var06C2[2][1], "", "", "left", 2, 0x01D3, 0x0146)
Sleep(0x06A4)
Fn0140()
ControlClick($Var06C2[2][1], "", "", "left", 2, 0x02D0, 0x0140)
Sleep(0x05DC)
Fn0140()
ControlClick($Var06C2[2][1], "", "", "left", 2, 0x00F6, 0x0154)
Sleep(0x01F4)
Fn0140()
EndIf
EndFunc
//--fixed code end