1. #1
    Herald of the Titans Treeskee's Avatar
    10+ Year Old Account
    Join Date
    Dec 2010
    Location
    ON, CA
    Posts
    2,771

    [Solved] Professions Macro Issue

    "/run function TsSpam() SendChatMessage("{star}**Most LWing patterns & gem cuts available. Outside Grommash Hold!**{star}"..GetTradeSkillListLink(),"channel",nil,2) end
    /cast Leatherworking
    /run TsSpam()
    /cast Jewelcrafting
    /run TsSpam() CloseTradeSkill()"


    This is the macro I was using to post my professions in trade but as of 4.3 it does not seem to be working. If anyone knows what may have changed or a more efficient way to do this please fill me in.

  2. #2
    Code:
    /run local function p(v)CastSpellByName(v)SendChatMessage("{star}**Most LWing patterns & gem cuts available. Outside Grommash Hold!**{star} "..GetTradeSkillListLink(),"CHANNEL",nil,"2")CloseTradeSkill()end p("Leatherworking")p("Jewelcrafting")
    It's a 2 line macro since your message + 2 profession links are too long for one. I used channel "
    2" instead of GetChannelName("Trade - City"), so hope /2 is your trade channel since the macro was running very close to the 255 character limit.
    Last edited by Newbie95816; 2012-01-19 at 03:20 AM.

  3. #3
    Deleted
    Code:
    #showtooltip
    /cast Leatherworking
    /run SendChatMessage(" "..GetTradeSkillListLink(), "channel", nil, "2")
    /cast Jewelcrafting
    /run SendChatMessage(GetTradeSkillListLink().."", "channel", nil, "2") CloseTradeSkill()

  4. #4
    Herald of the Titans Treeskee's Avatar
    10+ Year Old Account
    Join Date
    Dec 2010
    Location
    ON, CA
    Posts
    2,771
    Thanks both finally up and running again

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •