macros show up but wont function
LadyUrsila opened this issue · 15 comments
Hello,
I am new to this app and have been trying to get it to work. I have 4 macros, 2 are modified, 2 are I believe yours from another website.
All 4 are in Mymacros Hunter file. The 2 I modified show up but don't function. Your two won't show up. I went through the Mymacros for dummys and everything seems fine but still nothing.
I can not figure it out and need some help.
local Sequences = GSMasterSequences -- Dont remove this
----- Hunter
-- Beast Mastery 253
-- Survival 255
-- Marksmanship - 254
Sequences['Single_MM'] = {
specID = 254,
author = "Ursila",
helpTxt = "Talent: 1113321",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/cast Trueshot
]],
'/cast Arcane Shot',
'/cast Arcane Shot',
'/cast Arcane Shot',
'/cast Aimed Shot',
'/cast Aimed Shot',
'/cast Aimed Shot',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}
Sequences['AOE_MM'] = {
author='Ursila',
specID=254,
helpTxt = 'Talents: 1113321',
PreMacro=[[
/targetenemy [noharm][dead]
/cast Trueshot
]],
icon='Ability_Hunter_FocusedAim',
'/cast [nochanneling] !Multi-shot',
'/cast [nochanneling] !Marked Shot',
'/cast [nochanneling] Sidewinders',
'/cast [nochanneling] Barrage',
'/cast [nochanneling] !Multi-shot',
'/cast [nochanneling] !Marked Shot',
PostMacro=[[
/startattack
/petattack
]],
}
Sequences['MmRotation'] = {
specID=254,
helpTxt = 'Talents: 1113321',
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast [nochanneling] Trueshot
]],
'/cast [nochanneling] Marked Shot',
'/cast [nochanneling] Windburst',
'/cast [nochanneling] Marked Shot',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling,talent:7/1] Sidewinders',
'/cast [nochanneling] Marked Shot',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}
Sequences['MmBarrage'] = {
specID=254,
helpTxt = 'Talents: 1113321',
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast [nochanneling] Barrage',
'/castsequence [nochanneling,talent:7/1] Sidewinders,Marked Shot',
'/cast [nochanneling] Barrage',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}
ok the ones I have modified are still not working.
The other 2 are working but wont make a proper icon
saw it was putting it in say chat as i logged out....
ok nm that it made more icons when I loaded in. I deleted the faulty ones. YAYA ok they all work!! AWSOME!
Thank you so very much! Been working on this for 3 days!
ok i do have 1 more issue. My single target macros is casting my sidewinders and it is not in my list. How do I make it stop?
Does it have something to do with my talent list?
Sequences['Single_MM'] = {
specID = 254,
author = "Ursila",
helpTxt = "Talent: 1113321",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/cast Trueshot
]],
'/cast Arcane Shot',
'/cast Arcane Shot',
'/cast Arcane Shot',
'/cast Aimed Shot',
'/cast Aimed Shot',
'/cast Aimed Shot',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}
it is casting sidewinders?
That I have no idea with. The macro shouldn't be casting things that are
not in its list of things to cast.
On Thu, Aug 25, 2016 at 9:12 AM, LadyUrsila [email protected]
wrote:
ok i do have 1 more issue. My single target macros is casting my
sidewinders and it is not in my list. How do I make it stop?—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#51 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAjBFRBeOZo3cXU2jnXgPfW-yiinrUz_ks5qjNbvgaJpZM4Jr6vw
.
ok I will not use it then. no clue why it is casting it. Thank you again so much for your help!
I would suggest posting that question about Sequences['Single_MM'] on http://www.wowlazymacros.com
I would however suggest removing /script UIErrorsFrame:Clear()
This is in the Options now.
Ok first problem - the last two won't show as they have no author= line. All of my macros will say author="TimothyLuke" or author="Draik"
The last two also have a lot of redundant information from old GS. https://wowlazymacros.com/forums/topic/converting-a-gs-macro-to-gs-e/
The next problem is did you do a /gs to create the macro stubs?
Timothy Minahan
M 0406 413 680 | E [email protected]
On 24 Aug 2016, at 9:13 PM, LadyUrsila [email protected] wrote:
Hello,
I am new to this app and have been trying to get it to work. I have 4 macros, 2 are modified, 2 are I believe yours from another website.All 4 are in Mymacros Hunter file. The 2 I modified show up but don't function. Your two won't show up. I went through the Mymacros for dummys and everything seems fine but still nothing.
I can not figure it out and need some help.
local Sequences = GSMasterSequences -- Dont remove this
----- Hunter
-- Beast Mastery 253
-- Survival 255
-- Marksmanship - 254Sequences['Single_MM'] = {
specID = 254,
author = "Ursila",
helpTxt = "Talent: 1113321",
StepFunction = GSStaticPriority,
PreMacro = [[
/targetenemy [noharm][dead]
/cast Trueshot
]],
'/cast Arcane Shot',
'/cast Arcane Shot',
'/cast Arcane Shot',
'/cast Aimed Shot',
'/cast Aimed Shot',
'/cast Aimed Shot',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}Sequences['AOE_MM'] = {
author='Ursila',
specID=254,
helpTxt = 'Talents: 1113321',
PreMacro=[[
/targetenemy [noharm][dead]
/cast Trueshot
]],
icon='Ability_Hunter_FocusedAim',
'/cast [nochanneling] !Multi-shot',
'/cast [nochanneling] !Marked Shot',
'/cast [nochanneling] Sidewinders',
'/cast [nochanneling] Barrage',
'/cast [nochanneling] !Multi-shot',
'/cast [nochanneling] !Marked Shot',
PostMacro=[[
/startattack
/petattack
]],
}Sequences['MmRotation'] = {
specID=254,
helpTxt = 'Talents: 1113321',
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
/cast [nochanneling] Trueshot
]],
'/cast [nochanneling] Marked Shot',
'/cast [nochanneling] Windburst',
'/cast [nochanneling] Marked Shot',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling] Aimed Shot',
'/cast [nochanneling,talent:7/1] Sidewinders',
'/cast [nochanneling] Marked Shot',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}Sequences['MmBarrage'] = {
specID=254,
helpTxt = 'Talents: 1113321',
StepFunction = [[
limit = limit or 1
if step == limit then
limit = limit % #macros + 1
step = 1
else
step = step % #macros + 1
end
]],
PreMacro = [[
/targetenemy [noharm][dead]
]],
'/cast [nochanneling] Barrage',
'/castsequence [nochanneling,talent:7/1] Sidewinders,Marked Shot',
'/cast [nochanneling] Barrage',
PostMacro = [[
/startattack
/script UIErrorsFrame:Clear()
]],
}—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
hmm odd I copied and pasted just as i saw on those last 2 i didn't modify those in anyway. Ill see if i can find that page again and double check.
I did /gs and got the main 2 macro stubs they just won't function.
ok nm, my bad! those last two were another person on this site and he had no author listed
https://wowlazymacros.com/forums/topic/marksman-hunter-patch-7-0-3-27716-2/
So to fix that add author="Unknown"
On Thu, Aug 25, 2016 at 8:50 AM, LadyUrsila [email protected]
wrote:
ok nm those last two were another person on this site and he had no author
listedhttps://wowlazymacros.com/forums/topic/marksman-hunter-
patch-7-0-3-27716-2/—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#51 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAjBFemk7eRihwEH8Pa94l7xFpnmNsXlks5qjNHGgaJpZM4Jr6vw
.
The exact line would need to be :
author="Unknown",
On Thu, Aug 25, 2016 at 8:51 AM, Timothy Minahan [email protected]
wrote:
So to fix that add author="Unknown"
On Thu, Aug 25, 2016 at 8:50 AM, LadyUrsila [email protected]
wrote:ok nm those last two were another person on this site and he had no
author listedhttps://wowlazymacros.com/forums/topic/marksman-hunter-patch
-7-0-3-27716-2/—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#51 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AAjBFemk7eRihwEH8Pa94l7xFpnmNsXlks5qjNHGgaJpZM4Jr6vw
.
The other thought was I found where those macros came from.
https://mods.curse.com/addons/wow/gs-darkramz
This mod pack includes those last two macros and is maintained and updated by Darkramz.