Ello there,
Welcome to probably the weirdest, newest, and most simple (But Creative) script you might have seen in a long time (I hope)
I decided a little while ago to finally learn how to script, but I didn't want to make something we have all seen a thousand times (Such as an auto typer riped straight out of a tutorial).
Well here is something that I hope is original.
This script will bump your thread every ten minutes.
I know its not that useful, but with a simple edit to one number it could keep your thread on the front page for two days straight!
I don't think JaGex checks the forums for macros anyways...
Well thank you for looking at my thread now test my script and tell me that it works! (You have to be patient, let it start, then wait ten minutes and it Should bump again.
EDIT:
Apparently I am not patient enough, sorry... So the thread got accidentally double posted! The first time I tried to post the thread the connection to srl servers would not come through and it just sat there. So I got out and re-made it.... Now both are showing.
Sorry, not a good way for a noob to start....
Well anyways...
Here it is:
SCAR Code:
{
HurgyMcGurgyGurg
Presents His First Script:
[][][][][] [] [] [][][][] [][][][] [] [] [][] [][] [][][][]
[] [] [] [] [] [] [] [] [] [][] [] [] []
[] [][][][] [][][][] [][][][] [] [] [] [] [] [][][][]
[] [] [] [] [] [] [] [] [] [] []
[] [] [] [][][][] [][][][] [][][][] [] [] []
1. Just Make sure you have your thread specified on the Runescape Forums as the
Rs Window and the bump part of thread is clearly visible.
2. Hit play and it will use the bump button to bump your thread every 10 minutes
it is set to bump for 3 times, you can simply go down to the
until i>= 3 line and change that to how many times you want it to bump your thread.
3. Just test it and make sure it can bump more that once, then just let me know
it works.
THANK YOU FOR TESTING THIS SCRIPT!
Disclaimer: As this is my first script, I am not responsible for any errors,
however it is so simple I doubt there could be any...
I also doubt you could get banned from this, since there are no macro detection
programs JaGex runs on the forums.... At least I hope o.0
}
program thebump;
var
i: Integer;
BumpBMP: Integer;
x,y: Integer;
procedure LoadBump;
begin
BumpBMP := BitmapFromString(27, 12, 'beNpjYKAFmHDAAQ1RbiBBkUFr' +
'ILIUmiBy4KAFFJ4wxGUgLjYlLiRSwcgxEE/CxhQnaCA1AQCv3nIR');
end;
procedure ClickBump;
begin
if(FindBitmap(BumpBMP,x,y)) then
begin
MoveMouseSmoothEx(x,y+random(0),20,40,45,25,20);
Wait(100+random(100));
ClickMouse(x,y,true);
end;
end;
procedure FreeBump;
begin
FreeBitmap(BumpBMP);
end;
begin
LoadBump;
i:= 0;
repeat
i:= i + 1;
ClickBump;
wait(601000+random(100));
until(i >= 3);
FreeBump;
end.