Page 1 of 3 123 LastLast
Results 1 to 15 of 33
  1. #1
    HIKAKIN's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    California
    Posts
    25
    Reputation
    10
    Thanks
    15
    My Mood
    Lurking

    AutoIT Scripts (Weeping Queen and Blood Lord Farm)

    So I got bored and decided to hand out my AutoIT scripts for Weeping Queen and Blood Lord, enjoy!
    (if you run into any issues (mainly because I haven't had anyone else test these for me) PM me so I can see what's wrong)
    My reason for making these scripts was to farm gold and AP (Especially from Blood Lord)


    My resolution: 1600x900 (fullscreen)
    Different Resolution Note: If you are using a different resolution and the mouse coordinates I used DON'T work for you (again to lazy/didn't have anyone else test run these), then either manually adjust them or use AU3Recorder in SciTE (SciTE can be found: here).

    1. Open/Create a blank script,
    2. Click Tools>AU3Recorder,
    3. Start recording, click where the START and REPLAY (Where it shows Money/EXP/AP) would be, stop recording and replace my coords with whatever you got.

    --------------------------
    --Prerequisites
    -You WILL require "Paper Mobs HFS Mod."
    -Will need binds for HostTimescale, Skiplevel, & Spears (any).
    -AutoIT (Google it) and SciTE (SciTE can be found: here) to Edit and Build the scripts.
    --------------------------

    Note: My scripts come with Hotkeys to Pause (z) and Start (x) the script.
    In other words you have to press "x" to START the script and you can toggle pause on and off by pressing "z".
    You can change these hotkeys by changing them in lines 2 and 3 of the script.

    ALSO; The SLeep timings may have to be adjusted depending on how fast your computer loads maps.

    --------------------------

    1.) Weeping Queen Script
    a.) This script uses "host_timescale 3" and "cc_set_sub_weapon (anyspears)"
    b.) Change line #17 to your (hosttimescale) bind.
    c.) Change line #19 to your (spears) bind.

    Code:
    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 TogglePause()
        $Paused = NOT $Paused
        While $Paused
            sleep(100)
            ToolTip('Script is PAUSED, press "z" to UNPAUSE',0,0)
        WEnd
        ToolTip("")
    EndFunc
    --------------------------

    2.) Blood Lord Script
    a.) This script uses "host_timescale 3" and "changelevel 2"
    b.) Change line #17 and #20 to your (hosttimescale) bind.
    c.) Change line #19 to your (skiplevel) bind.

    Note: Some issues I run into is either lag causing the timings to become unsynched and staying stuck in mission until I manually reset it or with my character missing the Blood Lord while Kicking and the same issue occurring.

    This script also (usually) works going in without weapons since it spams kick long enough to reach the Blood Lord (again, usually)

    Code:
    Global $Paused
    HotKeySet("{z}", "TogglePause")
    HotKeySet("{x}", "Blood")
    
    ; Ignore;
    While 1
    	WinWaitActive("Vindictus","")
    WEnd
    ;;
    
    ; Will infinitly spam Blood Lord (Until you stop it or some other unexpected error occurs such as lag D:) ;
    Func Blood()
    	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(10000)
    		Send("{NUMPAD9}") ;Set this to whatever you have you Skip Level command bound to.
    		Send("{NUMPADDIV}") ; Set this to whatever you bound "host_timescale 3" to. Must be 3 unless you readjust the sleep times.
    		Sleep(5000)
    		Send("{w down}") ; Will move forward for two (2) seconds to trigger cutscene. YOU MUST BE @ TIMES 3 SPEED (If not adjust the SLeep times)
    		Sleep(2000)
    		Send("{w up}")
    		Sleep(6700)
    		Send("{w down}{d}{d}{d}{d}{d}") ; Will move forward and start kicking slightly before arriving to the Blood Lord.
    		Sleep(1300)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{r}")
    		Sleep(500)
    		Send("{w up}")
    		Sleep(62100) ; This is the time it takes until the Mission Successful menu shows up.
    		MouseClick("left",205,709,1) ; Will click REPLAY on the box showing Earnings/EXP/AP.
    		Sleep(10000)
        WEnd
    EndFunc
    ;;
    
    Func TogglePause()
        $Paused = NOT $Paused
        While $Paused
            sleep(100)
            ToolTip('Script is PAUSED, press "z" to UNPAUSE',0,0)
        WEnd
        ToolTip("")
    EndFunc
    QQNote: I had to retype all of this 2 times since MPGH was having 408 errors. Dx

    Opinions/better alternatives for codes that I'm using would be greatly appreciated. Made these 2 in about 20-30 minutes (each) and I have basic knowledge with this program.
    Last edited by HIKAKIN; 05-08-2011 at 12:47 AM. Reason: Title Change

  2. The Following 14 Users Say Thank You to HIKAKIN For This Useful Post:

    busmokah (05-08-2011),Cosmic234 (05-07-2011),gmfl3 (05-27-2011),gohan2525 (05-08-2011),Jokohama (05-08-2011),Karleo (05-07-2011),LNeo (05-22-2011),lolidk (05-16-2011),LordInferno (05-15-2011),massivepoon (05-16-2011),Ninjal3unny (05-10-2011),Shiro583 (05-09-2011),thedoctor2010 (05-08-2011),vxnine (05-08-2011)

  3. #2
    LuminousArk's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    334
    Reputation
    38
    Thanks
    15
    My Mood
    Aggressive
    Wow. Script releases <3 thanks! but I won't be able to test this because of my resolution. I'll try later though.

  4. #3
    Niomieshon's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    01010101011101000110000101101000
    Posts
    872
    Reputation
    23
    Thanks
    56
    My Mood
    Bored
    Go get SCiTE.
    Anyway I don't want to have to use a console since I'm beyond the levels if laziness but nice release anyway!
    Quote Originally Posted by Hell_Demon View Post
    I'm on a mission to destroy all hacks <:

  5. #4
    Jutsushiki's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Stuck in my room working on Vindictus Farm++
    Posts
    9
    Reputation
    10
    Thanks
    44
    My Mood
    Goofy
    -Fixed, found alt.
    Last edited by Jutsushiki; 05-08-2011 at 12:36 AM.

  6. #5
    busmokah's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    214
    Reputation
    10
    Thanks
    52
    My Mood
    Devilish
    I thought future releases would require a high post count just to download.

  7. #6
    Karleo's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    CA
    Posts
    524
    Reputation
    24
    Thanks
    82
    Quote Originally Posted by busmokah View Post
    I thought future releases would require a high post count just to download.
    Everyone ruled out that was just a bad idea, as leechers can and would have easily exploited it/made this board spam.

  8. #7
    Jutsushiki's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Stuck in my room working on Vindictus Farm++
    Posts
    9
    Reputation
    10
    Thanks
    44
    My Mood
    Goofy
    Improved the Blood Lord script for abit.

    Code:
    Global $Pause
    HotKeySet("{F5}", "Pause")
    HotKeySet("{F6}", "bloodLord")
    
    While 1
    	WinWaitActive("Vindictus","")
    WEnd
    
    Func bloodLord()
    	While 1
    		Send("{esc}") ;// Enables mouse mode
    		Sleep(1000)
    		MouseClick("left",106,631,1) ; Clicks START to launch mission
    		Sleep(500)
    		Send("{F1}") ; Set this to whatever you bound "host_timescale 3" to. Must be 3 unless you readjust the sleep times.
    		Sleep(10000)
    		Send("{F2}") ; Set this to whatever you have you Skip Level command bound to.
    		Sleep(7000)
    		Send("{F3}") ;// Set this to whatever Spawns Spears command is bound to.
    		Send("{F1}") ; Set this to whatever you bound "host_timescale 3" to. Must be 3 unless you readjust the sleep times.
    		Send("{w down}") ; Will move forward for two (2) seconds to trigger cutscene. YOU MUST BE @ TIMES 3 SPEED (If not adjust the SLeep times)
    		Sleep(2000)
    		Send("{w up}")
    		Sleep(7000)
    
    		$i = 0
    		While $i < 5
    			Send("{f}") ;// Throws spears for approx. 5 (about Blood Lord's spawn stuck time.)
    			$i = $i + 1
    			Sleep(400)
    		WEnd
    
    		Sleep(63000) ; This is the time it takes until the Mission Successful menu shows up.
    		MouseClick("left",197,708,1) ; Will click REPLAY on the box showing Earnings/EXP/AP.
    		Sleep(15000)
    	WEnd
    EndFunc
    
    Func Pause()
    	$Pause = NOT $Pause
    	While $Pause
    		sleep(100)
    		ToolTip('Script is PAUSED, press F5 to UNPAUSE',0,0)
    	WEnd
    	ToolTip("")
    EndFunc

  9. The Following 2 Users Say Thank You to Jutsushiki For This Useful Post:

    HIKAKIN (05-08-2011),lazhras (05-08-2011)

  10. #8
    busmokah's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    214
    Reputation
    10
    Thanks
    52
    My Mood
    Devilish
    Quote Originally Posted by Karleo View Post
    Everyone ruled out that was just a bad idea, as leechers can and would have easily exploited it/made this board spam.
    You guys have the power to delete post/threads and leeched files. x.x.. And leeched files have to be approved first anyway.
    Last edited by busmokah; 05-08-2011 at 01:06 AM.

  11. #9
    HIKAKIN's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    California
    Posts
    25
    Reputation
    10
    Thanks
    15
    My Mood
    Lurking
    Quote Originally Posted by Jutsushiki View Post
    Improved the Blood Lord script for abit.

    Code:
    $i = 0
    		While $i < 5
    			Send("{f}") ;// Throws spears for approx. 5 (about Blood Lord's spawn stuck time.)
    			$i = $i + 1
    Oooo I never knew you could make it repeat a command up until a certain point.
    Awesome, thank you.

  12. #10
    Niomieshon's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    01010101011101000110000101101000
    Posts
    872
    Reputation
    23
    Thanks
    56
    My Mood
    Bored
    I still think its a good idea. Then again, I'm not that bright
    Quote Originally Posted by Hell_Demon View Post
    I'm on a mission to destroy all hacks <:

  13. #11
    Jutsushiki's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Stuck in my room working on Vindictus Farm++
    Posts
    9
    Reputation
    10
    Thanks
    44
    My Mood
    Goofy
    Currently working on different raids

    Polar Bear
    Rage Polar Bear
    Hidden
    Nightmare
    Blood Lord*

  14. #12
    auggie246's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    136
    Reputation
    10
    Thanks
    56
    Which version of paper should i use? friendly or unfriendly or either one is fine?

  15. #13
    Jutsushiki's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Stuck in my room working on Vindictus Farm++
    Posts
    9
    Reputation
    10
    Thanks
    44
    My Mood
    Goofy
    Quote Originally Posted by auggie246 View Post
    Which version of paper should i use? friendly or unfriendly or either one is fine?
    Im using the unfriendly one

  16. #14
    BigChicks's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    66
    Reputation
    11
    Thanks
    7
    My Mood
    Cynical
    wow are we seriously getting so lazy to run 1 min runs in the game? I mean.. seriously where is the fun in game if you don't actually play the game lol?

  17. #15
    Niomieshon's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    01010101011101000110000101101000
    Posts
    872
    Reputation
    23
    Thanks
    56
    My Mood
    Bored
    ^ Getting money so you can enjoy it more

    (or sell it to a Vindictus gold selling website )
    Quote Originally Posted by Hell_Demon View Post
    I'm on a mission to destroy all hacks <:

Page 1 of 3 123 LastLast