KK, I have a couple things to say about the script.
1:
LOVE THE STANDARDS! Glad you put the time and effort to make them look great.
2:
SCAR Code:
SRLPlayerForm(true,[],[],[],[]);//Wth?
You didn't put anything in the playerform haha. You should probably put the bronze constant into there. Remember that the things you put into the player form are in array form. This is how you would call the first string that you put in the player form....
SCAR Code:
if Players[CurrentPlayer].Strings[0] then
//blah
Notice how I used "CurrentPlayer" if its a multiplayer script. Also when defining it (the "strings[0]" part) I make the variable name (eg: String, Integer,etc.) plural.
Anyway, you may have added the playerform, but you didn't use it.
3:
For this function you are using Mouse then Flag to walk, but this would be the perfect opportunity to use MouseFlag, MFNF(Mouse Find NO Flag), or MFF(Mouse Find Flag). This is what you did...
SCAR Code:
Mouse(x,y,1,1,true);
Flag;
You can just do this....
SCAR Code:
MouseFlag(x,y,1,1);
//Or
MFNF(x,y,1,1);
//Or
MFF(x,y,1,1);
Much easier right?
4:
I don't know about you, but I really like using OpenBankFast over OpenBankQuiet. I noticed that you used it in your script. If you have noticed some lag when it opens the bank I think you should use OpenBankFast.
SCAR Code:
OpenBankFast('fwb');//Same way of defining as OpenBankQuiet
5:
I don't like how you didn't put any failsafes into this part here. There are many SCAR users out there who have crappy 500 mB RAM computers that lag every other second...*cough* ME
Change this...
SCAR Code:
Mouse(258,403,1,1,false);
wait(1000+random(1000));
ChooseOption('X');
wait(1000+random(1000));
TypeSend('9');
To....
SCAR Code:
repeat
Mouse(258,403,1,1,false);
Wait(1000+random(200));
if ChooseOption('X')then
Break;
until(false);
Wait(1000+random(200));
TypeSend('9');
6:
Lastly, I noticed this...Probably just a foolish mistake, but you don't have to do this....
SCAR Code:
MMouse(x,y,1,1);
Mouse(x,y,1,1,true);
Just do this...
SCAR Code:
Mouse(x,y,1,1,true);//Both moves and clicks
Probably just a careless error 
7:
Ok what's missing here....Guess.....
NO DECLARE PLAYERS OMFG. Lol. Script in work i see
.
Those are my comments for now. Keep up the good scripting man lovin' it
You really impressed me with your standards.
PS: YOu probably might want to think of getting a Script ID and put some SRL Stats into that stuff.
BTW: If you want my help PM me for my MSN or leave your MSN here.
~Rep me if I helped.