Jump to content

Heffernan

Initiates
  • Posts

    3
  • Joined

  • Last visited

Reputation

0 Neutral

About Heffernan

  • Rank
    (0) Nub
    (0) Nub
  1. i tried this Quest on the Computer Version, i move the Fart behind him, but nothing happens, the right mouse button should appear and be pressed, but he doesnt appear and pressing him will show "FAILED" and nothin g sparkles or anything. i had like 100 tries so far and then quit.
  2. lol what would i keylog? SouthPark desnt need any login also check wikipedia http://en.wikipedia.org/wiki/AutoHotkey
  3. Hello, as many have noticed Keybinding doesnt work in SP as its a Console Port, so i wrote a simple guide to have Auto-It use the Arrow Buttons. Download and Install: http://ahkscript.org/download/1.1/AutoHotkey111403_Install.exe its a simple tool that lets you redifine what is done on a button press now load the programm, click on "File > Edit Script" and insert the following #InstallKeybdHook #InstallMouseHook #Persistent #SingleInstance force SetBatchLines, -1 #UseHook On settimer, hookCheck, 1000 return ; these are just test hotkeys which will make ; Douchebag fart ; replace with your own. Up::w Down::s Left::a Right::d Delete::Space RShift::LShift send {click R} return ; This hotkey will fire if AHKs hook is still ; positioned before south parks $vkFF:: lastTick := A_TickCount return hookCheck: ; Raise send level so will activate AHKs own hotkeys sendlevel 1 ; send a non-existent key which will do nothing ; must be sendEvent - sendInput removes the hook during the send ; command, thereby preventing us from detecting it SendEvent {VKFF} sleep 200 ; If AHK hasn't detected the sent key, ; then AHK's hook is now after SP:SoT and hotkeys wont work ; either reload the script or perform a sendInput ; sendInput removes and then reinstalls AHKS low ; level hook. if (A_TickCount - lastTick > 1500) sendInput {VKFF}{click 0} ; could replace this with a reload ;reload return simple save the Textfile, and use "File > Reload Script" there u have it W = UP S = DOWN A = LEFT D = RIGHT DELETE = ACTION SHiFT RIGHT = SHIFT LEFT Done.
×
×
  • Create New...