The Wiki for Tale 4 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

User:Menhotep/macros

From A Tale in the Desert
Jump to navigationJump to search

Try this Woodplane macro. Can use this with any number of woodplanes, resolution independant. Uses ACTools.

Woodplane Macro

// Written by: Coyan/Mosaic Guild originally as a mining Macro
// Adjusted by Menhotep for woodplane work.
// Will work with any number of woodplanes in any configuration
// with minor adjustments
// This is what I suggest for setting up for this macro
// This Macro DOES NOT fix broken blades

Constructs
	MouseX=List // this is an array of mouse X coords for gem sample points
	MouseY=List // this is an array of mouse X coords for gem sample points
END

Constants
	totalpulls = 1000 // How many times do you want it to run all woodplanes? (This number X Woodplanes = Wood in Inventory)
	loopcnt = 1 
	Mousecnt = 1
	MouseXN = 0
	MouseYN = 0
End

// First part that requires a detailed explanation
// this loop will pause for 3 seconds then grab the current mouse location
// its purpose is to identify the 6 locations for the woodplanes (or however
// many) when it grabs the woodplane spot(s), it will then echo a . to the chat window
// make sure you are in your main chat tab.  After it finds all the woodplanes, you
// may need to minimize your chat window.  BE SURE TO BE IN MAIN TAB!

// Adjust this Loop numer to the number of Woodplanes being used
Loop 6
	Delay 3000
	Listadd MouseX, {MouseX}
	Listadd MouseY, {MouseY}
	SayPaste .
END

loop $totalpulls
	Compute loopcnt = 1
// Adjust this Loop numer to the number of Woodplanes being used
	loop 6
		mousepos MouseX[$loopcnt], MouseY[$loopcnt]
		Delay 150
		keys p
		Compute loopcnt = $loopcnt + 1
		Delay 100
	END
	//Delay 100000 for testing
	//Delay 200 //200
	Delay 2300 // Delay to manage the delay woodplane operation, adjust as needed
	// The more woodplanes, the less this delay needs to be
	
end