Ok here is what i need, i remember finding a script that you can run that just keeps typing in just one button. it was the space bar to keep your guy logged in. i need that script but i can't find it. does any one know where i can get it?
Printable View
Ok here is what i need, i remember finding a script that you can run that just keeps typing in just one button. it was the space bar to keep your guy logged in. i need that script but i can't find it. does any one know where i can get it?
bump
If all the script does is press the space bar, make it...It wouldnt be that hard of a script. Does it have any randomness to it?
just use...
Ultimate antiban by lolislol
Code:http://www.villavu.com/forum/showthread.php?t=31835
why not make your own script to keep you logged in it would be so easy, in fact it is so easy that im just gonna write one right now :D:D
SCAR Code:Program MaxEasyNoobScript;
var
x,y,times: integer;
Const
HowMAnyTimeShouldIKeepYouLoggedIn= 999;
Procedure CrazyMadStayLoggedInProcedure;
begin
TypeSend(' Im a ghost thats logged in wooooo');
Times := times + 1
Wait(120000);
end;
Procedure Proggy;
begin
WriteLn('----------------------------');
WriteLn('--' + TimeRunning + '');
WriteLn('-- Kept You Logged in ' + IntToStr(Times) + ' times !!');
WriteLn('----------------------------');
end;
Begin
repeat
CrazyMadStayLoggedInProcedure;
until(HowMAnyTimeShouldIKeepYouLoggedIn >= Times)
Proggy;
end;
in that script youwrote, rs2 trims so put a period before all the spaces on line 11
heres the better version:
Program MaxEasyNoobScript;
var
x,y,times: integer;
Const
timestorepeat= 999;
Procedure main;
begin
i := random(15);
case i
1 : TypeSend('flash2:wave2:. Im a ghost thats logged in... wooooo');
2 : TypeSend(''flash2:wave2:. ooooooohhh, im going to get you');
3 : TypeSend(''flash2:wave2:ooohhh ... now im over here .');
4 : TypeSend('flash2:wave2: ooooooohhh, mmmmm, taaaaaaastyy');
5 : TypeSend('flash2:wave2:run away now!!! .');
6 : TypeSend('flash2:wave2: aaaahhhhhhh, u should listen!!!');
Times := times + 1
Wait(150000 + random(25000));
end;
Procedure Proggy;
begin
WriteLn('----------------------------');
WriteLn('-- Ran For ' + TimeRunning + '');
WriteLn('-- Kept You Logged in ' + IntToStr(Times) + ' times !!');
WriteLn('----------------------------');
end;
Begin
repeat
main;
until(timestorepeat >= Times OR isfkeydown(1))
Proggy;
end;