Scripting isn't the terror you might think it is. You're already alomost scripting just from your description of what you want done.
Make this link:
1 dollar
with this script:
-------------------------------------------------------------
IF %MONEYSTORD > 0 THEN
BEGIN
%MONEY := %MONEY + 1
%MONEYSTORD := %MONEYSTORD - 1
END
-------------------------------------------------------------
What you are doing in the script is this. First line - checking to see if there is any money for the player to take out. Is moneystord greater than zero? If it is, you want some things to happen. Put a Begin in front of the things you want to happen, and an END at the end of it. Next we have the things you want to happen. We take money, and we want it to equal the current value of money, plus 1. Then we take moneystord, and we make it equal the current value of moneystord, minus 1. Changing the numbers plussed and minussed changes the amount of money in the transaction.
However, the first line needs to change so that it makes sure the new amount can be taken from the bank:
5 dollars:
IF %MONEYSTORD > 4 THEN
10 dollars:
IF %MONEYSTORD > 9 THEN
and so on.
As for "All Money" link:
---------------------------------------------------------
%MONEY := %MONEY + %MONEYSTORD
%MONEYSTORD := 0
---------------------------------------------------------
You want Money to equal the current amount of money, plus moneystord, then make moneystord equal zero.
Do the reverse to put all your money into the bank:
--------------------------------------------------------------------
%MONEYSTORD := %MONEYSTORD + %MONEY
%MONEY := 0
--------------------------------------------------------------------
I hope this helps you break into scripting!