Ok, now i am trying to apply this to the way i want to use this.
SCAR Code:
program spam;
Begin
Wait (1000);
Wait (500);
Clickmouse (71, 231, True);
Wait (1000);
Clickmouse (271, 254, True);
Wait (100);
Sendkeys ('blah blah blah');
Wait (100);
Clickmouse (267, 304, True);
Wait (100);
Sendkeys ('Hello');
Wait (100)
Clickmouse (250, 411, True);
Wait (100);
Sendkeys ('so on and so forth');
Wait (100);
Clickmouse (208, 668, True);
Wait (1300);
End.
OK i want to take "blah blah blah" and make that say a list and pick like i asked. The other text stays the same.
Now could i apply the previous things like this?
SCAR Code:
Program yeah;
Begin
Var
Message: array [0..200] of String;
f:integer;
begin
message[0]:='this';
message[1]:='is';
message[2]:='really';
message[3]:='boring';
//... all the way down to the last one.
repeat
Wait (1000);
Wait (500);
Clickmouse (71, 231, True);
Wait (1000);
Clickmouse (271, 254, True);
Wait (100);
for f:=0 to 200 do
writeln(message[f]);
Wait (100);
Clickmouse (267, 304, True);
Wait (100);
Sendkeys ('Hello');
Wait (100)
Clickmouse (250, 411, True);
Wait (100);
Sendkeys ('this is my new program...');
Wait (100);
Clickmouse (208, 668, True);
Wait (1300);
until(false);
end;
End.
Ok i get it i am new to scar but i am trying to learn. I know i am using very basic operations but i am not typing in Runescape so i dont need the undetectable operations.
When i use this i get Line 3: [Error] (3:1): Identifier expected in script
I am probably missing something big that i haven't figured out yet.
I don't mean to be a leecher or a noob but i am trying to learn scar.
Oh heck i might as well tell what i am trying to do with this. I am trying to create a basic email spamming operation for a project. This is to demonstrate how easy it is for someone to spam and do "illegal" operations. Yeah and this is for school and i am only in 8th grade.... Yeah i am in the advanced part of class for computers.
Thanks for any help.
Mr.klean
(Oh and if anyone helps me and wants anything in return and they play rs, i could pay you some gold in rs for helping me)