Here's a little SCAR script I just made for the make some noise game. Code (Text): program MakeSomeNoise; begin repeat KeyDown(GetKeyCode('1')); //put in here the keys it gives you KeyUp(GetKeyCode('1')); KeyDown(GetKeyCode('2')); KeyUp(GetKeyCode('2')); Wait(100); until(False); end. Copy and paste that into SCAR, target the window and click run Make sure you put in the keys it gives you, and stop when you finish. Feel free to play around with it. Took me all of 30 seconds to make EDIT: I got a score of over 9000 with this ^_^
hey thanks for this however because im abit new to the whole programming thing...what is SCAR? i know its a stupid question that could probably be answered else where but could you please help me?
Is a lenguaje.... of programming.... no? EDIT: The program put this: SCAR is a scriptable color clicker which is meant to be used to automate tasks. The general purpose of SCAR is automating repetitive actions in online games by simulating human interaction, which in most cases is considered cheating. SCAR uses custom version of Pascal language for scripts and includes a number of built in functions for mouse, keyboard interaction, text, color, bitmap searching etc. SCAR makes script developing easy by offering friendly IDE with syntax highlighting and script debugging features. +rep please