Velsharon wrote:Is there another way of getting the buff id numbers other than using the ItemPreview addon?
If you can apply the buff yourself, you can use an in game command to get the buff ids as I posted in the 4th post.
This is how you list your players buffs
Code: Select all
/script n=0 repeat n=n+1 local name, icon, count, ID = UnitBuff( "player", n ) if name then SendSystemChat(name..", "..ID) end until not name
Change 'player' to 'target' to list your targets buffs.
Velsharon wrote:Also has anyone tried this new version with a Rogue yet? I'm having issues with the basic rotation BlindStab-->ShadowStab-->LowBlow-->WoundAttack and I think it has to do with the new buff detection routines. I'm at work now but will post later from home.
It would help if you said what your problem is.
Because they are attack skills, I figured the user
might want them to be used again even if the buff is applied, so I didn't add buff requirements. You can easily add them to your profile though.
This is what I use and it seems to work
Code: Select all
<skill name="ROGUE_BLIND_STAB" hotkey="MACRO" priority="70" />
<skill name="ROGUE_SHADOWSTAB" hotkey="MACRO" priority="50" nobuffname="Bleed" nobufftarget="target"/>
<skill name="ROGUE_LOW_BLOW" hotkey="MACRO" priority="40" reqbuffname="Bleed" reqbufftarget="target" nobuffname="Grievous Wound" nobufftarget="target"/>
<skill name="ROGUE_WOUND_ATTACK" hotkey="MACRO" priority="30" reqbuffname="Grievous Wound" reqbufftarget="target"/>
The only downside to this is, if all the buffs are applied and Blind Stab and Wound Attack are on cooldown, then it wont use any skills even though it could use Shadowstab.
Alkaiser wrote:Another skill missing from skills_local.xml:
Code: Select all
<WARRIOR_THE_FINAL_BATTLE en="The Final Battle" />
Added.
botje wrote:i got that mesage about a edit box too man
Damn! We got to get to the bottom of this. So I'll ask you too,
Have you messed around with the key bindings?
What happens if you are in an edit box in game and press Escape, does the cursor disappear from the edit box?
Start the 'CommandLine' waypoint file and type this
Code: Select all
print(settings.hotkeys.ESCAPE.key)
Does it print '27'?
Do you have Cheat Engine?
Can you check the '
editBoxHasFocus_address' address to see if it changes when the game is in an edit box?
If you get this error, please help me fix it.
Note: If you get this error you don't have to revert the whole bot to a previous version. You only need to revert 'functions.lua'. To do this just right click it and select "
TortoiseSVN/Update to revision" and enter '574'. That way you can still enjoy the other changes made.