Vindcitus EU Bot

Posts 136150 of 192 · Page 10 of 13
Quote Originally Posted by Sussertod View Post
have someone config file for screen 1440x900 Nightmare at the ruins?
Use this :
Code:
until $DungeonCount = 0
MsgBox(0, "Done!", "Operation complete, press OK to exit")
EndFunc

;~ Nightmare at the ruins bot actions
Func NightmareAtTheRuinsBot2()
;Start the boat
Send("{ALT DOWN}")
MouseClick ( "left" , $StartXpos, $StartYpos , 2 , 20 )
Send("{ALT UP}")
;wait the start
sleep(1000)
Send("{DEL}")
sleep(5000)
sleep($boatstartTime)
;Wait if Set
sleep($runwait)
sleep($randomtime)
;Go to last map
Send($skipmap)
Sleep($WaitTime)
Send("{w down}")
sleep(50)
Send("{w up}")
; List of commands for kill bosses
Send($god & $ohk & $spears);In sequence: No death,1hitkill,999spears,immortality
;Spam Spears
$Counter2 = $Counter
do
	$Counter2 = $Counter2 - 1
	If $killmode = "spears" then
		SpearSpam()
	Elseif $killmode = "trans" then
		TransSpam()
	endif
until $Counter2 = 0
;Wait for End Battle screen
Sleep($battleendTime)
If PixelCheckEndBattle() = 0 Then
$Counter2 = $Counter
do
	$Counter2 = $Counter2 - 1
	If $killmode = "spears" then
		SpearSpam()
	Elseif $killmode = "trans" then
		TransSpam()
	endif
until $Counter2 = 0
Sleep($battleendTime)
EndIf

;Push Replay button
Send("{ALT DOWN}")
MouseClick ("left" , 673, 712, 2, 10)
Send("{ALT UP}")
sleep(12000)
Send("{ALT DOWN}")
MouseClick ( "left" , $ReplayXpos, $ReplayYpos , 2 , 10 )
Send("{ALT UP}")
;Wait for the boat
Sleep($boatreturnTime)
EndFunc
and also you'll need this config.ini for 1440*900

Code:
// Do not edit this file if you don't know what are you doing
// In this file you can set your personal binds to use with the bot,
// this file must be in the same directory as the bot executable

[Changemap]
; changelevel2 command,cant change this bind
Skipmap={END}

[hax]
; god and ohk commands
god={F8}
ohk={F9}

[secondary]
; secondary weapons set
spears={F5}
prospears={F5}
sticky={NUMPAD0}
bombs={F7}
mining={F6}

[hotkeys]
; settings for hotkeys
closeall={Pause}
startbot={INS}

[waittime]
; timer settings in milliseconds (1000 = 1 sec)
boatstart=25000
intermediate=8000
last=10000
boatreturn=10000
battleend=15000
runwait=0

[resolution]
; manual resolution settings
useusersettings=true
ReplayXpos=273
ReplayYpos=702
StartXpos=105
StartYPos=780
MoveXPos=770
IngkaraMoveXPos=580
MoveYPos=450

[randomtime]
; this option use a random time to wait for each run, put true to enable it and false for disable, then set a minimum and a maximum in SECONDS
userandomtime=false
minimum=90
maximum=150

[addonscripts]
; other options for some scripts, pala or dark
transformationTime=2460000
wichtrans=pala
uselvl2=false

// This config file use the syntax of autoit, so some keys are "special" like {INS} and {Pause}
// or numpad keys
Note : I changed the battleend to 10 seconds instead of 70, 70 is way to long
Changing the bot to 1440X900 resolution !!

First of, the config.ini file in your EU bot file
change

Code:
[resolution]
; manual resolution settings
useusersettings=false
ReplayXpos=305
ReplayYpos=700
StartXpos=142
StartYPos=915
MoveXPos=680
IngkaraMoveXPos=580
MoveYPos=400
into
Code:
[resolution]
; manual resolution settings
useusersettings=true
ReplayXpos=273
ReplayYpos=702
StartXpos=105
StartYPos=780
MoveXPos=770
IngkaraMoveXPos=580
MoveYPos=450
Second, configure the bot you want to use :
Go to the END
you'll see :
Code:
;Push Replay button
Send("{ALT DOWN}")
MouseClick ("left" , 705, 701, 2, 10)
Send("{ALT UP}")
sleep(12000)
Send("{ALT DOWN}")
MouseClick ( "left" , $ReplayXpos, $ReplayYpos , 2 , 10 )
Send("{ALT UP}")
;Wait for the boat
Sleep($boatreturnTime)
EndFunc
change it into
Code:
;Push Replay button
Send("{ALT DOWN}")
MouseClick ("left" , 673, 712, 2, 10)
Send("{ALT UP}")
sleep(12000)
Send("{ALT DOWN}")
MouseClick ( "left" , $ReplayXpos, $ReplayYpos , 2 , 10 )
Send("{ALT UP}")
;Wait for the boat
Sleep($boatreturnTime)
EndFunc
Anyone meybe know what to do?That bot make all good but only don't want to reply dungeon. i tried with 1280x1024 resolution and is same problem like with my normal 1680x1050.
Quote Originally Posted by Adasieq View Post
Anyone meybe know what to do?That bot make all good but only don't want to reply dungeon. i tried with 1280x1024 resolution and is same problem like with my normal 1680x1050.
Here's how I did it :
Code:
download autoit3 (AutoIt - AutoItScript).
Start the program au3info.
Then, start your vindictus with the hacks on.
After that just go to the boat. 
When your at the boat, point with your finger on the start button, then click on the marker in the program ( Finder Tool ) and drag it to where your finger is. 
Go to the mouse section of the program ( at the bottom), you'll see the coordinates. 
Then copy those coordinates into your config.ini

