Page 1 of 20 12311 ... LastLast
Results 1 to 15 of 300
  1. #1
    Dracconus's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,074
    Reputation
    71
    Thanks
    438
    My Mood
    Tired

    Thumbs up Improved Labyrinth Leveling Bot

    First, let me start by saying this was COMPLETELY coded by me, and was not taken from anything on the previous one.
    I created this to expand functionality, and decrease times necessary for functions.
    This is coded to work specifically with PieBinds Version 2.1 (I will update when necessary.) And STILL REQUIRES One Hit Kill and God Mode.

    Improvements:
    Pause button
    Self-Updating Run counter (let's face it, it's handy. And counts the runs for you in case you're wondering what it's been doing while you were AFK!)
    Map Skipping: Yes, that's right, no more manual clicking 40 times to get to that map.
    Maps only skip ONE time. (This means that once you get to map 40, the map skip function isn't called any more, reducing wait times significantly.)
    Dark knight, and Pally 1 & 2 are both included to give Trans EXP to ALL classes. - DON'T BE STUPID IT ONLY WORKS ONCE PER HOUR!)

    Usage Guide (Covers everything.):
    1. Double Click on the bot to run it. (It's globally paused.)
    2. Open Vindictus
    3. Log In
    4. Select your character
    5. Load into the game
    6. Go to the docks
    7. Go to the Board for Labyrinth
    8. Load into the boat
    9. Hit Start
    10. Bypass leaderboards if you want, if not, then don't. (I left this optional for a reason.)
    11. Once you load into the Labyrinth press F1 to start the bot.
    12. The Bot will skip to map 40 on it's own
    13. There will be a short pause
    14. The bot will trans, activate GodMode, and 1HK
    15. The bot walks forward
    16. The bot spams tentacle 20 times (just in case )
    17. The bot reloads the map.
    18. The bot repeats processes 14 Through 17 from here on in. It does not attempt to skip maps.

    *NOTES* At the moment, there is no pixel detection because quite frankly, it's not necessary.

    *Keys*
    F1 - Starts the Bot
    F2 - Stops the Bot
    F3 - Pauses the Bot
    F4 - Displays Run Counter ToolTip

    *Footnote*
    Enjoy, and Sorry this took me so long, I didn't really have a reason to even care about doing this up until @Aastall asked me to help him with the other one and I realized how much it just...well, sucked.
    So, Enjoy people!
    Dracconus


    -----Virus Scans------

    64 Bit Version File Scans
    https://www.virustotal.com/file-scan/...b4e-1315629030
    -----------------
    https://virusscan.jotti.org/en/scanre...9a8742b216548b
    ____________________________________________
    The ONE positive showing up is a false positive, and I've YET to figure out why it's being generated, but these files are safe.
    32 Bit Version File Scans
    https://virusscan.jotti.org/en/scanre...921bae7dbe4957
    -----------------
    https://www.virustotal.com/file-scan/...b64-1315629654




    Source Code
    Code:
    HotKeySet("{F2}", "STOP")
    HotKeySet("{F3}", "PAUSE1")
    HotKeySet("{F1}", "LABYRINTH")
    HotKeySet("{F4}", "DISPLAYRUNS")
    $PAUSE1 = 1
    $RUN = 1
    $DIFF = 0
    $SHOW = False
    While 1
    	WinWaitActive("Vindictus", "")
    WEnd
    Func LABYRINTH()
    	For $MAPSKIP = 1 To 40
    		ControlSend("Vindictus", "", "", "{NUMPAD0}")
    		Sleep(7500)
    	Next
    	Call("KILL")
    EndFunc
    Func KILL()
    	While 1
    		Sleep(3500)
    		ControlSend("Vindictus", "", "", "{NUMPADMULT}")
    		Sleep(100)
    		ControlSend("Vindictus", "", "", "{NUMPADDIV}")
    		Sleep(100)
    		ControlSend("Vindictus", "", "", "{F5}")
    		Sleep(10)
    		ControlSend("Vindictus", "", "", "{F6}")
    		Sleep(10)
    		ControlSend("Vindictus", "", "", "{F7}")
    		Sleep(100)
    		ControlSend("Vindictus", "", "", "{F8}")
    		Sleep(1000)
    		ControlSend("Vindictus", "", "", "{W DOWN}")
    		Sleep(8000)
    		ControlSend("Vindictus", "", "", "{W UP}")
    		For $TENTACLE = 1 To 20
    			ControlSend("Vindictus", "", "", "{G}")
    			Sleep(1000)
    		Next
    		Sleep(5000)
    		Call("MAPRELOAD")
    	WEnd
    EndFunc
    Func MAPRELOAD()
    	ControlSend("Vindictus", "", "", "{NUMPAD9}")
    	Sleep(10000)
    	$RUN = $RUN + 1
    	If $SHOW Then ToolTip("Run #" & $RUN, 450, 450, "Run Counter", 1)
    	Call("KILL")
    EndFunc
    Func DISPLAYRUNS()
    	$SHOW = Not $SHOW
    	If ($SHOW) Then
    		ToolTip("Run #" & $RUN, 450, 450, "Run Counter", 1)
    	Else
    		ToolTip("")
    	EndIf
    EndFunc
    Func PAUSE1()
    	$PAUSE1 = Not $PAUSE1
    	While $PAUSE1
    		Sleep(1000)
    		ToolTip('Script is PAUSED, press ""PAUSE"" to UNPAUSE', 0, 0)
    	WEnd
    	ToolTip("")
    EndFunc
    Func STOP()
    	Exit
    EndFunc




    Credits to @nymphness for the compilation guide below.
    For those that get a detected message please perform the following actions using the above source code.

    Code:
    1- Make sure you have a console (HellDemons & Nico is recommended)
    2- Make sure you have PieBindsV2.1
    3- Make sure you have this Dracconus' Lab bot and source code
    
    
    4- Download Autoit
    Site link: AutoIt Downloads - AutoItScript
    Download link: https://www.autoitscrip*****m/cgi-bin/...t-v3-setup.exe
    
    5- Copy and paste Dracconus' Lab bot source code into a text file via notepad
    
    
    6- Save it as asdf.au3 (or w/e name you would like to call it)
    Note: You must have the file type as all files or it will not work!
    
    
    7- Once you have downloaded Autoit, run it. You can either choose from your start menu and click Compile Script to exe,
    or go to this directory:
    C:\Program Files\AutoIt3\Aut2Exe\Aut2exe.exe
    
    
    8- Click the browse button labeled source and find the asdf.au3 file you just made. Then click OK.
    
    9- Click the browse button labeled destination and put asdfg as the name (or w/e you want to call your bot). Then click OK.
    Note: This is where your bot will be when you convert the script to .exe file.
    
    
    10- Double click your newly-made Dracconus' lab bot
    
    11- Open up SinJect (or w/e injector you use) and select the Console.dll and Vindictus.exe
    
    12- Open up Vindictus.exe
    Note once you hear something similar to a click or camera click sound, close sinJect immediately!
    
    13- Log into your character and such
    
    14- Open up Pie'sBindV2.1.txt and copy and paste all of it (Easiest way: Ctrl+A, Ctrl +C)
    
    15- On the console, right click the black space (or however your console's background color might be) and click Paste.
    
    16- All of Pie's Binds should pop up and then press Enter
    
    17- Then you can read Dracconus' first post on the steps or just read on. Start a Labyrinth boat (private) and wait untill the map is finish loading.
    
    18- Press F1 to start your Labyrinth bot. If nothing is happening, check your icon balloon things on the bottom right corner of your screen (typical place if you're using windows) and there should be an icon that looks just like Dracconus' bot's icon!
    
    19- If it's there, skip this step. If not, double click your bot and the icon should appear.
    
    20- Right click the bot balloon and click Script Pause (this should unpause the bot) and the bot should run!
    
    Hope this helps out for you ;) Sorry that I couldn't get the rest of the pictures uploaded, thought typing would be good enough. (Besides don't want to show off my nice fancy stuff you know hehe)
    Last edited by Dracconus; 12-09-2011 at 01:33 PM. Reason: added source code
    Like my work? Feel free to donate using the button below
    _________________________________
    [IMG]https://m.UploadEdi*****m/b99/63788658.gif[/IMG]
    My Releases

    ¤Advanced Search Tutorial (For Site Newbies)

    ¤Labyrinth Leveling Bot

    ¤Free Fishing Tutorial

    ¤Personal Bot Collection

    ¤ClipBoard Pasting Program Source Code (for things that don't let you)

  2. The Following 62 Users Say Thank You to Dracconus For This Useful Post:

    /sadface (12-06-2011),1HACK (09-28-2011),38170225 (05-03-2012),a101scream (11-03-2012),Aastall (09-09-2011),apathy (01-19-2012),aujv (09-09-2011),benq0124 (09-23-2011),BlakkRaven (09-18-2011),bokbok (11-10-2011),chicken12346 (01-03-2012),commcomm (11-19-2011),Das Face (09-10-2011),DawnB (10-29-2011),Devoid8d (09-13-2011),diapam (12-24-2011),EATMYPILLAR (06-29-2012),evoLess (01-17-2012),fionadk (05-04-2012),freebird2011 (11-02-2011),froxenwelf (09-22-2011),gd12 (09-10-2011),greedlt (10-07-2011),HaxAttaxxx (10-02-2011),HighReaper (09-26-2011),holymolyfrijoly (01-11-2013),Jossaiah (09-30-2012),kibana (10-05-2011),kidsizedcoffin (09-09-2011),kikazzninja (03-08-2012),LuxRay (05-26-2012),magicb0y (02-10-2012),matikaukau2 (02-06-2012),Methodeman (11-09-2011),MilleniumX (01-09-2012),Nemasis (01-08-2012),nevin123 (06-28-2012),nummynuts (12-31-2011),nymphness (12-09-2011),Pancakez (11-06-2011),paulstar (10-02-2012),Pie (09-09-2011),prophet00 (01-18-2012),ptung611 (09-10-2011),ReggieD (09-12-2011),rein99 (12-01-2011),RuinedPuma1501 (08-02-2012),ruzrica (04-25-2012),snowdream (04-27-2012),sohot6789 (04-19-2012),stacked (09-16-2011),Stebbieff (01-08-2012),swarnob93 (09-28-2011),The408 (05-12-2012),thien5047 (07-21-2012),touka27 (09-17-2011),truthkiller (04-02-2012),uhriginal (10-05-2011),valois23 (05-05-2012),Volkanaft (04-24-2012),wonderdude22 (11-14-2011),zarakiix (05-07-2012)

  3. #2
    Pie's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Michigan
    Posts
    6,911
    Reputation
    161
    Thanks
    3,296
    My Mood
    Bitchy
    Good job man!

    Now we just gotta wait for Paladin >.<

  4. #3
    Dracconus's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,074
    Reputation
    71
    Thanks
    438
    My Mood
    Tired
    Yup, MAJOR thanks to @Aastall for prompting me to do this via his request for help that I decided to answer. Made me realize just how insanely ...well...bad the other one was, with instructions, and code, so I decided to redo it completely, and such is the work.
    He also did numerous (like, nos hit at least 30 ) different tests for me after my 5 accounts ran out of chances :P so I owe him props big time for the help
    Credits @DanK for being the awesome son of a bitch he is and helping me solve an issues too!
    Like my work? Feel free to donate using the button below
    _________________________________
    [IMG]https://m.UploadEdi*****m/b99/63788658.gif[/IMG]
    My Releases

    ¤Advanced Search Tutorial (For Site Newbies)

    ¤Labyrinth Leveling Bot

    ¤Free Fishing Tutorial

    ¤Personal Bot Collection

    ¤ClipBoard Pasting Program Source Code (for things that don't let you)

  5. #4
    Aastall's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    the abyss
    Posts
    75
    Reputation
    5
    Thanks
    5
    My Mood
    Angelic

    Cool The Man Is A Fucking Genious

    So i guess u can close all those other sloppy code bots there kinda outdated now Lmao. Ive been using this bot for 46 runs now without any problems. Great Job @dracconus perfect Bot For the labby who knows what he has in store for us next... Best Coder out there


    At first i was like but now im Dont Ruin my Fun or youll be like
    and yea i spelled genius Genious so sue me now ur about ta be like
    Last edited by Aastall; 09-09-2011 at 01:33 PM. Reason: forgot ta mention im the first to use it :D

  6. #5
    Nico.'s Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Far, far away.
    Posts
    527
    Reputation
    84
    Thanks
    37
    My Mood
    Tired
    Change that font, pls.
    Nico's second Acc.

  7. #6
    Dracconus's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,074
    Reputation
    71
    Thanks
    438
    My Mood
    Tired
    Quote Originally Posted by Nico. View Post
    Change that font, pls.
    Increase font size plz?!
    Like my work? Feel free to donate using the button below
    _________________________________
    [IMG]https://m.UploadEdi*****m/b99/63788658.gif[/IMG]
    My Releases

    ¤Advanced Search Tutorial (For Site Newbies)

    ¤Labyrinth Leveling Bot

    ¤Free Fishing Tutorial

    ¤Personal Bot Collection

    ¤ClipBoard Pasting Program Source Code (for things that don't let you)

  8. #7
    Nico.'s Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Far, far away.
    Posts
    527
    Reputation
    84
    Thanks
    37
    My Mood
    Tired
    Quote Originally Posted by dracconus View Post
    Increase font size plz?!
    Its readable
    Nico's second Acc.

  9. #8
    Aastall's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    the abyss
    Posts
    75
    Reputation
    5
    Thanks
    5
    My Mood
    Angelic
    @Nico i cant See your tiny font im going bLind trying to read it lmao

  10. #9
    Dracconus's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,074
    Reputation
    71
    Thanks
    438
    My Mood
    Tired
    No more offtopic tololo's
    wait, didn't I just contradict myself
    SHIT I'm doing it again SOMEONE STOP ME BEFORE I...
    Like my work? Feel free to donate using the button below
    _________________________________
    [IMG]https://m.UploadEdi*****m/b99/63788658.gif[/IMG]
    My Releases

    ¤Advanced Search Tutorial (For Site Newbies)

    ¤Labyrinth Leveling Bot

    ¤Free Fishing Tutorial

    ¤Personal Bot Collection

    ¤ClipBoard Pasting Program Source Code (for things that don't let you)

  11. #10
    Paladin's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    In my swamp, taking a fat ogre shit
    Posts
    7,564
    Reputation
    744
    Thanks
    1,535
    My Mood
    Yeehaw
    Approved, LIKE A BOSS.



  12. #11
    Nico.'s Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Far, far away.
    Posts
    527
    Reputation
    84
    Thanks
    37
    My Mood
    Tired
    Quote Originally Posted by Paladin View Post
    Approved, LIKE A BOSS.
    Like a Boss ******
    Nico's second Acc.

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

    Das Face (09-09-2011)

  14. #12
    Dracconus's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,074
    Reputation
    71
    Thanks
    438
    My Mood
    Tired
    Quote Originally Posted by Paladin View Post
    Approved, LIKE A BOSS.
    Thanks @Paladin
    Like my work? Feel free to donate using the button below
    _________________________________
    [IMG]https://m.UploadEdi*****m/b99/63788658.gif[/IMG]
    My Releases

    ¤Advanced Search Tutorial (For Site Newbies)

    ¤Labyrinth Leveling Bot

    ¤Free Fishing Tutorial

    ¤Personal Bot Collection

    ¤ClipBoard Pasting Program Source Code (for things that don't let you)

  15. #13
    Prophett's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    MINECRAFT
    Posts
    20
    Reputation
    10
    Thanks
    1
    Thank you for this. I'll give it a try tonight!

  16. #14
    kidsizedcoffin's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    North America
    Posts
    502
    Reputation
    14
    Thanks
    51
    My Mood
    Brooding
    Worked great once I got a small kink worked out, good work!




  17. #15
    Dracconus's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,074
    Reputation
    71
    Thanks
    438
    My Mood
    Tired
    @Paladin, @Nico Please re-approve I had to fix an issue with a keybind not being set right.
    Thanks.
    Like my work? Feel free to donate using the button below
    _________________________________
    [IMG]https://m.UploadEdi*****m/b99/63788658.gif[/IMG]
    My Releases

    ¤Advanced Search Tutorial (For Site Newbies)

    ¤Labyrinth Leveling Bot

    ¤Free Fishing Tutorial

    ¤Personal Bot Collection

    ¤ClipBoard Pasting Program Source Code (for things that don't let you)

Page 1 of 20 12311 ... LastLast

Similar Threads

  1. [Release] Labyrinth Leveling Bot (Updated)
    By xabbis in forum Vindictus Hacks & Cheats
    Replies: 5
    Last Post: 02-15-2012, 09:27 PM
  2. [Outdated] [Updated] Labyrinth Leveling Bot (Auto-IT)
    By xabbis in forum Vindictus Hacks & Cheats
    Replies: 9
    Last Post: 02-05-2012, 12:18 PM
  3. [Source Code] Labyrinth Leveling Bot
    By dumblet in forum Vindictus Hacks & Cheats
    Replies: 136
    Last Post: 08-26-2011, 06:42 PM
  4. [Release]GP & Level Bot
    By iHazBalls in forum Combat Arms Europe Hacks
    Replies: 18
    Last Post: 06-08-2009, 09:42 AM
  5. "HOW TO USE LEVEL BOT+GP"??? NEED HELP
    By zekeria in forum Combat Arms Hacks & Cheats
    Replies: 1
    Last Post: 01-02-2009, 09:20 AM