Jump to content
cypher

where do i download previous version?

Recommended Posts

Since the update I cannot use the scar anymore as it will give me an error everytime I try to make it use my browser (opera or IE). I never had that problem before so my question is, where can I dowload a previous version so I can downgrade?

Link to comment
Share on other sites

Since the update I cannot use the scar anymore as it will give me an error everytime I try to make it use my browser (opera or IE). I never had that problem before so my question is, where can I dowload a previous version so I can downgrade?

 

Please provide some details on your problem, I'd rather help you get up and running with the new version than fragment the platform by continuing with the old one.

Link to comment
Share on other sites

This part does the trick I guess.

There's a new panel in the main GUI (Target Client), if you've used SCAR previously, you will need to go into "C:\Users\[YourName]\AppData\Local\SCAR Divi\" and remove the docking settings file, or it will NOT show up.

 

You didn't tell that at the release topic :)

Thanks for the info, solved it.

Link to comment
Share on other sites

Solved the target problem, I dont get an error anymore but pressing the play button does nothing anymore and my script will not run.... Is there anything I should change in this script?

 

program New;

 

const

WaitTime = 25;

 

var

X, Y, Color: Integer;

SearchColors: TIntArray;

 

begin

ClearDebug;

 

// Colors to search for

SearchColors := [140991, 206784, 245821, 12518021, 8652036, 986097, 1671065, 180028, 16449527, 14737381, 1054138, 1527, 196612];

 

// Repeat until user presses ESC key

repeat

// Get color at/under mouse

GetMousePos(X, Y);

Color := GetColor(X, Y);

 

// If color matches our search colors, then click mouse

if TIAContains(SearchColors, Color) then

begin

writeln('Color ' + IntToStr(Color) + ' found at position (' + IntToStr(X) + ',' + IntToStr(Y) + ')');

ClickMouse(X, Y, TRUE);

end;

 

// Small wait to reduce lag

Wait(50);

 

until IsKeyDown(VK_ESCAPE);

end.

Link to comment
Share on other sites

Solved the target problem, I dont get an error anymore but pressing the play button does nothing anymore and my script will not run.... Is there anything I should change in this script?

 

Check the messages tab at the bottom for errors.

 

The script is fine, aside from IsKeyDown, this has to be replaced with GetKeyState, the function does the same thing:

[scar]program New;

 

const

WaitTime = 25;

 

var

X, Y, Color: Integer;

SearchColors: TIntArray;

 

begin

ClearDebug;

 

// Colors to search for

SearchColors := [140991, 206784, 245821, 12518021, 8652036, 986097, 1671065, 180028, 16449527, 14737381, 1054138, 1527, 196612];

 

// Repeat until user presses ESC key

repeat

// Get color at/under mouse

GetMousePos(X, Y);

Color := GetColor(X, Y);

 

// If color matches our search colors, then click mouse

if TIAContains(SearchColors, Color) then

begin

WriteLn('Color ' + IntToStr(Color) + ' found at position (' + IntToStr(X) + ',' + IntToStr(Y) + ')');

ClickMouse(X, Y, TRUE);

end;

 

// Small wait to reduce lag

Wait(50);

 

until GetKeyState(VK_ESCAPE);

end. [/scar]

Link to comment
Share on other sites

That does the trick, thanks !

 

Last detail, this seems to now do a right click instead of a left click....

 

Sorry, I missed that, you're not supposed to enter a boolean anymore:

 

[scar]program New;

 

const

WaitTime = 25;

 

var

X, Y, Color: Integer;

SearchColors: TIntArray;

 

begin

ClearDebug;

 

// Colors to search for

SearchColors := [140991, 206784, 245821, 12518021, 8652036, 986097, 1671065, 180028, 16449527, 14737381, 1054138, 1527, 196612];

 

// Repeat until user presses ESC key

repeat

// Get color at/under mouse

GetMousePos(X, Y);

Color := GetColor(X, Y);

 

// If color matches our search colors, then click mouse

if TIAContains(SearchColors, Color) then

begin

WriteLn('Color ' + IntToStr(Color) + ' found at position (' + IntToStr(X) + ',' + IntToStr(Y) + ')');

ClickMouse(X, Y, mbLeft);

end;

 

// Small wait to reduce lag

Wait(50);

 

until GetKeyState(VK_ESCAPE);

end.[/scar]

Link to comment
Share on other sites

Check the messages tab at the bottom for errors.

 

The script is fine, aside from IsKeyDown, this has to be replaced with GetKeyState, the function does the same thing:

[scar]program New;

 

const

WaitTime = 25;

 

var

X, Y, Color: Integer;

SearchColors: TIntArray;

 

begin

ClearDebug;

 

// Colors to search for

SearchColors := [140991, 206784, 245821, 12518021, 8652036, 986097, 1671065, 180028, 16449527, 14737381, 1054138, 1527, 196612];

 

// Repeat until user presses ESC key

repeat

// Get color at/under mouse

GetMousePos(X, Y);

Color := GetColor(X, Y);

 

// If color matches our search colors, then click mouse

if TIAContains(SearchColors, Color) then

begin

WriteLn('Color ' + IntToStr(Color) + ' found at position (' + IntToStr(X) + ',' + IntToStr(Y) + ')');

ClickMouse(X, Y, TRUE);

end;

 

// Small wait to reduce lag

Wait(50);

 

until GetKeyState(VK_ESCAPE);

end. [/scar]

 

Change this to:

 

[sCAR]ClickMouse(X, Y, mbLeft);[/sCAR]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...