Page 1 of 1
[Addon/Macro] Behind Target
Posted: Sun Jul 28, 2013 1:40 am
by evilband7
Anyway to check you are behind target or not? (for ingame macro/addon, not a bot)
Or at least, Can get the last warning msg like this.
http://upic.me/i/y7/behind.jpg
thank you
Re: [Addon/Macro] Behind Target
Posted: Sun Jul 28, 2013 3:14 am
by lisa
well you can make an addon to tell you if the message appears, I don't see the point as the message on screen is telling you that.
If not for botting then I don't see the benefit.
Re: [Addon/Macro] Behind Target
Posted: Sun Jul 28, 2013 2:58 pm
by evilband7
I wanna make macro for rogue skill combo in 1 shortcut and it will cast blind spot instead of shadowstab when stay behind target.
Re: [Addon/Macro] Behind Target
Posted: Tue Jul 30, 2013 12:26 pm
by lolita
when i was playing rogue/scout, in "Diyce" addon i was useing this variable to check if i am behind target
Code: Select all
local behind = GetActionUsable(9) -- # is your blind spot spell slot number
so you can make macro
Code: Select all
/script local behind = GetActionUsable(9); if behind then CastSpellByName("spell_name") else CastSpellByName("spell_name") end
Re: [Addon/Macro] Behind Target
Posted: Thu Aug 01, 2013 12:40 am
by evilband7
lolita wrote:when i was playing rogue/scout, in "Diyce" addon i was useing this variable to check if i am behind target
Code: Select all
local behind = GetActionUsable(9) -- # is your blind spot spell slot number
so you can make macro
Code: Select all
/script local behind = GetActionUsable(9); if behind then CastSpellByName("spell_name") else CastSpellByName("spell_name") end
I try to use this before.
GetActionUsable(x) will return true if you are close to target. and when you cast, the warning msg appear. ;(
I tested many command in this
http://runesofmagic.gamepedia.com/List_of_Functions.
but i can't solve this. ;(
Re: [Addon/Macro] Behind Target
Posted: Thu Aug 01, 2013 2:01 am
by rock5
Personally I don't think it's possible. I thought Lolita's idea was quite clever. A shame it didn't work.