
Originally Posted by
nigerson
i've been having a problem where the script clicks to bank, but then right when the bank opens it closes it.
I had this problem too. My smart was loaded with directx from a previous script and I forgot to add the plugin line for this script. I just closed my smart and added the plugin line and it started working fine.
Hey Asham I replaced
Code:
GetMousePos(X,Y);
MultiClick(Point(X,Y),50,2);
With
Code:
Case Random(20) Of
0..18: SendKeys(' ', 60 + Random(60), 60 + Random(60));
19: begin
MouseBox([293,332,505,348]);
FastClick(Mouse_Left);
end;
End;
and edited out the Mousebox a few lines before
Perhaps you can incorporate this to your future updates? (It just presses space to start cooking, with the occasional click)
Also there are times when my minimap is glitchy and shows a lot of black. I know clarity has a mapcheck in his barrows scripts that log in/out if the map is glitchy. I think this might be a worthwhile failsafe to consider?