Lol, that's cool and ps.
You can just do it like this:
SCAR Code:
//////////////////////////////
// Written by Tim46
/////////////////////////////
function CreateAccount(Username, Password :String): Boolean;
begin
OpenWebPage('https://create.runescape.com/lang/en/aff/runescape/createaccount.ws?password1=' + Password + '&password2=' + Password + '&termsandcond=1&username=' + Username + '&country=7');
Result:= True;
Writeln('Account '+ Username +' created!');
end;
int I : Integer;
Usernames : Array[0..4] of String;///change to what you want
Passwords : Array[0..4] of String;
begin
Usernames[0] := 'Write here';
Usernames[1] := 'Write here';
Usernames[2] := 'Write here';
Usernames[3] := 'Write here';
Usernames[4] := 'Write here';
Passwords[0] := 'Write here';
Passwords[1] := 'Write here';
Passwords[2] := 'Write here';
Passwords[3] := 'Write here';
Passwords[4] := 'Write here';
for I := 0 to 4 do
begin
CreateAccount(Usernames[I], Passwords[I])
Wait(120000+random(10000))
end;
end.