Quote:
Originally Posted by MrObvious83
So I am looking to modify the boreal chest runner bot but I have only done minor fixes and haven't written anything from scratch. the 1st July bot works somewhat, as I have fixed a bit, but its not very quick, So I am looking at using the skillbar OgAScZMT3l/a0kAAAAAAAAAA this makes going to all 3 chests quite simple. but I am having a hard time locating the section of code to edit on the current script. any help would be grateful.
|
Func Running() ;New function with 2nd cast of Dwarven Stability
local $me = GetAgentByID(-2)
If DllStructGetData(GetSkillbar(), 'Recharge2') = 0 AND DllStructGetData($me, 'EnergyPercent') >= 0.10 And $WeAreDead = False Then
If Not $WeAreDead then WriteLog("Running Use Skills")
Sleep(GetPing()+80)
UseSkillEx(1, 0) ;Dwarven Stability
Sleep(GetPing()+80)
UseSkillEx(2, 0) ;Dash
If GetChecked ($Use_IAU) Then
Sleep(GetPing()+80)
UseSkillEx(3, 0) ;I Am Unstoppable
EndIf
;UseSkill(1, 0) ;Dwarven Stability
;rndslp(300)
;UseSkill(2, 0) ;Dash
EndIf
EndFunc
is where you want to be, but really there isn't any variables for skill 1&2 so you don't have to change anything in the script. The build you shared should be just fine.