Page 1 of 1

Warrior combo slash->tactical attack

Posted: Thu Mar 25, 2010 9:08 am
by Garrison
I couldnt find anything with search about this situation. Im trying to use these 2 skills but the thing is i cant use tactical attack before i have slash bleed on the mob. And if I use priority it still tries to spam tactical (maybe because it needs less rage) So any solutions about this? It doenst really slow me down much but its somehow annoying.

Re: Warrior combo slash->tactical attack

Posted: Thu Mar 25, 2010 10:58 am
by Administrator
See here: http://www.solarstrike.net/phpBB3/viewt ... =21&t=1136

You'll have to add that information to database/skills.xml. Let me know if you get it to work.

Re: Warrior combo slash->tactical attack

Posted: Thu Mar 25, 2010 11:23 am
by Garrison
Hmm, some difficulties its not using tactical attack at all anymore.
It looks like this atm..
<skill name="WARRIOR_TACTICAL_ATTACK" aslevel="4" skilltab="4" skillnum="4" rage="15" range="50" cooldown="5" type="damage" target="enemy" reqbufftype="debuff" reqbuffcount="1" reqdebufftarget="target" reqdebuffname="Bleed" />

Trying that with changing those buff/debuff thingies I can get different kind of outputs but nothing is working yet :)

Re: Warrior combo slash->tactical attack

Posted: Thu Mar 25, 2010 12:09 pm
by Administrator
Open rom/classes/pawn.lua. Go to (CTRL+G) line 300.

Find this line:

Code: Select all

			local count = buffs[i+1] or 0;
Directly under this line, add this:

Code: Select all

			if( count == 0 ) then count = 1; end;
Look a few lines down and you'll have to do the same thing again for debuffs. Save, and now it should work.

This is a bug due to the game saying that there's 0 stacks of bleed. No idea why they would program it that way, but that's just how it is.

Re: Warrior combo slash->tactical attack

Posted: Thu Mar 25, 2010 12:22 pm
by Garrison
Awesome now its working like it should. Thanks! 8-)