Okay, so the script I have been editing and changing may look quite shabby to most of you, but whatever, has gotten me almost 99 crafting
. But if I ever release it I want to fix the banking and one of the antibans
Simba Code:
8:begin
GameTab(TAB_QUEST);
wait(RandomRange(100,1000));
GameTab(TAB_INV);
end;
I want it to scroll through the quest list, and maybe hover on one, is that possible with less than basic scripting knowledge?
and also the bank ALWAYS returns to face west to find the bank, is there a way I could change this to make it always find the bank at any angle?
Simba Code:
procedure WithdrawDhide;
var
x,y:integer;
begin
SetAngle(SRL_ANGLE_HIGH);
OpenBankChestEdge(SRL_BANK_SW);
repeat
wait(500);
until(PinScreen or BankScreen);
if PinScreen then
begin
InPin(Players[CurrentPlayer].Pin);
wait(RandomRange(900,1100));
end;
if BankScreen then
begin
wait(RandomRange(400,600));
MouseItem(RandomRange(1,9),mouse_Right);
wait(RandomRange(400,600));
ChooseOption('27');
if FindDTM(dhideDTM2,x,y,MSX1,MSY1,MSX2,MSY2) then
begin
Mouse(RandomRange(440,460), RandomRange(230,250),0,0,False);
wait(RandomRange(800,1000));
ChooseOption('27');
wait(RandomRange(800,1000));
CloseBank;
end;
end;
end;
Could I assign a DTM value somehow and use the "if FindDtmRotated then".
I have a very very basic knowledge and have borrowed most of this script, hence why I haven't released it.