Close
Page 2 of 6 FirstFirst 1 2 3 4 ... LastLast
Showing results 11 to 20 of 52

Thread: Dualboxed

  1. #11

    Default

    so you love the script but won't use it.. is it just me or my paranoia about keylogging websites is tingling..??

  2. #12

    Default

    since when are AHK scripts in exe files???

    and what command would be given that would sync your targets between your characters without in-game macros? how does it know which character to assist? what if the 'main' dies? how do you switch over?

    seems a bit odd to me

  3. #13

    Default

    Quote Originally Posted by 'Knytestorme',index.php?page=Thread&postID=86274#p ost86274
    Sophos here on my work pc
    Completely off topics here (sorry). We run Sophos here at work, Have you had any problems with the ROUTERNT.EXE taking up all the CPU and memory? I've tried all the fixes for it, but over time (week, months) it always comes back.
    My YouTube Channel: https://www.youtube.com/channel/UCP9...AlyRcyYCHA-3ew
    Due to Blizzards position on Hong Kong, money > freedom. I stopped playing.

  4. #14

    Default

    Haven't seen that issue here, though we see the update just hang on a lot of our windows boxes for no apparent reason, usually gets fixed with a reboot and could be related to ZenWorks but no, never seen any 100% spikes on any workstations or in any of our labs.

    On topic, I'm still thinking I'm going to have to reformat this pc now...keylogger senses on overload and I don't really trust Sophos that much. Only thing that's got me less concerned is how tight our firewalls ar but still, better to be safe.

  5. #15

    Default

    Quote Originally Posted by 'keyclone',index.php?page=Thread&postID=86289#post 86289
    since when are AHK scripts in exe files???

    and what command would be given that would sync your targets between your characters without in-game macros? how does it know which character to assist? what if the 'main' dies? how do you switch over?

    seems a bit odd to me
    http://autohotkey.free.fr/docs/Scripts.htm

    According to that you can convert your script to a .exe, since AHK seems to be a specialized version of AutoIT (or at least horribly similar) that feature makes sense...

    Code:
    ; <COMPILER: v1.0.47.6>
    #Persistent
    #IfWinActive, World of Warcraft
    SetTitleMatchMode, 3
    SetKeyDelay, -1
    Thread, interrupt, 0
    SetBatchLines, -1
    
    WoW = World of Warcraft
    WinGet, WinID, List, %WoW%
    ActiveWin := WinExist("A")
    LastFollow := A_TickCount - 1000
    
    
    ~r::
    ~/::
    	Suspend, On
    Return
    ~Enter::
    ~NumpadEnter::
    	Suspend, Toggle
    Return
    
    
    ~1::
    ~2::
    ~3::
    ~4::
    ~5::
    ~6::
    ~7::
    ~8::
    ~9::
    ~0::
    ~-::
    ~=::
    	StringTrimLeft, ThisKey, A_ThisHotKey, 1
    	ThisID := WinExist("A")
    	If (ThisID != ActiveWin)
    	{
    		SendInput ^![
    		ActiveWin := ThisID
    	}
    	Loop, %WinID%
    		If (ThisID != WinID%A_Index%)
    			ControlSend,, {Control Down}{Alt Down}\{Alt Up}{Control Up}{%ThisKey%}, % "ahk_id" WinID%A_Index%
    Return
    
    
    ~x::
    ~z::
    ~Space::
    	StringTrimLeft, ThisKey, A_ThisHotKey, 1
    	ThisID := WinExist("A")
    	If (ThisID != ActiveWin)
    	{
    		SendInput ^![
    		ActiveWin := ThisID
    	}
    	Loop, %WinID%
    		If (ThisID != WinID%A_Index%)
    			ControlSend,, {%ThisKey%}, % "ahk_id" WinID%A_Index%
    Return
    
    
    ~q::
    ~w::
    ~e::
    ~a::
    ~s::
    ~d::
    ~Up::
    ~Down::
    ~Left::
    ~Right::
    ~XButton1::
    	ThisID := WinExist("A")
    	If (ThisID != ActiveWin)
    	{
    		SendInput ^![
    		ActiveWin := ThisID
    	}
    	If (A_TickCount - LastFollow > 1000)
    		Loop, %WinID%
    			If (ThisID != WinID%A_Index%)
    			{
    				ControlSend,, {Control Down}{Alt Down}]{Alt Up}{Control Up}, % "ahk_id" WinID%A_Index%
    				LastFollow := A_TickCount
    			}
    Return
    Thats the contents of the AHK executable... at first blush I don't see anything magic and definitely not anything that looks like it would cause you issues... As for switching who's main it does it based on window focus and sending a new keystroke to the partnered UI mod which says "i'm the master now" and sets the other instances to follow.

    That last part IS an assumption, as I've not cracked the LUA, but thats my 30 seconds of insight into this.
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  6. #16

    Default

    Quote Originally Posted by 'Knytestorme',index.php?page=Thread&postID=86295#p ost86295
    On topic, I'm still thinking I'm going to have to reformat this pc now...keylogger senses on overload and I don't really trust Sophos that much. Only thing that's got me less concerned is how tight our firewalls ar but still, better to be safe.
    It's not a keylogger. Google is your friend, don't panic, don't freak out, and FFS don't run executables you don't trust BEFORE you google and use your head .
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  7. #17

    Default

    what decompiler did you use for that Zant, as I'm taking it that's the output from decomping the exe in question?

  8. #18

    Default

    Quote Originally Posted by 'zanthor',index.php?page=Thread&postID=86298#post8 6298

    Quote Originally Posted by 'Knytestorme',index.php?page=Thread&postID=86295#p ost86295
    On topic, I'm still thinking I'm going to have to reformat this pc now...keylogger senses on overload and I don't really trust Sophos that much. Only thing that's got me less concerned is how tight our firewalls ar but still, better to be safe.
    It's not a keylogger. Google is your friend, don't panic, don't freak out, and FFS don't run executables you don't trust BEFORE you google and use your head .
    hehehe, sound advice....no way in hell would I have done it at home, but at work, well.....

  9. #19

    Default

    Quote Originally Posted by 'Knytestorme',index.php?page=Thread&postID=86299#p ost86299
    what decompiler did you use for that Zant, as I'm taking it that's the output from decomping the exe in question?
    exe2ahk.exe downloaded from AutoHotKeys website.

    http://www.autohotkey.com/forum/topic6973.html

    Found the link in that thread after a google.
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  10. #20

    Default

    thing that fired off my spidey-sense was that the guy who wrote it, confessed to being a Glider user who got his accounts banned because of it.

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •