... and numerous others Semi-retired
Quoted from "scanderson;598562"
THanks Auros,
So just so I understand you correctly, you ARE having issues when you initiate an attack on a mob that has already been targeted by you, but not when you use the macro and nothing is targeted?
... and numerous others Semi-retired
Quoted from "ghostwolf82;597850"
DIYCE.lua has the updates. You need the timers to determine if YOU cast the bleed or if it was someone else. Without the timers, you will see a bleed cast by someone else, and skip shadowstab thus lowering your DPS. So remove them if you figure out how, but know that if you do, no one will want you in endgame due to the fact you will have far less dps than rogues that use the timers.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
if mainClass == "THIEF" and subClass == "RANGER" then
-- (tbuffs[500654]) = Shadowstab Bleed
-- (tbuffs[500704]) = Low Blow Bleed
Skill = {
{ name = "Combat Master", use = ((EnergyBar2 >= 30) and (not pbuffs['Combat Master']) and (not pbuffs['Hide'])) },
{ name = "Premeditation", use = ((EnergyBar1 >= 75) and (not combat)) },
}
if enemy then
Skill = {
{ name = "Throat Attack", use = (silenceThis) },
{ name = "Wound Attack", use = ((EnergyBar1 >= 35) and (tbuffs['Grievous Wound'])) },
{ name = "Energy Thief", use = ((EnergyBar1 <= 50) and (boss) and (combat)) },
{ name = "Low Blow", use = (EnergyBar1 >= 25) and (pbuffs['Energy Thief']) and ((tbuffs['Bleed)']) or (tbuffs['Blind Spot Bleed'])) },
{ name = "Low Blow", use = ((EnergyBar1 >= 45) and ((tbuffs['Bleed']) or (tbuffs['Blind Spot Bleed']) or (tbuffs['Sneak Attack Bleed']))) },
{ name = "Shadowstab", use = ((EnergyBar1 >= 20) and ((not tbuffs['Bleed']) and (not tbuffs['Blind Spot Bleed']) and (not tbuffs['Sneak Attack Bleed']))) },
{ name = "Low Blow", use = (EnergyBar1 >= 40) },
{ name = "Shot", use = (true) },
{ name = "Vampire Arrows", use = (true) },
{ name = "Joint Blow", use = (EnergyBar2 >= 20) },
}
end
|
Quoted from "ghostwolf82;598712"
The one up on curse right now has the functionality for using the Rune War Bow to make arrows. If you do not have this bow in your inventory, that may cause some issues.
Food and speed potion are in my script, also might cause issues.
Other than that, not sure what would be causing this issue for you. Check these things, and if those aren't it then yeah, just debug to the best of your ability letting us know what is going on along the way. I personally haven't played R/S in a very long time.
... and numerous others Semi-retired
... and numerous others Semi-retired
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
if ((enemy) and (goat2 == "1")) then
Skill2 = {
{ name = "Wound Attack", use = ((EnergyBar1 >= 35) and ((tbuffs[500654]) and (tbuffs[500704]))) },
{ name = "Blind Spot", use = (((EnergyBar1 >= 25) and (boss) and (behind)) and (pbuffs['Energy Thief'] or pbuffs['Premeditation'])) },
{ name = "Shadowstab", use = (EnergyBar1 >= 20), timer = "SSBleed" },
{ name = "Low Blow", use = (((EnergyBar1 >= 25) and (tbuffs[500654])) or (tbuffs['Energy Thief'])), timer = "LBBleed", ignoretimer = not tbuffs['Energy Thief'] },
{ name = "Throat Attack", use = ((EnergyBar2 >= 50) and (boss or elite) and (silenceThis)) },
{ name = "Vampire Arrows", use = (EnergyBar2 >= 20) },
{ name = "Wrist Attack", use = ((EnergyBar2 >= 50) and (boss)) },
{ name = "Shot", use = ((EnergyBar1 < 20 )) },
}
|