Tinkerboom!

mycroft

Script Author: MyPrices
Just a quick and dirty script for those who want to get the 25 repeat title for the boom quest for tinkerfest.

Targets the robots and uses the detonator while you just run about

Code:
function main()
{
	variable int harvestloop=1
	variable string actorname
	do
	{
		EQ2:CreateCustomActorArray[byDist,25]
		do
		{
			actorname:Set[${CustomActor[${harvestloop}]}]
			if !${actorname.Equal[NULL]}
			{
				if ${actorname.Equal[Erratic Tinkerfest Clockwork]}
				{
					Actor[${CustomActor[${harvestloop}].ID}]:DoTarget
					wait 5
					Me.Inventory[Remote Detonator]:Use
				}
			}
		}
		while ${harvestloop:Inc} <= ${EQ2.CustomActorArraySize}
		harvestloop:Set[1]
	}
	while TRUE
}
 
Last edited:
Top Bottom