So I'm in the Kobald Chief mission and this is a supported dungeon in the sinbot.
What options do I have to safely edit the kobaldchief.au3 file so I can effect the drops of bosses.
The speed of completing the mission...
Basically, I'm not fully aware of how I can use the line of code to my advantage...

;~ Title: Kobold Chief bot
;~ Author: Exico
;~ Version: 1.000
;~ Date of release: 14/08/2011
;~ Description: Kobold Chief bot by exico

;~ Kobold Chief bot files
fileInstall("sources\KoboldChief.jpg", @TempDir & "\files\KoboldChief.jpg")

;~ Kobold Chief bot counter
Func KoboldChiefBot()
$DungeonCount = $Noruns
$Runcounter = 0
do
$Runcounter = $Runcounter + 1
tooltip("Run " & $Runcounter & " of " & $Noruns & ". Press " & $hotpause & " to stop.", 230, 70, "Bot info", 1, 1)
KoboldChiefBot2()
$DungeonCount = $DungeonCount - 1
until $DungeonCount = 0
MsgBox(0, "Done!", "Operation complete, press OK to exit")
EndFunc

;~ Kobold Chief bot actions
Func KoboldChiefBot2()
;Start the boat
Send("{ALT DOWN}")
MouseClick ( "left" , $StartXpos, $StartYpos , 2 , 20 )
Send("{ALT UP}")
;wait the start
sleep(3000)
Send("{DEL}")
sleep(5000)
sleep($boatstartTime)
;Wait if Set
sleep($runwait)
sleep($randomtime)
;Go to last map
Send($skipmap)
Sleep($WaitTime)
Send($skipmap)
Sleep($WaitTime)
Send($skipmap)
Sleep($lastTime)
; List of commands for kill bosses
Send($god & $ohk & $spears)
;run to the boss
Send("{w down}")
sleep(3000)
send("{w up}")
Send("{a down}") ;Holds the w key down
sleep(7000)
send("{a up}")
Send("{s down}")
sleep(1500)
send("{s up}")
sleep(50)
Send("{a down}")
sleep(5000)
Send("{a up}")
sleep(5000)
MouseMove ( $MoveXpos, $MoveYpos , 10 )
MouseMove ( $MoveXpos, $MoveYpos , 10 )
MouseMove ( $MoveXpos, $MoveYpos , 10 )
;~ bosses
$Counter2 = $Counter
do
$Counter2 = $Counter2 - 1
If $killmode = "spears" then
SpearSpam()
Elseif $killmode = "trans" then
TransSpam()
endif
MouseMove ( $MoveXpos, $MoveYpos , 10 )
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
MouseMove ( $MoveXpos, $MoveYpos , 10 )
until $Counter2 = 0
Sleep($battleendTime)
EndIf

;Push Replay button
Send("{ALT DOWN}")
MouseClick ( "left" , $NextXpos, $NextYpos , 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