I edited the one i put in the includes, all i did was change the 2 colours 
Simba Code:
(*
OpenDepositBox
~~~~~~~~~~~~~~
.. code-block:: pascal
function OpenDepositBox : Boolean;
Opens the light deposit box (such as the boxes in edgeville).
.. note::
Author: Ollybest
Example:
.. code-block:: pascal
if (OpenDepositBox) then
DepositAll;
*)
function OpenDepositBox: Boolean;
var
i, CTS, c, Timeout: Integer;
TPA, TPA1, TPA2: TPointArray;
ATPA: T2DPointArray;
P: TPoint;
begin
Result := (DepositScreen);
if not (LoggedIn) or (Result) then
Exit;
CTS := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
Timeout := 5000 + Random(1000);
// getting the dark edge
SetColorSpeed2Modifiers(0.06, 0.27);
FindColorsTolerance(TPA1, 1002342, MSX1, MSY1, MSX2, MSY2, 4);
// getting the light middle
SetColorSpeed2Modifiers(0.53, 0.57);
FindColorsTolerance(TPA2, 6184802, MSX1, MSY1, MSX2, MSY2, 8);
SetColorSpeed2Modifiers(0.2, 0.2);
ColorToleranceSpeed(CTS);
// combining and sorting
CombineTPAWrap(TPA1, TPA2, TPA);
SplitTPAWrap(TPA, 5, ATPA);
SortATPASize(ATPA, True);
if Length(TPA) < 1 then
Exit;
for i := 0 to High(ATPA) do
if Length(ATPA[i]) > 30 then
begin
P := MiddleTPA(ATPA[i]);
MMouse(P.X, P.Y, RandomRange( -5, 5), RandomRange( -5, 5));
if WaitUpTextMulti(['Deposit Bank', 'deposit box', 'osit bo', 'eposit '], 400 + Random(100)) then
begin
ClickMouse2(True);
Flag;
MarkTime(c);
repeat
Wait(RandomRange(50, 100));
until (DepositScreen) or (PinScreen) or (TimeFromMark(C) > Timeout);
Result := (DepositScreen) or (PinScreen);
if (Result) then
Exit;
end;
end;
end;