Log in

View Full Version : Typing random messages?



RusinaRange
11-22-2007, 02:05 PM
Is there a command for sending random messages like SendKeys but just random?

mickaliscious
11-23-2007, 06:03 AM
RandomChat and RandomChatEvery(minutes: string)

those should work (haven't tested) or you could actually write your own procedures for it...

procedure ChatsAndStuff;
var
Chatness: Array [0..4] of String;
begin
Chatness[0] := 'boogers';
Chatness[1] := 'cheese';
Chatness[2] := 'im a noob';
Chatness[3] := 'dont kill me';
Chatness[4] := 'die rats!';
TypeSend(Chatness[Random(4)]);
end;

probably a little over your head but i was bored lol. you can change the stuff between the ''s or add more by making changing
Array [0..#] of String;
Chatness[#] := '';
TypeSend(Chatness[Random(#)]);

where number equals the next one your adding or the highest number you've added.