[Money] Get some easy money during Winterveil with enchanting menu

Shout-Out

User Tag List

Page 1 of 4 1234 LastLast
Results 1 to 15 of 59
  1. #1
    eloivanelst's Avatar Contributor
    Reputation
    127
    Join Date
    Oct 2009
    Posts
    176
    Thanks G/R
    0/0
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Money] Get some easy money during Winterveil with enchanting

    Appearently, you can disenchant last years Feast of Winter Veil item, resulting in you getting some nice stacks of enchanting materials. The item is called Gaudy Winter Veil Sweater and you can buy it from the Smokywood Pastures vendors found in the major capitals. They cost 22 copper and gives you loads of Strange Dust & Lesser Magic Essence. Use this trick while you can!

    [Money] Get some easy money during Winterveil with enchanting
  2. #2
    Zomtorg's Avatar Contributor
    Reputation
    231
    Join Date
    Jan 2009
    Posts
    447
    Thanks G/R
    5/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Useful Macros:

    Disenchanting the item:
    /cast Disenchant
    /use Gaudy Winter Veil Sweater
    Buying the robe from the vendor (Vendor window opened is required):
    /run for i=1,GetMerchantNumItems() do local l=GetMerchantItemLink(i) if l then if l:find(70923) then BuyMerchantItem(i, quantity)end end end
    For an even more faceroll disenchanting, you can put 1 of each - Strange Dust and Lesser Magic Essence on some of the places in your bag in order to spam both macros, without facing the problem of NOT having a place where to put your disenchanted items because your inventory is full:



    A good distribution of slots would be 5:2, which means for every 5 slots of Strange Dust you have 2 slots of Lesser Magic Essence.

    A fast macro to separate items from stack of 20 in just pieces would be the following (requires your mouse to be over the stack of items):
    /run local x=GetMouseFocus()local b,s=x:GetParent():GetID(),x:GetID()SplitContainerItem(b,s,1)for i=0,4 do for j=1,GetContainerNumSlots(i)do if not GetContainerItemID(i,j)then PickupContainerItem(i,j)end end end
    P.S. Download the program, made with Autohotkey, that spams both keys (usable in background):
    http://speedy.sh/RwCCg/Zomtorg.exe

    Code:
    Loop
    {
    ControlSend,,1,World of Warcraft
    Sleep, 100
    ControlSend,,3,World of Warcraft
    Sleep, 100
    }
    Last edited by Zomtorg; 12-26-2012 at 01:53 PM.

  3. #3
    diablo32's Avatar Active Member
    CoreCoins Purchaser
    Reputation
    36
    Join Date
    May 2012
    Posts
    95
    Thanks G/R
    6/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very very much guys , really I am get some golds , i'm so happy

  4. #4
    Frosty1989's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2012
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Amazing. +rep

  5. #5
    Disphotic's Avatar ( ͡° ͜ʖ ͡°) CoreCoins Purchaser
    Reputation
    640
    Join Date
    Sep 2006
    Posts
    1,344
    Thanks G/R
    79/103
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    insane +rep

  6. #6
    xtase2007's Avatar Contributor
    Reputation
    114
    Join Date
    Mar 2007
    Posts
    552
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    epic! +rep i just hope not too many people do this lol

  7. #7
    xtase2007's Avatar Contributor
    Reputation
    114
    Join Date
    Mar 2007
    Posts
    552
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Complete automatic bot to DE non-stop

    1. Bind macro to 1
    /cast Disenchant
    /use Gaudy Winter Veil Sweater

    2. Bind macro to 2
    /run for i=1,GetMerchantNumItems() do local l=GetMerchantItemLink(i) if l then if l:find(70923) then BuyMerchantItem(i, quantity)end end end

    3. Open NPC window (to purchase items via macro 2)
    4. Install autoit and create a macro:

    Local $a = 0;Loop counter variable
    ;Stuff that is repeated
    Do
    $a += 1;Adds 1 to the loop counter
    Send('1');Sends 1
    Sleep(2000);Waits
    Send('2');Sends 2
    Sleep(1000);Waits
    Until $a = 99999;How many times to loop


    5. Run autoit macro and go afk ;D


    This will pretty much auto DE while AFK. Just make sure to stop macro when bags are full
    rinse and repeat! cheeers! Merry Christmas

  8. #8
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Love you +rep

  9. #9
    asdfx123's Avatar Elite User
    Reputation
    455
    Join Date
    Jan 2009
    Posts
    344
    Thanks G/R
    39/36
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    god, awesome, +5 rep haha nice!!!!

    here short script in autoit for multiple instances of wow:
    Code:
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    $windowTitle = "World of Warcraft"
    $windowList = winList($windowTitle) ;$windowList[this array is the window Title][and this array is the window handle as hex number]
    $windowFound = $windowList[0][0]
    $windowHandle = 0
    
    
    if $windowFound == 0 then
    	MsgBox(0, $windowTitle&"-01", "Could not find any Window")
    	exit
    elseif $windowFound > 1 then
    	MsgBox(0, $windowTitle&"-02", "There are more than 1 "&$windowTitle&" windows running.")
    
    	local $windowHandleShow = ""
    
    	for $i = 1 to $windowFound step 1
    		$windowHandleShow = $windowHandleShow & @CRLF & $windowTitle&": --"& $i &"-- "&$windowList[$i][1]
    	next
    
    	; user selects handle
    	do
    	  $userInput = InputBox($windowTitle&" Window Selection", "Please select a window (1 = first Window, 2 = second...)"&@CRLF&$windowHandleShow)
        until $userInput <> isNumber($userInput)
        $winhandle = $windowList[$userInput][1]
    else
    	$winhandle = $windowList[1][1]
    endif
    
    
    ;$windowHandle = $windowList[1][1]
    ;$windowHandle2 = $windowList[2][1]
    
    
    global $botRun = false
    
    HotKeySet("{F12}", "botStart")
    HotKeySet("{F11}", "botStop")
    HotKeySet("{F10}", "botEnd")
    
    botStart()
    
    func botStart()
    	$botRun = true
    	while $botRun == true
    		Sleep(150)
    		ControlSend($winhandle, "", "", "{1}") ; BUY ITEM
    		Sleep(300)
    		ControlSend($winhandle, "", "", "{2}") ; DISENCHANT ITEM
    		Sleep(2300)
    	wend
    endfunc
    
    func botStop()
    	$botRun = false
    endfunc
    
    func botEnd()
      exit
    endfunc
    
    while 1
    	sleep(250)
    wend
    bind key 1 to buy item in wow as macro
    bind key 2 to disenchant item in wow as macro

    results of doing this about ~~ 1h:

    Attachment 11835
    Last edited by asdfx123; 12-26-2012 at 11:39 AM.

  10. #10
    Igzz's Avatar ✬✬✬✬✬✬✬✬✬✬ CoreCoins Purchaser
    Reputation
    908
    Join Date
    Jan 2007
    Posts
    1,897
    Thanks G/R
    59/76
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gave ya the last 5 rep for contrib! Congrats! Also, great post .


  11. #11
    crazykay's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    22
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where can i dl autoit?

  12. #12
    asdfx123's Avatar Elite User
    Reputation
    455
    Join Date
    Jan 2009
    Posts
    344
    Thanks G/R
    39/36
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crazykay View Post
    where can i dl autoit?
    Here: AutoIt Downloads - AutoItScript

  13. #13
    crazykay's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    22
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    usally it should work, but now my wow doesnt respond to the marko keypresses. even not to Prospector and KeyPresser. Does anyone know why this is?

  14. #14
    asdfx123's Avatar Elite User
    Reputation
    455
    Join Date
    Jan 2009
    Posts
    344
    Thanks G/R
    39/36
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crazykay View Post
    usally it should work, but now my wow doesnt respond to the marko keypresses. even not to Prospector and KeyPresser. Does anyone know why this is?
    Maybe wanna try my script? Just Compile it as .exe and run it.

  15. #15
    RedRussian's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Nov 2012
    Posts
    430
    Thanks G/R
    2/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by asdfx123 View Post
    god, awesome, +5 rep haha nice!!!!


    bind key 1 to buy item in wow as macro
    bind key 2 to disenchant item in wow as macro
    I use 2 macros, 1st one is
    /cast Disenchant
    /use Gaudy Winter Veil Sweater
    /run for i=1,GetMerchantNumItems() do local l=GetMerchantItemLink(i) if l then if l:find(70923) then BuyMerchantItem(i, quantity)end end end
    it buys & DEs these items

    second macro converts lesser essences into greater ones so they take less space in bags

    /use lesser_essence_forgot_its_name_in_english_
    I think AutoIt is too hardcore for this task

    AUTOCLICKER (Never log out via AFK..?)
    Unfortunately there's no english version of this clicker but I've attached a pic with translation

    upd: DEd 2.5k sweaters in 2.5 hours)
    Last edited by RedRussian; 12-26-2012 at 12:52 PM.

Page 1 of 4 1234 LastLast

Similar Threads

  1. Get some easy defence skill ups and wepon skillups
    By freeloader587 in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 11-15-2009, 10:13 PM
  2. Earn some easy money with enchanting
    By Kezah in forum World of Warcraft Guides
    Replies: 4
    Last Post: 06-19-2009, 11:29 AM
  3. Replies: 6
    Last Post: 12-06-2008, 02:34 PM
  4. Get some easy(er) AB marks
    By w00ty in forum World of Warcraft Guides
    Replies: 15
    Last Post: 03-01-2008, 10:33 AM
All times are GMT -5. The time now is 06:43 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search