I was just wondering... Since with every other pixel search it seems to go top to bottom
It ID's items starting from the top, going to the right.
At the far right, the item details will block the rest of the inventory so it won't ID anymore (without moving the mouse)
I'm just going to throw in a mouse move to fix it.
Func IDAll()
Send("i")
Sleep(1250)
For $i = 1 To 30
ID()
Sleep(Random(100,150))
Next
EndFunc
Func ID()
$coord = PixelSearch(1400,584,1900,1874,0x00389c,1)
If Not @error Then
MouseMove($coord[0], $coord[1], 1)
Sleep(50)
MouseDown("right")
Sleep(Random(50,100))
MouseUp("right")
Sleep(3250)
Else
Sleep(100)
EndIf
EndFunc