I understand the name of this thread is rather lame.
Okay now onto the the thread.
I decided to make a new account, whats so special about that you ask? This account will be trained by the scripts on this site/made by me! (Account has 0gp, no stats ALL will be harvested by Scripts + A little merching)
Note: All scripts made by me that get used will be posted, all scripts I use (not made by me) will be linked.
Note: All scripts will be added to "Downloads" (Besides those that are not mine, they will just be linked)
Note: The scripts I make for this thread, are SINGLE purpose scripts and lack sophistication.
1/4/2012 (midnight)
Here is a starting picture.

I am currently training mage at Zammy Mage (Varrock castle)
Gear: Full iron + Vambraces (-65 mage bonus 100% Splash)
Script (R4_C_Spell)
Simba Code:
program R4_C_Spell;
{$i srl/srl/misc/smart.scar}
{$i srl/srl.scar}
{Combat Spells only, make sure you select autofire before running
-r4nd0m}
Var
x, y :Integer;
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0; // This is the player to start with
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Nick := ''; // 3-4 lowercase letters from username;
Players[0].Active := True; // Set to true if you want to use Player 0
Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
end;
procedure Antiban;
begin
case Random(60) of
20: HoverSkill('Magic', False);
30: PickUpMouse;
40: RandomMovement;
50: BoredHuman;
59: ExamineInv;
end;
Writeln('Antiban in action!');
end;
function mage(): Boolean;
begin
Makecompass('w');
repeat
Antiban;
FindNormalRandoms;
Wait(RandomRange(2000, 7000));
FindObjCustom(x, y, ['amorak'], [2897508, 3029096, 3555706, 3423860], 5);
Mouse(x, y, 5, 5, false);
Wait(RandomRange(250, 500));
ChooseOption('ttack');
until false;
end;
begin
Smart_Server := 77;
Smart_Members := False;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
ClearDebug;
DeclarePlayers;
LoginPlayer;
mage;
end.
1/4/2012
I am currently continuing my magic training but have moved on from Zamorak Mage (Due to ineffective training method, very slow) I have switched to teleportation to lumbridge.
Picture:

Here is the script I am using (R4_LumbTele)
Note: No antiban, so I would advise against using it for yourself.
Simba Code:
program R4_LumbTele;
{$i srl/srl/misc/smart.scar}
{$i srl/srl.scar}
procedure DeclarePlayers;
begin
HowManyPlayers := 1; //
NumberOfPlayers(HowManyPlayers); //
CurrentPlayer := 0; //
Players[0].Name := ''; //
Players[0].Pass := ''; //
Players[0].Nick := ''; //
Players[0].Active := True;
end;
procedure Tele;
var
Waits: Integer;
begin
Wait(5000 + Random(95));
Mouse(744,188,5,6,true);
repeat
Mouse(598,302,0,0,true);
Wait(99 + Random(65));
Inc(Waits);
until(Waits = 3600);
Logout;
end;
begin
Smart_Server := 77;
Smart_Members := False;
Smart_Signed := True;
Smart_SuperDetail := False;
ClearDebug;
SetupSRL;
DeclarePlayers;
LoginPlayer;
Tele;
end.
1/5/2012 (Morning)
Still working on magic, aiming for level 60. I stopped yesterday at level 55 (so I could alch). Anyhow, I created an alching script because MSI's didn't seem to work.
Note: Again I would advise against using this script as it really has no anti-ban.

http://i.imgur.com/CGjW2.png (Achieved 60 magic)
R4_Alch
Simba Code:
program R4_Alch;
{$i srl/srl/misc/smart.scar}
{$i srl/srl.scar}
procedure DeclarePlayers;
begin
HowManyPlayers := 1; //
NumberOfPlayers(HowManyPlayers); //
CurrentPlayer := 0; //
Players[0].Name := ''; //
Players[0].Pass := ''; //
Players[0].Nick := ''; //
Players[0].Active := True; //
end;
procedure Alching;
var
Waits: Integer;
begin
repeat
Mouse(698,351,0,0,true);
Wait(111 + Random(60));
Mouse(698,351,0,0,true);
Wait(1211 + Random(60));
Inc(Waits);
until(Waits = 1600);
Logout;
end;
begin
Smart_Server := 77;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
ClearDebug;
SetupSRL;
DeclarePlayers;
LoginPlayer;
Mouse(744,188,5,6,true);
Alching;
end.
1/5/2012 (Mid-Day)
I am now aiming for 40 attack, started training on men in Edgeville. I was going to use Justin's Edgeville man killer but I just kept getting an odd SPS error (Might be related to SRL 5, and my failure to comply correctly). I ended up making my own version; no where near as fancy but it gets the job done. Kills men, eats food.
Note: Pretty sure my method of waiting instead of actually checking if they died isn't a great one :P. I would advise against using this script when other's are fighting in the same area. (Does not pick up)

