Looks pretty nice man,
One big thing you need to work on is standards.
For Example, you have.
SCAR Code:
procedure LookForTrade;
begin
if(SomeoneTrades=True) then
begin
writeln('Someones trading, Stop the script!')
end
end;
procedure LookInBank;
begin
if(Bankl=True) then
begin
FindBank(Bank);
if(PinScreen=True) then
begin
InPin(Pin);
end
if(BankScreen=True) then
begin
FixBank;
CloseBank;
end
end
end;
Its much better and easier to read if you standardize it like this.
SCAR Code:
procedure LookForTrade;
begin
if(SomeoneTrades=True) then
begin
writeln('Someones trading, Stop the script!')
end
end;
procedure LookInBank;
begin
if(Bankl=True) then
begin
FindBank(Bank);
if(PinScreen=True) then
begin
InPin(Pin);
end
if(BankScreen=True) then
begin
FixBank;
CloseBank;
end
end
end;