// This macro is for Manufacturing stuff in mass quantities. // Pre-set the manufacture terminal with the item youwant built // Then start this macro. It hits the manufacture button // as many times as in the Quantity constant below. // //-------------------------------------------------------------------------------------------------------- //------------------------------------------------------------------------------------------------------// Constants ManuFactureDelay= 1800 // How long to wait after clicking on dismantle Quantity=50 // how many manufacture clicks you want to make MouseDelay=200 // how long after movign mouse. // Below we store X,Y values in variables // These values assume 1024x768 screen // By storing them in variables we facilitate changing of screen resolutions later. ButtonX=247 ButtonY=260 End SetActiveWindow Earth & Beyond CommandDelay 250 OBJVAR 12 // Set 'fuzziness' for RGB values when doing object matches. // Initial startup Loop $Quantity MousePos $ButtonX, $ButtonY // This is the slot of the stack to dismantle. Delay $MouseDelay LeftClick Delay $ManuFactureDelay end stop