My Auto Enchant Macro menu

User Tag List

Results 1 to 12 of 12
  1. #1
    Black Gull's Avatar Contributor
    Reputation
    153
    Join Date
    Jun 2007
    Posts
    278
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    My Auto Enchant Macro

    Hi all!

    Tbh, I think alot of you are lazy about lvl'ing up Enchanting, just like me.. It can be a pain in the ass to lvl up.

    Open Enchant Book --> Open Character Window --> Click the Enchant in the Enchant Book --> Click on the Armor --> Replace, click 'Yes'

    Repeat step 3-6 20 times -.-'

    Well, I found some different macros around and putted them all together into this "simple" little macro:

    #showtooltip
    /run CloseTradeSkill()
    /cast Enchanting
    /run local s for i=1,GetNumTradeSkills() do s=GetTradeSkillInfo(i) if (s=="Enchant Bracer - Assault") then DoTradeSkill(i) end end
    /use Plated Saronite Bracers
    /script ReplaceEnchant()

    Ok, I will list down, line for line, what it does:

    1st line -- Show the Enchanting tooltip in left corner
    2nd line -- Close the Enchanting window
    3rd line -- Open Enchanting window
    4th - 5th -- Purple = The Enchant spell from the book, change it to the desired spell
    6th line -- Green = The targeted Enchanted item
    7th line -- Auto click the yes replacement window

    The only thing you have to change everytime you make new enchanting is purple and green

    EDIT: If you like the window to keep being closed, delete the 2nd line and write it in the button, example:

    #showtooltip
    /run CloseTradeSkill()
    /cast Enchanting
    /run local s for i=1,GetNumTradeSkills() do s=GetTradeSkillInfo(i) if (s=="Enchant Bracer - Assault") then DoTradeSkill(i) end end
    /use Plated Saronite Bracers
    /script ReplaceEnchant()

    to:

    #showtooltip
    /cast Enchanting
    /run local s for i=1,GetNumTradeSkills() do s=GetTradeSkillInfo(i) if (s=="Enchant Bracer - Assault") then DoTradeSkill(i) end end
    /use Plated Saronite Bracers
    /script ReplaceEnchant()
    /run CloseTradeSkill()

    I just changed the red part, hf lvl'ng your enchanting!

    If there is anything you want to know, leave a post

    And to all pro UI makers, I really need some help, I would appriciate if anyone would like to hear my idea of an AddOn, if you do, PM me and I will tell my idea
    Last edited by Black Gull; 03-13-2009 at 11:35 AM.

    My Auto Enchant Macro
  2. #2
    Ganja187's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx i will test it

  3. #3
    hamdroids's Avatar Member
    Reputation
    2
    Join Date
    Apr 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found this but I hope it helps,

    #showtooltip
    /run CloseTradeSkill()
    /cast Enchanting
    /run local s for i=1,GetNumTradeSkills() do s=GetTradeSkillSelectionIndex() if s then DoTradeSkill(s) end end
    /use 0 1
    /script ReplaceEnchant()

    This will use the skill selected on your enchanting window, and apply it to the first item in your default backpack (the top left one). So all you gotta do is place the to-be-enchanted-over-and-over-again item there, open enchanting, select enchant, and launch this macro as many times as you need it.

  4. #4
    kebabkungen's Avatar Member
    Reputation
    6
    Join Date
    Sep 2006
    Posts
    106
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awsome macro mate +Rep!

  5. #5
    Jeddy's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    80
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could use Advanced Trade Skill Window, lets you queue enchants which would probably be faster than changing the macro. But good work anyway!

  6. #6
    LaoArchAngel's Avatar Active Member
    Reputation
    47
    Join Date
    Apr 2009
    Posts
    63
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a lot for this. It really does make it a lot easier. +r

  7. #7
    simse64's Avatar Private
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    But what if i want to get it on "Enchanting Vellum"?

  8. #8
    cdaddy's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by simse64 View Post
    But what if i want to get it on "Enchanting Vellum"?
    #showtooltip
    /run CloseTradeSkill()
    /cast Enchanting
    /run local s for i=1,GetNumTradeSkills() do s=GetTradeSkillInfo(i) if (s=="Enchant Bracer - Minor Stamina") then DoTradeSkill(i) end end
    /use Enchanting Vellum

    There you go, this is very useful, thanks a bunch!

    Now Dis-Enchant items!

    ---------- Post added at 03:11 AM ---------- Previous post was at 01:26 AM ----------

    Ok so now what i did for Dis-Enchant was this...

    #showtooltip
    /run CloseTradeSkill()
    /cast Disenchant
    /run local s for i=1,GetNumTradeSkills() do s=GetTradeSkillInfo(i) if (s=="Disenchant Crimson Silk Pantaloons") then DoTradeSkill(i) end end
    /use Crimson Silk Pantaloons

    Replaced the enchant (Item of your choice) with the Disenchant (Item of your choice) replace /cast Enchanting with, you guessed it, /cast disenchant.

    Still testing the waters with macros myself. Good luck all!
    Last edited by cdaddy; 03-13-2011 at 03:19 AM.

  9. #9
    sients's Avatar Active Member
    Reputation
    63
    Join Date
    Sep 2007
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is sick, I'm using it now

  10. #10
    darkprime's Avatar Member
    Reputation
    2
    Join Date
    Mar 2012
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <3 i love this.

  11. #11
    aerounleashed's Avatar Active Member
    Reputation
    16
    Join Date
    Jan 2013
    Posts
    56
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +rep works like a charm

  12. #12
    gamer6321's Avatar Member
    Reputation
    11
    Join Date
    Oct 2007
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It seems like this isn't possible anymore. i am using it it highlights the enchant but doesn't apply it to the item anymore. testing as of 6.0.3

Similar Threads

  1. Auto - Disenchant Macro/Script
    By Redkoala in forum World of Warcraft Guides
    Replies: 9
    Last Post: 03-04-2012, 03:19 AM
  2. [TotGC] Jaraxxus auto targetting macro
    By Ellesar1 in forum World of Warcraft Guides
    Replies: 4
    Last Post: 10-22-2009, 07:44 PM
  3. Auto Prospecting Macro (Using protected functions)
    By Mathmech in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 10-21-2009, 04:36 PM
  4. Wintergrasp Anti-AFK and Auto-Join MACRO
    By posto in forum World of Warcraft Exploits
    Replies: 4
    Last Post: 09-22-2009, 07:28 PM
  5. Auto Enchant --Macro--
    By Black Gull in forum World of Warcraft Guides
    Replies: 1
    Last Post: 03-19-2009, 03:15 AM
All times are GMT -5. The time now is 11:52 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search