Page 1 of 3
database skills fix
Posted: Mon Oct 03, 2011 11:12 am
by wizzyslo
latest updates have changed some skills as is Scout Elite skill Target lock. Can you change it to:
Code: Select all
<skill name="SCOUT_TARGET_LOCK" id="492620" cooldown="60" concentration="30" range="200" type="damage" target="enemy" />
Re: database skills fix
Posted: Mon Oct 03, 2011 7:01 pm
by lisa
I show the skill as being a debuff, not an actual attack skill.
Have you tried to get the buff Id from the enemy when you use it?
Re: database skills fix
Posted: Mon Oct 03, 2011 7:09 pm
by lisa
you can try using a macro in game, it's farely easy.
Code: Select all
/script CastSpellByName("Target Lock")
/wait 1
/script for i=1,20,1 do local name, icon, count, ID = UnitBuff( "target", i );DEFAULT_CHAT_FRAME:AddMessage(name.." "..ID); end
Just check the skill name is correct.
Re: database skills fix
Posted: Tue Oct 04, 2011 7:29 am
by wizzyslo
Dont know what thay do with game but lots of API functions doesnt work as si CastSpellByName() or /cast and i can scan only buffs on myself and not enemy target. I scanned database and found debuff ID: 502920
Re: database skills fix
Posted: Mon Oct 17, 2011 12:59 pm
by wizzyslo
Can you add next skill in skill database pls
Code: Select all
<!-- Itemset skills -->
<skill name="SCOUT_ARROW_SHIELD" id="495714" cooldown="180" type="buff" buffname="502920" target="self" />
I'm not running last version of bot but can you chack if is allrdy fixed Target Lock to:
Code: Select all
<!-- Elite -->
<skill name="SCOUT_TARGET_LOCK" id="492620" cooldown="60" concentration="30" range="200" type="buff" buffname="506867" target="enemy" />
Hope is averything correct wroten. I need those 2 skills for boss farming and have pritty big problem to fixing skills all over again.
Re: database skills fix
Posted: Mon Oct 17, 2011 6:59 pm
by rock5
Arrow Shield looks like it has a cooldown of 2m not 3m and buff '502920' says it's 'Target Lock'.
506867 looks like it's 'Arrow Shield'.
Did you get the 2 buffs mixed up?
Re: database skills fix
Posted: Tue Oct 18, 2011 4:00 am
by wizzyslo
People had shouted on me because I was so confused from making water dragon waypoint.
I will rapair my mess.
Re: database skills fix
Posted: Tue Oct 18, 2011 1:58 pm
by wizzyslo
Code: Select all
<!-- Elite -->
<skill name="SCOUT_TARGET_LOCK" id="492620" cooldown="60" concentration="30" range="200" type="buff" buffname="502920" target="enemy" />
<!-- Itemset skills -->
<skill name="SCOUT_ARROW_SHIELD" id="495714" cooldown="120" type="buff" buffname="506867" target="self" />
Ok I fix it but i have only 1 question about arrow shield, to cast that skill need 25 arrows can be this ignored?
Re: database skills fix
Posted: Tue Oct 18, 2011 9:45 pm
by rock5
There is no check for 'numbrt of arrows'. There probably doesn't need to be.
What happens when you try to use itwith no ammo? Does it try to cast it every 2 minutes or does it try to cast it continuously?
Re: database skills fix
Posted: Wed Oct 19, 2011 6:41 am
by wizzyslo
Used only once per 2 min.
Re: database skills fix
Posted: Wed Oct 19, 2011 8:35 am
by rock5
That's ok then. You might have code that re-arms you with more arrows so you would want it to keep trying to use it.
I'll add them like that then.
Re: database skills fix
Posted: Wed Oct 19, 2011 9:16 am
by wizzyslo
For re-ammo i'm using next code:
Code: Select all
if(player.Class1 == CLASS_SCOUT ) then
if 100 > inventory:getAmmunitionCount() then
if 100 > inventory:getItemCount(212754) then
sendMacro('CastSpellByName("Create Tendrils")')
yrest(6000)
inventory:update()
end
inventory:useItem(212754)
end
end
Works prfect
You can see that i'm using macro to use skill "Create Tendrils" to make arrows. I'm thinking to add it to database to.
skill info:
http://www.runesdatabase.com/skill/4957 ... e-tendrils
Will sand you code for database when I get it to work. Dont have time now in next 2 days.
Re: database skills fix
Posted: Sat Dec 10, 2011 6:26 am
by wizzyslo
Onother skill wich is missing in database.
Code: Select all
<!-- Itemset skills -->
<skill name="WARRIOR_SWORD_OF_IMPRISONMENT" id="495728" rage="20" range="50" type="damage" target="enemy" />
Re: database skills fix
Posted: Sat Dec 10, 2011 7:22 am
by rock5
wizzyslo wrote:Onother skill wich is missing in database.
Code: Select all
<!-- Itemset skills -->
<skill name="WARRIOR_SWORD_OF_IMPRISONMENT" id="495728" rage="20" range="50" type="damage" target="enemy" />
I'll add it next commit.
Re: database skills fix
Posted: Sat Dec 10, 2011 12:09 pm
by gloover
Also missing elite skills for warrior/warden:
Code: Select all
<skill name="WARRIOR_SAVAGE_WHIRLWIND" id="494324" mana="30" range="50" cooldown="8" type="damage" target="enemy" />
<skill name="WARRIOR_AIR_TREMOR" id="494625" minmanaper="30" cooldown="4" type="damage" target="enemy" />
rock, can u add this too?
Re: database skills fix
Posted: Sat Dec 10, 2011 2:15 pm
by rock5
gloover wrote:rock, can u add this too?
Yes, I can.
Re: database skills fix
Posted: Sun Dec 18, 2011 2:21 am
by lisa
added all 3 skills as posted in to rev 684.
Re: database skills fix
Posted: Thu Mar 15, 2012 12:37 am
by abron1
some warden/warrior skill are missing from the data base Pulse Mastery, Beast chop, Double Chop, Will attack, and Ire
Re: database skills fix
Posted: Sat Apr 28, 2012 12:56 pm
by omgwtfbbq
I know this is kinda odd but is there any plans to add more skills to the database? It'd be nice to get Beast Chop added for wd/w. It's their version of holy strike
Re: database skills fix
Posted: Sat Apr 28, 2012 11:53 pm
by rock5
Usually you ask and we add but even better is for someone who actually has the skill, such as yourself, to add the line yourself, try it out and make sure it works correctly. Then you post it and ask for it to be added.
BTW I was going to add Will Attack as part of the AOE update I'm committing soon.