Hide WoW menu

User Tag List

Thread: Hide WoW

Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    Beastslayer's Avatar Active Member
    Reputation
    46
    Join Date
    Dec 2006
    Posts
    235
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Hide WoW

    This is probably a repost, but it's a program that hides WoW when you press F9, it's for those of you who aren't supposed to be playing WoW, like at work when your boss walks in. You press F9 and WoW disappears completely, not even on your taskbar if you look. Then when you press F10 it reappears, and IS on your taskbar. It's pretty useful. It's attached to this post, and the scan results prove it's safe. The one that pops up as suspicious I have no idea why. Here's the link to the scan: http://www.virustotal.com/vt/en/resu...5eaaace44c88b6
    You could even use this in your auto-it script to make it more undetectable to blizzard, and to make it seem like you are not using a bot.

    This is the script
    Code:
    HotKeySet("{F9}", "hide") 
    HotKeySet("{F10}", "show") 
    AutoItSetOption("WinTitleMatchMode", 4) 
    While 1 
       Sleep(1000) 
    WEnd 
     
    Func hide() 
       Global $Show = 0 
       Global $handle = WinGetHandle("classname=GxWindowClassD3d") 
       WinSetState($handle, "", @SW_MINIMIZE) 
       WinSetState($handle, "", @SW_HIDE) 
       If @error Then 
          MsgBox(0, "error", "couldnt find WoW") 
       Else 
          While 1 
             $unique = Random(1, 4, 1) 
             If $unique = 1 Then 
                ControlSend($handle, "", "", "{UP DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{UP UP}") 
                ControlSend($handle, "", "", "{DOWN DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{DOWN UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             ElseIf $unique = 2 Then 
                ControlSend($handle, "", "", "{RIGHT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{RIGHT UP}") 
                ControlSend($handle, "", "", "{LEFT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{LEFT UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             ElseIf $unique = 3 Then 
                ControlSend($handle, "", "", "{DOWN DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{DOWN UP}") 
                ControlSend($handle, "", "", "{UP DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{UP UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             ElseIf $unique = 4 Then 
                ControlSend($handle, "", "", "{LEFT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{LEFT UP}") 
                ControlSend($handle, "", "", "{RIGHT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{RIGHT UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             EndIf 
             If $Show > 0 Then ExitLoop 
          WEnd 
       EndIf 
    EndFunc   ;==>hide 
     
    Func show() 
       Global $Show = 1 
       WinSetState("World of Warcraft", "", @SW_SHOW) 
       WinSetState("World of Warcraft", "", @SW_MAXIMIZE) 
       WinActivate($handle, "") 
    EndFunc   ;==>show
    Enjoy not getting work done at work!
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce this information on any other site without written permission from both the poster and MMOwned.com
    Attached Files Attached Files
    Last edited by Beastslayer; 04-09-2007 at 04:11 PM.

    Hide WoW
  2. #2
    TehAvatar's Avatar Member
    Reputation
    60
    Join Date
    Mar 2007
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    Originally Posted by Beastslayer
    This is probably a repost, but it's a program that hides WoW when you press F9, it's for those of you who aren't supposed to be playing WoW, like at work when your boss walks in. You press F9 and WoW disappears completely, not even on your taskbar if you look. Then when you press F10 it reappears, and IS on your taskbar. It's pretty useful. It's attached to this post, and the scan results prove it's safe. The one that pops up as suspicious I have no idea why. Here's the link to the scan: http://www.virustotal.com/vt/en/resu...5eaaace44c88b6
    You could even use this in your auto-it script to make it more undetectable to blizzard, and to make it seem like you are not using a bot.

    This is the script
    Code:
    HotKeySet("{F9}", "hide") 
    HotKeySet("{F10}", "show") 
    AutoItSetOption("WinTitleMatchMode", 4) 
    While 1 
       Sleep(1000) 
    WEnd 
     
    Func hide() 
       Global $Show = 0 
       Global $handle = WinGetHandle("classname=GxWindowClassD3d") 
       WinSetState($handle, "", @SW_MINIMIZE) 
       WinSetState($handle, "", @SW_HIDE) 
       If @error Then 
          MsgBox(0, "error", "couldnt find WoW") 
       Else 
          While 1 
             $unique = Random(1, 4, 1) 
             If $unique = 1 Then 
                ControlSend($handle, "", "", "{UP DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{UP UP}") 
                ControlSend($handle, "", "", "{DOWN DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{DOWN UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             ElseIf $unique = 2 Then 
                ControlSend($handle, "", "", "{RIGHT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{RIGHT UP}") 
                ControlSend($handle, "", "", "{LEFT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{LEFT UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             ElseIf $unique = 3 Then 
                ControlSend($handle, "", "", "{DOWN DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{DOWN UP}") 
                ControlSend($handle, "", "", "{UP DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{UP UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             ElseIf $unique = 4 Then 
                ControlSend($handle, "", "", "{LEFT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{LEFT UP}") 
                ControlSend($handle, "", "", "{RIGHT DOWN}") 
                Sleep(100 + Random(1, 50, 1)) 
                ControlSend($handle, "", "", "{RIGHT UP}") 
                Sleep(200000 + Random(5000, 15000, 1)) 
             EndIf 
             If $Show > 0 Then ExitLoop 
          WEnd 
       EndIf 
    EndFunc   ;==>hide 
     
    Func show() 
       Global $Show = 1 
       WinSetState("World of Warcraft", "", @SW_SHOW) 
       WinSetState("World of Warcraft", "", @SW_MAXIMIZE) 
       WinActivate($handle, "") 
    EndFunc   ;==>show
    Enjoy not getting work done at work!
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce this information on any other site without written permission from both the poster and MMOwned.com


    Very nice! +rep

  3. #3
    Flying Piggy's Avatar Banned
    Reputation
    1169
    Join Date
    Jan 2007
    Posts
    2,286
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    /attachement approved .
    Nice program Beastslayer .

  4. #4
    motokid985's Avatar Member
    Reputation
    2
    Join Date
    Jan 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    I can see myself using this very shortly

  5. #5
    fenga's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    is there a way to change it from F9 ? cus thats the button i use For ventrilo Push to talk button :P... even tho i maybe should change that so it easier to hit when i tank,... But ANYWAY...

    EDit: i just saw the top of the code ... >.< sorry its late here :P

    Second Edit: i was sure i could just right click on my desktop and say new exe and then put the code into it... buut apprently i cant... my brother could prolly show me but he's not around atm so i wonder if anyone can tell me how you do it ???

    Thanks! in advance
    Last edited by fenga; 04-09-2007 at 06:58 PM.

  6. #6
    sean122's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    You kind of confused me, is this bannable or no? Cause you said it makes it undetectable by blizzard or somthing.

  7. #7
    Beastslayer's Avatar Active Member
    Reputation
    46
    Join Date
    Dec 2006
    Posts
    235
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    @fenga: it's an autoscript code, not exe. you use a different program to make it an exe. just download the attachment.

    @Flying Piggy: thanks

    @sean122: no it's not bannable, it's an autoit code. it should be 100% undetectable.

  8. #8
    fenga's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    AAHHH im such a noob.... i think i need to go to sleep now... >.<

  9. #9
    lag's Avatar The ERP Chicken
    Reputation
    453
    Join Date
    Jan 2007
    Posts
    639
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    +rep

    ....I wish there was a way to do this on a mac btw, HINT HINT :P

    Marlo was here || idusy was here cause he feels left out || Im in ur sig , shardin ur letters - Flying Piggy || Errage was here- Wait, what? || ''Edge was here'' imo =P || Dragonshadow's name makes this too long |2d is hot|

  10. #10
    Beastslayer's Avatar Active Member
    Reputation
    46
    Join Date
    Dec 2006
    Posts
    235
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    i dont know anything about mac... at all.. i dont even know what kind of things you can program on a mac lol.

  11. #11
    Deathgovanz's Avatar Member
    Reputation
    2
    Join Date
    Sep 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    Buwahahah maybe i an use this shit in my school, damn network administrators always looking to see what im doing
    All I'm hearing is, "Blah blah blah, I suck, blah blah blah, I'm a noob, blah blah blah, You pwn me so imma QQ

  12. #12
    lag's Avatar The ERP Chicken
    Reputation
    453
    Join Date
    Jan 2007
    Posts
    639
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    Is there anyway you can make this disable the sound as well? I usually have play sound in background on, and I could turn it off but it would be really cool if this did that as well

    Don't MAKE me bust out AutoIt and do it myself

    Marlo was here || idusy was here cause he feels left out || Im in ur sig , shardin ur letters - Flying Piggy || Errage was here- Wait, what? || ''Edge was here'' imo =P || Dragonshadow's name makes this too long |2d is hot|

  13. #13
    ladangelo202's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    yes yes i am a noob but can u please tell me how to use that script.

  14. #14
    Angel7Slayer's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    very very nice, i hate having to alt-tab, right click-close out of WoW whenever im not supposed to be playing xD
    I'm wearing a black suit....one....two...three....NOT!

  15. #15
    Snuggles's Avatar Member
    Reputation
    4
    Join Date
    Apr 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Hide WoW

    you just ****ing owned the world
    +rep!

    yipppeeeeeeeeeeeeeeeeeee!!!!!!!11111oneoneoneoneoneleven

Page 1 of 3 123 LastLast

Similar Threads

  1. Help hiding wow from my dad
    By RichyG in forum World of Warcraft General
    Replies: 7
    Last Post: 12-01-2006, 09:09 PM
  2. Hide WoW Completely
    By Sym in forum World of Warcraft Guides
    Replies: 15
    Last Post: 11-06-2006, 12:38 AM
  3. Hide Wow From Parents
    By rudez in forum World of Warcraft General
    Replies: 12
    Last Post: 10-23-2006, 04:39 AM
  4. Hide wow completly
    By thehacker in forum World of Warcraft General
    Replies: 4
    Last Post: 10-22-2006, 07:04 PM
  5. Hide WoW Completely
    By Sym in forum World of Warcraft Guides
    Replies: 0
    Last Post: 10-22-2006, 07:01 PM
All times are GMT -5. The time now is 10:55 PM. 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