|
Post by Ravenclaw on Jun 22, 2013 21:03:20 GMT -8
Made using AssistUO v1.0.0 RC8 Build 09 ( www.runuo.com/products/assistuo) This is a Bowcrafting Macro that works with Boards (Change to logs if desired). It makes Heavy Crossbows which can be changed by altering the gump button #'s ('15' & '30'). To determine which gump buttons to use, make a separate test macro and make note of the values that are returned then change the values below. Copy and paste Macro below into AssistUO macro window. //Set Weight relating to your character and findtype is boards if weight >= maxweight sysmsg 'WEIGHT ALLOWED EXCEEDED, STOPPING!' '32' stop endif //Checks for boards in the backpack. Additionally the 10 is the amount of boards needed to make the item. Change this if item being made is changed. if not @findtype 0x1bd7 'any' 'backpack' 10 sysmsg 'NO BOARDS FOUND, STOPPING!' '32' stop else //Change 'findtype' and 'usetype' serial if not using Fletcher tools if @findtype 0x1022 'any' 'backpack' usetype 0x1022 'any' 'backpack' waitforgump 0x38920abd 5000 pause 500 replygump 0x38920abd 15 waitforgump 0x38920abd 5000 pause 500 replygump 0x38920abd 30 waitforgump 0x38920abd 5000 pause 2000 replygump 0x38920abd 0 else //Change message in quote if not using saws sysmsg 'OUT OF FLETCHER TOOLS!' '32' stop endif endif
|
|