In your config.ini file:
The coordinates of your 'Start' button :
StartXPos: (insert your X-coordinate here)
StartYPos: (insert your Y-coordinate here)

The coordinates of your 'Replay'' button
ReplayXPos: (insert your X-coordinate here)
ReplayYPos: (insert your Y-coordinate here)

The coordinates of the middle of your screen
MoveXPos: (insert your X-coordinate here)
MoveYPos: (insert your Y-coordinate here)

The coordinates of your 'Next Page'
IN YOUR BOT FILE ITSELF
At the end you'll always see :
Code:
;Push Replay button
Send("{ALT DOWN}")
MouseClick ("left" , 705, 701, 2, 10)
Send("{ALT UP}")
sleep(12000)
Send("{ALT DOWN}")
MouseClick ( "left" , $ReplayXpos, $ReplayYpos , 2 , 10 )
Send("{ALT UP}")
;Wait for the boat
Sleep($boatreturnTime)
EndFunc
Replace the MouseClick ("left" , 705, 701, 2, 10)
with MouseClick ("left" , (your X-coordinate), (your Y-coordinate), 2, 10)
Quote Originally Posted by Adasieq View Post
Anyone meybe know what to do?That bot make all good but only don't want to reply dungeon. i tried with 1280x1024 resolution and is same problem like with my normal 1680x1050.
Read this, should solve ur problem
Quote Originally Posted by Adasieq View Post
ImageShack® - Online Photo and Video Hosting scerchy but what need to select here if it don't have 1440x900
You don't have to select anything, just press the start button, it'll work that way

Your using your own configuration so no resolution has to be selected in the window
This config setup has worked for me 10 runs straight (the amount of requested runs on the bot program)

i do not know why it doesn't work for you at the end.

it goes pretty slowly though.
did you change the resolution to 1280x800?

Again this config worked for me 10 runs straight in Nightmare of the ruins.
Quote Originally Posted by kwok View Post
This config setup has worked for me 10 runs straight (the amount of requested runs on the bot program)

i do not know why it doesn't work for you at the end.

it goes pretty slowly though.
did you change the resolution to 1280x800?
Again this config worked for me 10 runs straight in Nightmare of the ruins.
You can adjust the time of the bot to start and to end, read my previous posts and you'll figure it out.
Quote Originally Posted by Savie View Post
Do I put them in the Config file?
This config setup has worked for me 10 runs straight (the amount of requested runs on the bot program)

i do not know why it doesn't work for you at the end.

it goes pretty slowly though.
did you change the resolution to 1280x800?

Again this config worked for me 10 runs straight in Nightmare of the ruins.
roxy i tried that too and nothing :/ and scerchy that too don't help, he just stand and nothing,I give up :P im too stupid for that.
Quote Originally Posted by Adasieq View Post
roxy i tried that too and nothing :/ and scerchy that too don't help, he just stand and nothing,I give up :P im too stupid for that.
What does the bot exactly do and when does it fail? Write it step by step pls.
Quote Originally Posted by Adasieq View Post
roxy i tried that too and nothing :/ and scerchy that too don't help, he just stand and nothing,I give up :P im too stupid for that.
Did you download the program and replaced all the coordinates like I told you too?

Also did you perhaps forget to change the
[resolution]
; manual resolution settings
useusersettings=false
into
[resolution]
; manual resolution settings
useusersettings=true
?
thnks for bot but no't working Blood Lord battle.
have someone config file for screen 1024x768..
Working config?
bind "END" "changelevel2"
bind "F2" "ohk"
bind "F5" "cc_set_sub_weapon javelin_lvl2 999"
bind "DEL" "cc_send_start_game_message"
bind "F1" "god"


Use the sentence above to bind in console (Write without the Quote's!)
use this config shown below instead of yours and set your game resolution at 1280x800.

// Do not edit this file if you don't know what are you doing
// In this file you can set your personal binds to use with the bot,
// this file must be in the same directory as the bot executable

[Changemap]
; changelevel2 command,cant change this bind
Skipmap={END}

[hax]
; god and ohk commands
god={F1}
ohk={F2}

[secondary]
; secondary weapons set
spears={F5}
prospears={F5}
sticky=
bombs=
mining={NUMPAD2}

[trasformation]
; commands for trasformation
dark=
dark2=
pala=
pala2=

[hotkeys]
; settings for hotkeys
closeall={Pause}
startbot={INS}

[waittime]
; timer settings in milliseconds (1000 = 1 sec)
boatstart=28000
intermediate=8000
last=10000
boatreturn=29000
battleend=25000
runwait=0

[resolution]
; manual resolution settings - these are settings for 1280x800
useusersettings=false
ReplayXpos=322
ReplayYpos=711
StartXpos=113
StartYPos=902
MoveXPos=680
IngkaraMoveXPos=580
MoveYPos=400

[randomtime]
; this option use a random time to wait for each run, put true to enable it and false for disable, then set a minimum and a maximum in SECONDS
userandomtime=false
minimum=90
maximum=150

[addonscripts]
; other options for some scripts, pala or dark
transformationTime=2460000
wichtrans=pala
uselvl2=false


''This config setup has worked for me 10 runs straight (the amount of requested runs on the bot program)
it goes pretty slowly though.
Again this config worked for me 10 runs straight in Nightmare of the ruins.''
Posts 136150 of 192 · Page 10 of 13
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?