PDA

View Full Version : break;



rj
08-29-2013, 12:03 AM
Just broke the 2 hour infinite loop of no posts on Villavu. Saved us from an infinite loop.

Sjoe
08-29-2013, 12:34 AM
I'll break u next time, herh herh herh

Nebula
08-29-2013, 12:53 AM
[Error]: 'BEGIN' expected at line 1

Sawyer
08-29-2013, 02:00 AM
Villavu has been kinda quiet in waiting for SRL 6. Everybody is just sitting around staring at their computer screens waiting. (sarcasm, in a small part)

Ian
08-29-2013, 02:20 AM
Villavu has been kinda quiet in waiting for SRL 6. Everybody is just sitting around staring at their computer screens waiting. (sarcasm, in a small part)

http://i.imgur.com/OK7GaHn.gif

Ashaman88
08-29-2013, 03:11 AM
http://i.imgur.com/OK7GaHn.gif

Presses F5 for the first time... amazed

Itankbots
08-29-2013, 03:49 AM
This is nothing new really, i noticed it happening when all the bans started, alot of big name people on forums got banned. and they are not active atm.

Along with people legitting new skill, waiting for SRL6. or just quit cause they got banned. (or not botting)

Last couple months went to bed and woken up 12hrs later only to see 3-4 new posts :P

Powerbot is scary dead too. Not just SRL.

bgtemp
08-29-2013, 09:41 AM
Just do something usefull...

This will relieve your F5 key

program NOTA_Follower;

type TPost = record
user,thread : string;

end;
function GetLatestPostInNOTA : TPost;
var s :string;
begin
s := GetPage('http://villavu.com/forum/forum.php');
s := ReplaceRegExpr('.*?Spam goes in here',s,'',true);
s := ReplaceRegExpr('</strong>.*',s,'',true);
s := ReplaceRegExpr('.*Go to first unread post in thread.*?>',s,'',true);
Result.thread := ReplaceRegExpr('</a>.*',s,'',true);
Result.user := ReplaceRegExpr('.*>',s,'',true);
writeln('Latest post in NOTA in thread: ' + Result.thread+' by '+Result.user);
end;

var LastPost, CurrentPost : TPost;
begin
LastPost := GetLatestPostInNOTA();

while true do
begin
wait(60000);
CurrentPost := GetLatestPostInNOTA();
if (CurrentPost.thread <> LastPost.thread)or(CurrentPost.user <> LastPost.user) then
begin
writeln('New post detected. Calling lion...');
OpenWebPage('http://youtu.be/hNeXXJrQDyk?t=22s');
terminatescript;
end;
end;
end.

Hoodz
08-29-2013, 10:00 AM
http://i.imgur.com/OK7GaHn.gif

Cool gif bmwxi