Results 1 to 9 of 9
  1. #1
    theundead's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    1

    Does autoit script still work ?

    As title said. Wonder if autoit script still work. Thank You.

  2. #2
    maddoggy00's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Philly
    Posts
    3,413
    Reputation
    637
    Thanks
    5,336
    Quote Originally Posted by theundead View Post
    As title said. Wonder if autoit script still work. Thank You.
    Yep .

    As of 9/17, I will be away for a few days due to medical reasons. Should be back up soon. Please refer to a GM or other mods in whatever particular section you need help with.



    Quote Originally Posted by Nico View Post
    I'm playing legit with my hacks
    MSN/Email/Skype: maddoggy00@aol.com
    If you add me on skype without an explicit message stating who you are on MPGH, you will be denied and blocked.

    Feel free to donate if I helped you earn some $$

    Tutorials for consoles and hacks

    Woo.exe Oath Mode with Next Map option, Follow-Bot, Master map (runs any S1 map), Two Moons, Mining. Requires a .dll with hacks for full functionality.

  3. #3
    theundead's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by maddoggy00 View Post

    Yep .
    Hmmm, Can you help me out ? I tried using one of the previous scritpts, but it doesn't seem to be working at all.

  4. #4
    maddoggy00's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Philly
    Posts
    3,413
    Reputation
    637
    Thanks
    5,336
    Quote Originally Posted by theundead View Post
    Hmmm, Can you help me out ? I tried using one of the previous scritpts, but it doesn't seem to be working at all.
    Not working how?

    As of 9/17, I will be away for a few days due to medical reasons. Should be back up soon. Please refer to a GM or other mods in whatever particular section you need help with.



    Quote Originally Posted by Nico View Post
    I'm playing legit with my hacks
    MSN/Email/Skype: maddoggy00@aol.com
    If you add me on skype without an explicit message stating who you are on MPGH, you will be denied and blocked.

    Feel free to donate if I helped you earn some $$

    Tutorials for consoles and hacks

    Woo.exe Oath Mode with Next Map option, Follow-Bot, Master map (runs any S1 map), Two Moons, Mining. Requires a .dll with hacks for full functionality.

  5. #5
    theundead's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by maddoggy00 View Post

    Not working how?
    Global $Paused
    HotKeySet("z", "TogglePause")
    HotKeySet("x", "Test")


    ; Ignore;
    While 1
    WinWaitActive("Vindictus","")
    WEnd
    ;;

    ; Will infinitly spam Weeping Queen (Until you stop it or some other unexpected error occurs such as lag D ;
    Func Test()
    While 1
    Sleep(1000)
    MouseClick("left",89,756,1) ; Clicks START to launch mission
    Sleep(500)
    Send("{NUMPADDIV}") ; Set this to whatever you bound "host_timescale 3" to. Must be 3 unless you readjust the sleep times.
    Sleep(18000)
    Send("{NUMPAD7}") ; Set this to whatever you bound any sort of Spears to.
    Sleep(500)
    Send("{f}") ; Activates the aimmer
    Sleep(500)
    Send("{e}") ; Autolocks to Weeping Queen
    Sleep(70000)
    MouseClick("left",205,709,1) ; Will click REPLAY on the box showing Earnings/EXP/AP.
    Sleep(10000)
    WEnd
    EndFunc
    ;;

    Func pause()
    MsgBox(0, "message box", "Bot is paused. Hit OK to resume")
    sleep(1000)
    WinSetState("vindictus","",@SW_SHOW)
    sleep(1000)
    EndFunc

    Is this script correct ?

  6. #6
    maddoggy00's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Philly
    Posts
    3,413
    Reputation
    637
    Thanks
    5,336
    Well, the sleep times are probably not correct. I assume you don't have a console, so you can't use host_timescale. So the 18000 probably should be closer to 60000. And likewise with 70000 and 10000 at the end; the 70k must be increased because of the in-game system message that makes you wait if you finish the battle too quickly, and 10k because there's frequently lag that causes a boat reload to take 20-25s. If you have ohk, then setting "auto-aim secondary weapons" will make Send("{f}") shoot a spear. If it will take more than one spear, then you'll want to do something like

    For $throwspear = 1 to 5
    Send("{f}")
    sleep(2000)
    Next

    And also, all the mouseclick positions in this script are for only one particular full-screen setting, so you'll need to mimic what the scripter made it for, or modify the locations yourself.

    As of 9/17, I will be away for a few days due to medical reasons. Should be back up soon. Please refer to a GM or other mods in whatever particular section you need help with.



    Quote Originally Posted by Nico View Post
    I'm playing legit with my hacks
    MSN/Email/Skype: maddoggy00@aol.com
    If you add me on skype without an explicit message stating who you are on MPGH, you will be denied and blocked.

    Feel free to donate if I helped you earn some $$

    Tutorials for consoles and hacks

    Woo.exe Oath Mode with Next Map option, Follow-Bot, Master map (runs any S1 map), Two Moons, Mining. Requires a .dll with hacks for full functionality.

  7. The Following 2 Users Say Thank You to maddoggy00 For This Useful Post:

    theundead (01-17-2013),uglyman95 (01-17-2013)

  8. #7
    theundead's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by maddoggy00 View Post
    Well, the sleep times are probably not correct. I assume you don't have a console, so you can't use host_timescale. So the 18000 probably should be closer to 60000. And likewise with 70000 and 10000 at the end; the 70k must be increased because of the in-game system message that makes you wait if you finish the battle too quickly, and 10k because there's frequently lag that causes a boat reload to take 20-25s. If you have ohk, then setting "auto-aim secondary weapons" will make Send("{f}") shoot a spear. If it will take more than one spear, then you'll want to do something like

    For $throwspear = 1 to 5
    Send("{f}")
    sleep(2000)
    Next

    And also, all the mouseclick positions in this script are for only one particular full-screen setting, so you'll need to mimic what the scripter made it for, or modify the locations yourself.

    Hmm, Thank you very much. Let me try if it will work this time.

    ---------- Post added at 11:34 PM ---------- Previous post was at 11:24 PM ----------

    hmm for some reason, its not running even though i used run as administrator

  9. #8
    maddoggy00's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Philly
    Posts
    3,413
    Reputation
    637
    Thanks
    5,336
    Make sure your AV isn't blocking the process. Also putting
    #RequireAdmin
    At the top of your script may help.


    Edit:
    You may also want to add something like

    HotKeySet("{END}", "Stop")

    Func stop()
    Exit
    EndFunc ;==>stop

    Last edited by maddoggy00; 01-18-2013 at 09:13 AM.

    As of 9/17, I will be away for a few days due to medical reasons. Should be back up soon. Please refer to a GM or other mods in whatever particular section you need help with.



    Quote Originally Posted by Nico View Post
    I'm playing legit with my hacks
    MSN/Email/Skype: maddoggy00@aol.com
    If you add me on skype without an explicit message stating who you are on MPGH, you will be denied and blocked.

    Feel free to donate if I helped you earn some $$

    Tutorials for consoles and hacks

    Woo.exe Oath Mode with Next Map option, Follow-Bot, Master map (runs any S1 map), Two Moons, Mining. Requires a .dll with hacks for full functionality.

  10. #9
    beserkknight's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    1
    How do I get autoit to continuously send a key?

    For example, I want to move my character 10 paces to the right, how would I go about doing that? I tried a loop and I don't think that's what I'm looking for...

    Side note, I used 43000 for sleep after clicking start, and 275000 after you kill wq. I'm trying to add a create boat function but I can't get my character to move.

    nvm, got it!
    Last edited by beserkknight; 01-19-2013 at 10:21 AM.

Similar Threads

  1. Does Zero Gear still work?
    By Basser in forum Call of Duty Modern Warfare 2 Help
    Replies: 3
    Last Post: 01-16-2010, 08:52 AM
  2. Does window mode still work for you?
    By Danfar in forum Combat Arms Discussions
    Replies: 15
    Last Post: 11-26-2009, 05:01 PM
  3. Does TnT hacks still work for anybody?
    By monsterthejuggalo in forum Combat Arms Discussions
    Replies: 10
    Last Post: 11-15-2009, 11:55 PM
  4. Does Packet Edit still work (With Bypass 2.5)
    By Erotic in forum Combat Arms Hacks & Cheats
    Replies: 0
    Last Post: 08-08-2008, 07:00 PM
  5. does map switch still work
    By ace2high55 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-06-2007, 08:11 PM