Okies first off start off with
Code:
program Notepad_spammer;
procedure Notepad;
begin
So you know what that bit does thats the bit that tells it thats its starting.
Thats the beginning of it. heres the next bit (Took me some time to workout)
Code:
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13)); Thats where your text goes It does about 20 per second or more.
The chr(13)); is the ENTER button.
And the SendkeysSilent is tell SCAR that you want it to type it in on the bit you seleted.
Code:
end;
begin
Notepad;
end.
Add that to the last bit and you've made you first script!
By the way yours should look like this
Code:
program Notepad_spammer;
procedure Notepad;
begin
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
SendKeysSilent('Your text goes here' + Chr(13));
end;
begin
Notepad;
end. I dont even see why i write these anymore they never get looked at.