Results 1 to 14 of 14
  1. #1
    cyTOist's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Bored

    Ingkara Background AutoIt3 Script

    Credit to omagad00 and Nunya

    This is my AutoIt3 Ingkara script with bits and pieces of omagad00's display script

    Resolution:
    1366x768

    Recommended files to use with:
    ezbossx_ep7
    My Perm Binds ep7

    SET VINDICTUS TO RUN IN CUSTOM FULL SCREEN INORDER FOR IT TO WORK CORRECTLY!

    Code:
    ;Credit Display, ControlClick, and ControlSend awareness to omagad00
    ;Credit HFS binds to Nunya
    ;This majority of the fancy smancy scripting is the work of omagad00 I just used his work and made an Ingkara script out of it.
    
    ;!!Resolution is 1366x768!!
    ;!!Run Vindictus in Custom Fullscreen Mode in order for mouse clicks to register!!
    ;!!Suggested use accompanied by ezbossx_ep7 (Nunya) and My Perm Binds ep7 (Nunya)!!
    
    ;Home starts the bot
    ;End stops the bot
    ;F9 shows display of number of runs and time the bot has been running
    
    AutoItSetOption("MouseCoordMode", 0)
    
    HotKeySet("{HOME}", "Ingkara")
    HotKeySet("{END}", "End")
    HotKeySet("{F9}", "DisplayRuns") 
    
    $run = 1
    $timer = 0
    $diff = 0
    $show = false
    
    While 1
    Sleep(1)
    WEnd
    
    Func Ingkara()
    $timer = TimerInit()
    While 1
    If($show) then
    $diff = Int(TimerDiff($timer) / 1000)
    ToolTip("Run #" & $run & " - Time running: " & Time($diff), 0, 0)
    EndIf
    ControlClick("Vindictus", "", "", "left", 3, 95, 627) ; Click Start Button [EDIT THIS IF YOU ARE RUNNING A DIFFERENT RESOLUTION format: number of clicks, x, y]
    ControlSend("Vindictus", "", "", "{Numpad6}") ; <host_timescale 3>
    	Sleep(8000);------------------------------------------------------------------LOADING TO BATTLE QUEST DELAY (MILLISECONDS) [EDIT THIS IF YOU ARE NOT TRANSFORMING AFTER BATTLE QUEST LOADING]
    ControlSend("Vindictus", "", "", "{NUMPADSUB}") ; Changelevel
    	Sleep(100)
    ControlSend("Vindictus", "", "", "{NUMPADSUB}") ; Changelevel
    	Sleep(100)
    ControlSend("Vindictus", "", "", "{NUMPADSUB}") ; Changelevel
    	Sleep(5000)
    ControlSend("Vindictus", "", "", "{F7}") ; Transform Into Paladin
    	Sleep(500)
    ControlSend("Vindictus", "", "", "{7}") ; <fine_bomb 999>
    	Sleep(500)
    ;Spawn Ingkara-----------------------------------------------------
    ControlSend("Vindictus", "", "", "{NUMPAD8}")
    	Sleep(33)
    ControlSend("Vindictus", "", "", "{NUMPAD9}")
    ControlSend("Vindictus", "", "", "{Numpad6}") ; <host_timescale 3>
    	Sleep(167)
    ControlSend("Vindictus", "", "", "{NUMPAD8}")
    ControlSend("Vindictus", "", "", "{Numpad6}") ; <host_timescale 3>
    	Sleep(33)
    ControlSend("Vindictus", "", "", "{NUMPAD9}")
    	Sleep(500)
    ;----------------------------------------------------Ingkara Spawned
    
    ;Kill Ingkara-------------------------------------------------------
    ControlSend("Vindictus", "", "", "f") ; Take Out Fine Small Bomb
    	Sleep(500)
    ControlSend("Vindictus", "", "", "e") ; Throw Fine Small Bomb
    	Sleep(16000)
    ControlSend("Vindictus", "", "", "{Numpad6}") ; <host_timescale 3>
    ;-------------------------------------------------------Ingkara Dead
    
    ;Gold Looting Attempt-----------------------------------------------
    ControlSend("Vindictus", "", "", "{NUMPAD8}")
    	Sleep(167)
    ControlSend("Vindictus", "", "", "{NUMPAD9}")
    	Sleep(167)
    ControlSend("Vindictus", "", "", "{Numpad6}") ; <host_timescale 3>
    ;------------------------------------------End Of Gold Looting Phase
    
    	Sleep(50000) ;------------------------------------------------------------------BATTLE COMPLETION SCREEN DELAY (MILLISECONDS) [EDIT THIS IF YOU ARE NOT HITTING REPLAY BUTTON]
    ControlClick("Vindictus", "", "", "left", 3, 195, 705) ; Click Replay Boat [EDIT THIS IF YOU ARE RUNNING A DIFFERENT RESOLUTION format: number of clicks, x, y]
    	Sleep(9000) ;;------------------------------------------------------------------LOADING TO BOAT DELAY (MILLISECONDS) [EDIT THIS IF THE BOT DOES NOT LOOP]
    $run += 1
    WEnd
    EndFunc
    
    Func DisplayRuns()
    $show = NOT $show
    If($show) then
    ToolTip("Run #" & $run & " - Time running: " & Time($diff), 0, 0)
    Else
    ToolTip("")
    EndIf
    EndFunc
    
    Func Time($sec)
    $hours = Int($sec / 3600)
    $minutes = Int(($sec - $hours * 3600) / 60)
    $seconds = $sec - $hours * 3600 - $minutes * 60
    Return StringFormat('%02d:%02d:%02d', $hours, $minutes, $seconds)
    EndFunc 
    
    Func End()
    Exit
    EndFunc
    Enjoy

    Thank me if this helped you <3

    VirusTotal: SCAN

    @Sid @Hell_Demon Please Approve~ its just a .au3
    Last edited by Nico; 07-25-2011 at 03:42 PM.

  2. The Following 3 Users Say Thank You to cyTOist For This Useful Post:

    element72 (06-14-2011),lardtree90 (06-14-2011),Sliss (06-14-2011)

  3. #2
    REAP's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    FL
    Posts
    644
    Reputation
    237
    Thanks
    219
    My Mood
    Mellow
    Cool ty been needing this rez for this script .

  4. #3
    Jabuuty671's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    21,229
    Reputation
    1468
    Thanks
    4,098
    Approved .


  5. #4
    element72's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    97
    Reputation
    10
    Thanks
    2
    there is no file in the first link. I think the uploader removed it.

  6. #5
    lardtree90's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    12
    Works like a charm and it's crazy fast and efficient. Thanks!

  7. #6
    cyTOist's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    Hrm I left it on over night and seems like the boat messes up (It loads to boat but you are still stuck in ingkara with him dead) I don't know anyway around it so yeah hopefully you guys have better luck

  8. #7
    cyTOist's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    OK Found the reason why the bot will mess up going to test some methods to fix the problem once fixed I'll release the new script

  9. #8
    Pie's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Michigan
    Posts
    6,911
    Reputation
    161
    Thanks
    3,296
    My Mood
    Bitchy
    Why'd you link nunya's ezbossx? He asked for the file to be removed, and btw there is gonna be an update tomorrow D:

  10. #9
    cyTOist's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    Quote Originally Posted by ILikePie550 View Post
    Why'd you link nunya's ezbossx? He asked for the file to be removed, and btw there is gonna be an update tomorrow D:
    Oh wow I didn't realize nunya removed his ezbossx ep7 lol thanks for pointing that out xD and yeah I know theres a patch tomorrow thats why I released the bot for people to get their ingkara's in and get some 5 stars before the patch.

  11. #10
    Pie's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Michigan
    Posts
    6,911
    Reputation
    161
    Thanks
    3,296
    My Mood
    Bitchy
    Quote Originally Posted by cyTOist View Post
    Oh wow I didn't realize nunya removed his ezbossx ep7 lol thanks for pointing that out xD and yeah I know theres a patch tomorrow thats why I released the bot for people to get their ingkara's in and get some 5 stars before the patch.
    Ez_kill still there, even though nunya asked it to be removed (never happened). There is always the squishy monster one I made D:
    -------
    Imma try to make the Updated Pie Bind right after patch. Only problem is that my internet is so dam slow so it's gonna take me a while to get the new hfs files.

  12. #11
    Sliss's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    153
    Reputation
    10
    Thanks
    17
    My Mood
    Twisted
    nice ; thanks

  13. The Following User Says Thank You to Sliss For This Useful Post:

    mooker9j (06-14-2011)

  14. #12
    dreamy23's Avatar
    Join Date
    Jun 2011
    Gender
    female
    Posts
    311
    Reputation
    18
    Thanks
    15
    My Mood
    Stressed
    aww new patch tonite = 50% chance our sexy hacks might get patched, if it does i'm gonna cry!

  15. #13
    cyTOist's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    Even though I found a fix for the lil bug that happens with this script I won't update it yet seeing as in less than 20 minutes hfs files might be perma fixed D:

  16. #14
    Nico's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Germany :D
    Posts
    15,918
    Reputation
    1121
    Thanks
    8,617
    Wont work anymore. Closed.