
Originally Posted by
murked
i tried everything and idk how to get the bot to work. it enters the dungeon and moves a few steps and aims an arrow then cancels then aims an arrow again. it just loiters in the spawning area. i entered all your defaulted binds in ur readme into the pub console.
bind "KP_END" "cc_fill_all_items"
bind "KP_DOWNARROW" "incrementvar plr_turning_movement_speed_rate_min 1 6 5"
bind "KP_PGDN" "changemap_to_current_random_sector;cc_change_star t_game_message"
bind "KP_LEFTARROW" "cc_change_figure_height 0.1"
bind "KP_5" "cc_change_figure_height 1"
bind "KP_RIGHTARROW" "changemap_to_next_random_sector;cc_change_start_g ame_message"
bind "KP_HOME" "cc_set_sub_weapon javelin_lvl2 999"
bind "KP_UPARROW" "cc_set_sub_weapon handbomb_lvl2 999"
bind "KP_PGUP" "cc_set_sub_weapon mining_bomb 999"
bind "KP_INS" "god"
bind "KP_MINUS" "ohk"
bind "KP_PLUS" "cc_set_sub_weapon sticky_bomb 999"
bind "KP_SLASH" "incrementvar host_timescale 1 5 4"
bind "KP_DEL" "blacksmith_craft_time_sec 0.25;dye_craft_time_sec 0.1"
bind "UPARROW" "plr_play_overlay_sequence paladin_transformation_begin_1"
bind "DOWNARROW" "plr_play_overlay_sequence dark_knight_transformation_begin_1"
bind "RIGHTARROW" "plr_play_overlay_sequence paladin_transformation_begin_2"
bind "LEFTARROW" "plr_play_overlay_sequence dark_knight_transformation_begin_2"
bind "," "cc_enter_colhen_from_rochest"
bind "." "cc_enter_rochest_from_colhen"
bind "/" "sk_plr_lethita_stamina_fast_restoration_time_cond ition -1;sk_plr_fiona_stamina_fast_restoration_time_condi tion -1;sk_plr_evy_stamina_fast_restoration_time_conditi on_scythe -1;sk_plr_evy_stamina_fast_restoration_time_conditi on_neo_staff -1"
bind "PGUP" "plr_play_overlay_sequence paladin_2_skill_tentacle"
bind "PGDN" "plr_play_overlay_sequence dark_knight_2_skill_tentacle"
bind "]" "incrementvar plr_search_evil_core_distance 500 1700 400"
bind "[" "cc_change_figure_height 800"
bind "=" "cc_shiplist_ui"
bind "*" "cc_breakownarmor"
bind "-" "sv_health_potion_double_up_time 10"
is there anything else i need to tweak or bind?
Weird. By using my defaults, there shouldn't be any issues. These are the same command set that I use during my usage of the program too. And it works for me 100%

Originally Posted by
DanK
Well it's a mix of WinActive, WinActivate and WinWaitActive.
Code:
Func _Win($window)
If Not WinActive($window) Then
WinActivate ($window, "")
WinWaitActive ($window, "")
EndIf
EndFunc
It probably didn't work right for you cuz you had the syntax wrong or something.. To call this function as-is: Do
or
Code:
_Win("[Class:Valve001]") . I would recommend the second option.
Basically if the window is not active (has focus) then it will activate it, and wait till its definitely active.
Yeah, I'll give that a try in the next version. Since I can't get it alt-tab-able yet anyway

Originally Posted by
Vanten_the_destroyer
doesnt go big at all

Originally Posted by
dracconus
Good job on these Zai..a lot of hard work put into them, can't knock that

Thanks dracconus!

Originally Posted by
OniKon
Now that everything is working. I have one problem and two questions.
The speed hack is only activated on the first run prior to running the bot. Afterwards the speed is never activated again.
1. What can done to fix that, maybe extend time delays between each key push?
2. What level offers the most exp per run?
Thank you in advance.
And keep up the good work

It's weird, because the speed function is built as a toggle. It should press the key ONCE at the start of the very first map, and then not press it again until the bot is paused or turned off.
What happens is when the bot.exe is started, $SpeedToggle is globally declared at 0. This only happens when the bot is opened.
Then, the code is:
Code:
Func SpeedOn()
If $SpeedToggle=0 Then
Send($SpeedKey)
$SpeedToggle=1
Sleep(100)
ElseIf $SpeedToggle=1 Then
Sleep(100)
EndIf
EndFunc
Func SpeedOff()
If $SpeedToggle=1 Then
Send($SpeedKey)
$SpeedToggle=0
Sleep(100)
ElseIf $SpeedToggle=0 Then
Sleep(100)
EndIf
EndFunc
And this is only used for the pause functionality and exitbot.

Originally Posted by
stupidname1
in addition to it failing to click create boat, future attempts to launch a new boat does seem to manage to click create party but it instead picks fruitful as the map, lol, how do you manage all this? must give you a headache
i noticed this too, i think it has something to do with lag, where its starting to press binds before the final map is fully loaded, i bet the speed bind is the first thing it attempts to press. So for people who lag a bit in the loading screens this never triggers, which can mess with the movement process of getting to the actual boss. The fix for this would just be to make the wait time before the bot starts pressing binds and transforming, a little longer.
Which bot map is this, I thought I fixed all of these issues? Are you using v2.301?