Incommodious Posted November 21, 2012 Author Share Posted November 21, 2012 That is a good view point of it. And I was wondering what personal preferences other people have on it, but yes smaller the better. Quote Link to comment Share on other sites More sharing options...
LordJashin Posted November 21, 2012 Share Posted November 21, 2012 (edited) Remember you can make things smaller by making more procedures/functions as well. You will waste tons of lines of code though sometimes. Like here is one that will use findcolor on an area, and click the mouse there: You could also do one with loops in it. And make a parameter to specify how long to check for the color...etc. [scar] function FindColorClick(Color: Integer; Click: TMouseButton; x1, y1, x2, y2: Integer): Boolean; var x, y: Integer; begin Result := FindColor(x, y, Color, x1, y1, x2, y2); if Result then ClickMouse(x, y, Click); end. [/scar] EDIT: And about the stocks thing. My dad developed either the first, or some of the first software that had a line to the stock market (internet). The software sold for like $2000 a pop or like 10k? Idr. The guy who ran the thing made millions, and under paid my dad. Can't remember the story off the top of my head. I think the guy hired somebody else to replace him. O yeah and then he mouthed off about how bad the guy was and his operation. And he had to go to court over it lols. Edited November 21, 2012 by LordJashin Quote Link to comment Share on other sites More sharing options...
FHannes Posted November 21, 2012 Share Posted November 21, 2012 Smaller isn't always better, but in this case, it doesn't really matter. Quote Link to comment Share on other sites More sharing options...