Harvest bot

deeje

Active Member
Was wondering if there is a way to auto evac once you have been hit by something *add something to the harvest script maybe?*..I harvest on a pvp server, so I really don't want my fame up for grabs... Any ideas?
 

Zandros

Script Author: VGA
Was wondering if there is a way to auto evac once you have been hit by something *add something to the harvest script maybe?*..I harvest on a pvp server, so I really don't want my fame up for grabs... Any ideas?

Here is a snippet that may be of some help:

Code:
	; Now wait for the Harvesting to finish
	while ${GV[bool,bHarvesting]} && !${GV[bool,IsHarvestingDone]} && ${Me.Encounter}==0
	{
		wait 10
	}

	; We are under attack... recall and exit script
	if ${Me.Encounter}>0 && ${Me.HealthPct} < 95
	{
		Me.Ability[Recall]:Use
		wait 5
		endscript *
	}
 
Top Bottom