Sage continuously spams Endow Tornado

International

Moderator: Moderators

Kayn
Noob
Noob
Posts: 1
Joined: 12 Aug 2011, 18:52
Noob?: Yes

Sage continuously spams Endow Tornado

#1 Post by Kayn »

I have google searched in various different ways to get a solution for this problem but have not been successful. I saw a similar post about a heal spamming priest but it did not help. Here is the config that I have been tweaking to get the sage to only cast the endow when it is not active and/or after a timeout.

Code: Select all

partySkill Endow Tornado {
	lvl 5
	sp > 10
	target_whenStatusInactive Wind Weapon  # I figured this was the cause of the problem so I checked the status of the character the endow was cast on and it said Wind Weapon.
	target "name"
	stopWhenHit 1
	#onAction Attack   # When this is on the sage will spam it whenever it gets a chance in the fight. I have it off right now to test the block in a town.
	#notInTown 1
	notWhileSitting 1
	target_timeout 1800 # Oddly enough this timeout is not helping the spams either.  I figured the timeout would at least make the block unusable for 30min. 
}
The soul linkers Mild Wind works in a similar way with name of skill being Mild Wind and then setting the level you want to use with the status name set as Wind, Fire, Water Weapon, etc. I do not have any problem with the soul linker config yet, the sage just spams the endow on and on. In a matter of a few seconds he used up 20 Wind of Verdure, luckily I stayed to watch the bot to see how it was doing.

I still think it does not recognize the status on the targeted player so it keeps casting it. I tried the endow on the sage itself and he would still spam it. Lightning Loader, Lightening Loader, Wind Weapon, Endow Tornado, none of these work for the target_whenStatusInactive. Any feedback or help would be appreciated. Thank you.
I am on the yggdrasil server.
silentblue1987
Human
Human
Posts: 46
Joined: 07 Apr 2010, 12:11
Noob?: Yes

Re: Sage continuously spams Endow Tornado

#2 Post by silentblue1987 »

Nice, you found something I had to look up xD. Make sure you're using the Latest SVN version or this block will not work.

Code: Select all

partySkill SA_LIGHTNINGLOADER {
   lvl 5
   sp > 10
   target_whenStatusInactive EFST_PROPERTYWIND  
   stopWhenHit 1
   #onAction Attack   #<<you should leave this option disabled otherwise it will recast every single attack.
   notInTown 1
   notWhileSitting 1
   timeout 1 #<<once configured correctly it should never spam
}
Check to make sure all spelling is correct too all blocks and options are CASE sensitive. one small mistake will lead to block failure.