Script name: R4_EdgeManKiller
Simba Code:
program R4_EdgeManKiller;
{.include SRL/SRL/Misc/Smart.simba}
{.include SRL/SRL.simba}
{.include SRL/SRL/Skill/Fighting.simba}
Var
man, x, y :Integer;
ManC :TIntegerArray;
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0; // This is the player to start with
Players[0].Name := ''; // Username
Players[0].Pass := ''; // Password
Players[0].Nick := ''; // 3-4 lowercase letters from username;
Players[0].Active := True; // Set to true if you want to use Player 0
Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
end;
procedure Antiban;
begin
case Random(60) of
20: HoverSkill('Thieving', False);
30: PickUpMouse;
40: RandomMovement;
50: BoredHuman;
59: ExamineInv;
end;
Writeln('Antiban in action!');
end;
procedure AntiRandom;
begin
FindNormalRandoms;
LampSkill := 'attack';
LevelUp;
end;
procedure HpCheck; //Thanks Narcle, used your script to learn how to do this
var
a, t, b, x, y:Integer;
begin
if (HPPercent < 50) and LoggedIn then
begin
if not InvEmpty then
for a := 0 to 2 do
for b := 1 to 28 do
if ExistsItem(b) then
begin
MMouseItem(b);
GetMousePos(x, y);
if WaitUptext('Eat', 400) then
begin
Mouse(x,y,0,0,false);
if WaitOption('Eat', 400) then
begin
t := GetSystemTime;
while ExistsItem(b) and ((GetSystemTime-t) < 2000) do
wait(20);
if (HPPercent > 70) then
Exit;
end;
end;
end;
if (not LoggedIn) or (HPPercent > 50) then
Exit;
end;
end;
function Kill(): Boolean;
begin
ManC := [3028013 ,3752248 ,4081726 ,3291441];
repeat
Antiban;
Antirandom;
Wait(RandomRange(200, 700));
FindObjCustom(x, y, ['an'], ManC, 3);
Mouse(x, y, 2, 2, true);
ChooseOption('ttack');
HpCheck;
Wait(RandomRange(10000, 15000));
HpCheck;
until false;
end;
function List(): Boolean;
begin
repeat
HpCheck;
Kill;
until false;
end;
begin
Smart_Server := 77;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
ClearDebug;
DeclarePlayers;
LoginPlayer;
List;
end.
1/6/2012
I am still aiming for 40 attack/60 attack. With a side goal of 50 strength for the time being. I am starting to think men are just too slow so I am moving my account to a different NPC haven't decided where yet. Anyway here is my current progress.

1/7/2012
Sorry for nothing special, I gained no levels. I tried to make my script work at muggers in the dungeon at Mudskipper Point; unfortunately for me the script just really had a hard time distinguishing the colors between the walls/ground/mugger (They were the same dirty brown) Tolerance didn't really do me any favors there either, after many attempts I just figured why waste time here! Go back to men :P.
1/8/2012
So I got tired of my ManFighter, and moved onto minotars/Goblins in the Stronghold with Narcle's Fighter. This quickly got me 43 attack and 42 strength (Stopped melee training for now, will continue later and get 60 attack/70 strength). I then created a prayer script, using the dropall method (and changing it) unfortunately this didn't workout too well so I just used Insane's BoneBury.
My current goals for this account:
60 attack
70 strength
50 range
60 magic
70 HP
35 prayer
50 WC
50 Fish
60 mining

1/11/2012
Still training on Minotaurs with Narcle's Fast Fighter. Waiting for uptext to be fixed
.

1/19/2012
Started training on RATS to prevent food depletion with Narcle's Fast Fighter.

1/19/2012 (NIGHT)
Started training on RATS to prevent food depletion with Narcle's Fast Fighter.
Last inventory of food (The bank of the account can support, and got the range level I wanted!)

1/22/2012
Started training mining! I just finished actually took 2 days to get from 1-60.
I used YoHoJo's [P]ower [M]iner [S]upreme.
Next up we either have money making, fishing, or woodcutting! You decide.

1/24/2012
I decided to continue training mining! I went from 60-70, I will stop training mining now
I used YoHoJo's PMS :P
Next up we have fishing, thank you bwuk for voting 

Scripts I used:
Narcle's FastFighter
Check out this guide I made for use with Narcle's Fighter
YoJoJo's PMS (Power miner)