Hacks Are Everything
Home­Portal­FAQ­Search­Memberlist­Usergroups­Register­Log in
Post new topic   Reply to topicShare | 
 

 Auto Talker

View previous topic View next topic Go down 
AuthorMessage
Goldenbender
Admin


Posts: 16
Join date: 2008-09-02
Age: 17
Location: Australia

PostSubject: Auto Talker   Tue Oct 28, 2008 11:23 am

Code:
program BroadCast;
//Copyright Addyrulez
procedure TypeByte(k: Byte);
begin KeyDown(k);
  wait(25 + Random(40));
  KeyUp(k);
  end;
  procedure SendType(Text: String); var i: Integer;
  begin for i := 1 to Length(Text) do
  begin TypeByte(GetKeyCode(Text[i])); Wait(50 + Random(60));
  end; wait(200 + Random(500)); TypeByte(13);
  end;
  const message1='~';
  interval=30; // time between messages in seconds.
  begin repeat
  clickmouse(579, 467, true)
  clickmouse(132, 384, false)
sendtype(message1) wait(interval * 1000)
until(false)
end.
Back to top Go down
View user profile http://eo-extract.forumotion.net
 

Auto Talker

View previous topic View next topic Back to top 
Page 1 of 1

Permissions of this forum:You cannot reply to topics in this forum
Eo-Extract :: Scripts :: Others-
Post new topic   Reply to topic