what is the difference between MMouse and Mouse?
MMouse is "Move Mouse to co-ordinate"
Mouse is "Move Mouse to co-ordinate and click"
An for IsUpText problem...
SCAR Code:
Procedure GetBones;
Begin
If Not LoggedIn Then Exit;
FindRandoms;
BonesBank := DTMFromString('78DA63B466666038C7C80002CC0C1070E6E85' +
'1067E20CD08E533EA03654EA3AAB97DED1AAA1A33A0CC15543517' +
'4F9F42556307943989AA66EF96CDA86A9C8032E751D5ECDFBA15A' +
'EE63F100000501A152A');
OpenBankFast(Location);
Wait(200+Random(100))
If (BankScreen) Then
Begin
FixBank;
Deposit(1, 28, True);
If (FindDTM(BonesBank, X, Y, MSX1, MSY1, MSX2, MSY2)) Then
Begin
MMouse(X, Y, 4, 4);//this moves the mouse to where it finds the dtm
Wait(100+Random(100));
if (IsUpText('ones')) then //this checks if the text IsUp
begin
GetMousePos(X, Y);
Mouse(X, Y, 0, 0, False);//this doesnt need random, because it already has done it above (MMouse(X, Y, 4, 4))
Wait(Random(100));
ChooseOption('ll');//chooses option "All"
Wait(200+Random(100));
CloseBank;
BO := BO + 1;
FreeDTM(BonesBank);
End;
End;
End;
End;
I've attached all the basic co-ordinates on this thread, its kinda hard to explain though.

A co-ord, or co-ordinate, is the position on the screen from the top right corner on the x and y axis.
These are simple built in ones to save time:
to find something in Inventory, the box is...
Code:
MIX1, MIY1, MIX2, MIY2
to find something in MainScreen, the box is...
Code:
MSX1, MSY1, MSX2, MSY2
to find something in Chat, the box is...
Code:
MCX1, MCY1, MCX2, MCY2