Secrecy!  hide WoW instantly. menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 39
  1. #1
    Yazuak's Avatar Active Member
    Reputation
    123
    Join Date
    Mar 2007
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Secrecy! hide WoW instantly.

    Have you ever been diligently playing WoW at work, when suddenly an unwelcome co-worker happens to walk past your dingy/meticulous cubicle?

    No, neither have I, but i thought it would be a good intro.

    Anyway, I've created a new script in Autoit. I call it Secrecy...

    Basically, when you start it up it will give you a message.
    After that you can Press F2 to instantly hide wow.
    Hiding includes muting.

    I'll post the source code here, but also upload the exe for those who don't have autoit.

    Code:
    ;Created by Yazuak of MMOwned
    
    #NoTrayIcon
    
    $switch = 0
    $muted = 0
    
    HotKeySet("{F2}", "activate")
    Hotkeyset("{F3}","quit")
    
    if Not WinExists("World of Warcraft") Then
        MsgBox(0,"Error","Error: World of warcraft is not running, or the window's name is not 'World of Warcraft'.")
        Exit
    Else
        MsgBox(0,"Secrecy","Secrecy is now running.  press F2 to toggle the display of WoW.  Press F3 to exit the script.")
    EndIf
    
    func activate()
        if $switch = 1 Then
            $switch = 0
        Else
            $switch = 1
        EndIf
    EndFunc
    
    Func quit()
        Exit
    EndFunc
    
    Func main()
        if $switch Then
            if $muted = 0 Then
                ControlSend("World of Warcraft", "", "", "{ctrldown}")
                ControlSend("World of Warcraft", "", "", "s")
                ControlSend("World of Warcraft", "", "", "{ctrlup}")
                ControlSend("World of Warcraft", "", "", "{ctrldown}")
                ControlSend("World of Warcraft", "", "", "m")
                ControlSend("World of Warcraft", "", "", "{ctrlup}")
                $muted = 1
            Else
            EndIf
            WinSetState("World of Warcraft", "", @SW_HIDE)
        Else
            if $muted = 1 Then
                ControlSend("World of Warcraft", "", "", "{ctrldown}")
                ControlSend("World of Warcraft", "", "", "s")
                ControlSend("World of Warcraft", "", "", "{ctrlup}")
                ControlSend("World of Warcraft", "", "", "{ctrldown}")
                ControlSend("World of Warcraft", "", "", "m")
                ControlSend("World of Warcraft", "", "", "{ctrlup}")
                $muted = 0
            Else
            EndIf
            WinSetState("World of Warcraft", "", @SW_SHOW)
        EndIf
    EndFunc
    
    while 1
        main()
    WEnd
    
    ;Feel free to edit and improve apon my script.  Some credit would be nice too, if you are so inclined.
    Just a couple of tips:

    I mute wow with ctrl+s and ctrl+m, so if you have anything else bound to those keys it will probably screw up.

    Also, make sure you start Secrecy after you have started up WoW.

    One last thing: press F3 to exit the script. It will not show up on the system tray.

    Here is the download link:
    Filebeam - Free Fast File Hosting


    Secrecy!  hide WoW instantly.
  2. #2
    iradiation's Avatar Banned
    Reputation
    88
    Join Date
    Mar 2008
    Posts
    625
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is old as hell and i have one made to.

  3. #3
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rofl. There's like a million tools that can do this, and they're much better than this too. Furthermore, such a simple implementation is so stupidly easy to make I could probably write my own better one before yours finished downloading and unpacking.

  4. #4
    amynnet93's Avatar Active Member
    Reputation
    24
    Join Date
    Jul 2008
    Posts
    118
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not so good but keep up the umm "good" work?

  5. #5
    ~OddBall~'s Avatar Contributor
    Reputation
    207
    Join Date
    Jan 2008
    Posts
    1,156
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    .............but nice work anyway
    https://www.mmowned.com/forums/world-of-warcraft/guides/278302-selecting-bot-you.html - SELECTING THE BOT FOR YOU

    PHWOOOOAAAAAR - Parog was here. <3 <----Wtf's a Parog?

  6. #6
    gradu's Avatar Member
    Reputation
    11
    Join Date
    Nov 2007
    Posts
    72
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice work thanks

  7. #7
    Saridormi's Avatar Contributor
    Reputation
    307
    Join Date
    Mar 2007
    Posts
    556
    Thanks G/R
    19/17
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome

    I have my own version of this but meh :]

    +rep


  8. #8
    mrleolito's Avatar Member
    Reputation
    13
    Join Date
    Jul 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i use windowshiderplus .. there you can hide almoust every program .. and its a bug in it .. you cant acualy hide the program itself but if you select the programs .exe file you can i use this when im at a lan or somthing when you arent supose to download anything

  9. #9
    kilativ's Avatar Member
    Reputation
    8
    Join Date
    Oct 2008
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its ok i guess.A lgood laugh. il try it out.

  10. #10
    Yazuak's Avatar Active Member
    Reputation
    123
    Join Date
    Mar 2007
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, I'm sorry i disappointed everyone.

    I only made this because i was bored. + I'm not a god like Cypher is.

  11. #11
    [F]ear's Avatar Contributor
    Reputation
    165
    Join Date
    Jan 2008
    Posts
    656
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I hate flamers!
    I'll +rep you because it's not true, that you disappointed everyone.
    PROUD MEMBER OF WWW.FIXAPPLE.DK

  12. #12
    iradiation's Avatar Banned
    Reputation
    88
    Join Date
    Mar 2008
    Posts
    625
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you must update your sig to 53 rep.

  13. #13
    Dartena's Avatar Active Member
    Reputation
    19
    Join Date
    Aug 2008
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i'm going to +rep because it's a nice program, F*** the flamers

  14. #14
    Pwntzyou's Avatar Contributor
    Reputation
    264
    Join Date
    Dec 2007
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Too much flaming in this thread.
    +Rep for your hard work

    <3 MysterioussouL for the sig

  15. #15
    JoeBiden's Avatar Contributor
    Reputation
    153
    Join Date
    Aug 2007
    Posts
    498
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gj to OP

    @Cypher&Iradiation, just because you got a different pixel color on your name doesn't make you tha bestest personz on earth, so stop flaming something just because you consider yourself better

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 07:45 PM. 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