Page 1 of 1

Problems with Scouts...

Posted: Fri Apr 17, 2009 1:02 am
by CrazyGuy
So im trying to get my scout to shoot arrows more than cast rising tide... it seems to cast rising tide every other action, ive got the following:

Code: Select all

<skill name="SCOUT_WIND_ARROWS" hotkey="VK_0" modifier="500" />
<skill name="PRIEST_RISING_TIDE" hotkey="VK_1" modifier="1" />
Any idea why it keeps on casting rising tide, and never uses wind arrow?

Re: Problems with Scouts...

Posted: Fri Apr 17, 2009 1:23 am
by Administrator
Because you're using the modifier instead of priority?

Code: Select all

<skill name="SCOUT_WIND_ARROWS" hotkey="VK_0" modifier="" priority="500" />
<skill name="PRIEST_RISING_TIDE" hotkey="VK_1" modifier="" priority="1" />