How to implement GM Shouts (a noob approach)

Results 1 to 2 of 2
  1. #1
    Goodbye chrissdegrece is offline
    MemberRank
    Oct 2009 Join Date
    GreeceLocation
    1,015Posts

    How to implement GM Shouts (a noob approach)

    Here is how to implement GM shouts in a NOOB way.

    Just install Autohotkey and compile this code, it will send a GM shout every 5 seconds (5000 milliseconds).

    Now run it and login to game.

    The script is enabled with Caps-Lock.

    Modify it at will.

    Code:
    IfWinNotActive, pRoJeCtAaA, , WinActivate, pRoJeCtAaA, 
    Loop
    {
       Loop
       {
       GetKeyState, state,CapsLock,T
    
       if state = U 
          break
        	  
       Send G
       Send @WSHOUT/Hey this is a GM Shout{Enter}
       Send {Esc}
       Sleep, 5000
       }
    }


  2. #2
    @work onyourrisk is offline
    MemberRank
    Jan 2008 Join Date
    IndiaLocation
    706Posts

    Re: How to implement GM Shouts (a noob approach)

    Nice , i found many videos on youtube about how to make a "chat - spammer"
    we may you any of them : http://www.google.co.in/#hl=en&sourc...ffa43166db4145



Advertisement