Problems with Scouts...

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
CrazyGuy
Posts: 63
Joined: Mon Mar 23, 2009 10:41 am

Problems with Scouts...

#1 Post 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?
User avatar
Administrator
Site Admin
Posts: 5340
Joined: Sat Jan 05, 2008 4:21 pm

Re: Problems with Scouts...

#2 Post 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" />
Post Reply