I was not using boost chips in my edit of your code. Try this code that i just wrote while I was typing this... I changed the GUI box a little and added checkboxes for force chips and buffs. I have included the force chips and I have placed them in the code where they will work every time you attack. I have also edited my additions to Vyn's code further to where it presses ESC before it tries to buff. You character casts on itself if you have no target selected by default, so this addition allows the use of other buffs that can be casted on other players. I am only working off the code you posted way earlier in this topic, so unless you post your new code... I will not be able to keep features you have added to your code in my edits.
I have also added an input that allows you to change the attack delay. This will help you not miss the drops if you are not killing fast enough.
;original by : Vyn
;modified by : jtremblay
#include <GUIConstants.au3>
#include <GUIListBox.au3>
#include <Misc.au3>
#include <Array.au3>
$Form1_1 = GUICreate("@Vyn - EPvP", 250, 160, 278, 199)
GUISetIcon("C:\136.ico")
$Buff = GUICtrlCreateCheckbox("Self-Buffs? F3 F4 F5", 10, 120, 130, 20, 0)
$Fchip = GUICtrlCreateCheckbox("Force Chips? F6", 10, 140, 130, 20, 0)
$ibuff = 0
$Fight = GUICtrlCreateInput("10000",10,95,120)
$Fightdata = GUICtrlRead($Fight)
$Start = GUICtrlCreateButton("Start", 150, 120, 91, 25, 0)
GUICtrlCreateGroup("", 180, 200, 1, 1)
$Label4 = GUICtrlCreateLabel("Set F2 to pick up loot", 10, 40, 392, 17)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetColor(-1, 0xFF0000)
$Label3 = GUICtrlCreateLabel("CTRL + ALT + X to exit", 10, 60, 392, 17)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetColor(-1, 0xFF0000)
$Label2 = GUICtrlCreateLabel("Set F1 to attack (with pet)", 10, 0, 392, 17)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetColor(-1, 0xFF0000)
$Label1 = GUICtrlCreateLabel("Pause with BREAK/PAUSE", 10, 20, 392, 17)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetColor(-1, 0xFF0000)
$Label0 = GUICtrlCreateLabel("Attack Delay 1000 = 1sec", 10, 80, 392, 17)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetColor(-1, 0xFF0000)
GUISetState(@SW_SHOW)
Global $Paused
HotKeySet("^!x", "MeinExit")
HotKeySet("{PAUSE}", "TogglePause")
Func Load()
EndFunc ;==>Load
Func Start()
Do
$x = 0
If $Buff > 0 And $ibuff < 1 Then
$ibuff = 1
WinActivate("Rappelz")
Sleep(1000)
ControlSend("Rappelz", "", "", "{ESC}")
Sleep(1000)
ControlSend("Rappelz", "", "", "{F3}")
Sleep(2000)
ControlSend("Rappelz", "", "", "{F4}")
Sleep(2000)
ControlSend("Rappelz", "", "", "{F5}")
Sleep(2000)
EndIf
While $x < 60
$x = $x + 1
WinActivate("@Vyn - EPvP")
sleep(200)
MouseMove(500, 500, 3)
sleep(200)
MouseDown("right")
MouseMove(814, 500, 3)
MouseUp("right")
WinActivate("Rappelz")
Sleep(1000)
ControlSend("Rappelz", "", "", "{Tab}")
Sleep(1000)
ControlSend("Rappelz", "", "", "{F1}")
Sleep (1000)
If $Fchip > 0 Then
ControlSend("Rappelz", "", "", "{F6}")
Sleep(1000)
EndIf
Sleep($Fightdata)
ControlSend("Rappelz", "", "", "{F2}")
Sleep(1000)
ControlSend("Rappelz", "", "", "{F2}")
Sleep(1000)
ControlSend("Rappelz", "", "", "{F2}")
Sleep(1000)
WEnd
If $Buff > 0 Then
ControlSend("Rappelz", "", "", "{ESC}")
Sleep(1000)
ControlSend("Rappelz", "", "", "{F3}")
Sleep(2000)
ControlSend("Rappelz", "", "", "{F4}")
Sleep(2000)
ControlSend("Rappelz", "", "", "{F5}")
Sleep(2000)
EndIf
$x = 0
Until _IsPressed("7A")
EndFunc ;==>Start
Load()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $Start
Start()
EnaDisElts($GUI_ENABLE)
EndSwitch
WEnd
Func MeinExit()
Exit
EndFunc ;==>MeinExit
Func TogglePause()
$Paused = Not $Paused
While $Paused
Sleep(100)
WEnd
EndFunc ;==>TogglePause