Basically everything is the same, so i wont show whats the same, ill tell what you have added/changed.
You have added this:
Simba Code:
Procedure StatsGuise(wat:String);
begin
Status(wat);
Disguise(wat);
end;
Procedure AntiBan;
begin
Case Random(250) Of
0: Begin StatsGuise('AntiBan') GameTab(tab_Stats) HoverSkill('Firemaking', False) GameTab(28) End;
1: Begin StatsGuise('AntiBan') GameTab(tab_Inv) ExamineInv; GameTab(28); End;
2: Begin StatsGuise('AntiBan') RandomAngle(1); End;
3: Begin StatsGuise('AntiBan') GameTab(tab_Stats) HoverSkill('random', False); End;
end;
end;
Antiban, thats a good thing 
And you have a different banking procedure, yours doesnt have a failsafe for when OpenBankFast('veb'); fails and youve added something to do the PinScreen when it comes up:
Simba Code:
repeat
InPin(Players[0].Pin);
until BankScreen or not (LoggedIn);
But because you didnt add Pin := ' '; at the beginning, it will get stuck or something, at least it wont do the PIN and since it repeats until the bankscreen comes up or until your not logged in anymore, it will do nothing until you stop it yourself
And you have changed his ToBank procedure...
your procedure:
Simba Code:
Procedure walktobank;
begin
if (LoggedIn) then
begin
MakeCompass('n');
SetAngle(true);
if (FindColorTolerance(x, y, 7896448, MMX1, MMY1, MMX2, MMY2, 10)) then
Mouse(689, 116, 0, 0, True);
Wait(9000);
end;
end;
I dont know why you have: "if (FindColorTolerance(x, y, 7896448, MMX1, MMY1, MMX2, MMY2, 10))"
since it doesnt affect anything, "Mouse(689, 116, 0, 0, True);" will just click on the same spot as without the FindColorTolerance.
You should say:
80% credit to Eitherfreak, I took his script and changed it 
or you should tell him in his topic:
Hey Eitherfreak, I have some suggestions for your script:
1. Make the script to start Smart so people wont have to enable it themselves, they dont know how and even while you have explained it in your first post, they dont read it.
2. Add some kind of antiban
3. Add support for people who have a bank PIN
4. Make the script go back to the bank using 'blind' walking
Im sorry, but I cant say you did a good job or something like that