Thanks!
I used the patcher to patch an GWBIBLE based EOTN Runner Bot.
The gwa_missing_headers files shows 4 functions. I don't really know how to fix this and would appreciate some help.
Here are the functions:
Code:
Func AsuranRank()
Local $lEffects = GetEffect(), $lAsuranOn = False
For $i = 1 to $lEffects[0]
If $lEffects[$i] = $Edification Then
$lAsuranOn = True
ExitLoop
EndIf
Next
If Not $lAsuranOn Then SendPacket(0x8, 0x51, 0x26)
EndFunc ;==>AsuranRank
Code:
Func NornRank()
Local $lEffects = GetEffect(), $lNornOn = False
For $i = 1 to $lEffects[0]
If $lEffects[$i] = $Heart_Of_The_Norn Then
$lNornOn = True
ExitLoop
EndIf
Next
If Not $lNornOn Then SendPacket(0x8, 0x51, 0x29)
EndFunc ;==>NornRank
Code:
Func VanguardRank()
Local $lEffects = GetEffect(), $lVanguardOn = False
For $i = 1 to $lEffects[0]
If $lEffects[$i] = $Rebel_Yell Then
$lVanguardOn = True
ExitLoop
EndIf
Next
If Not $lVanguardOn Then SendPacket(0x8, 0x51, 0x28)
EndFunc ;==>VanguardRank
Code:
Func UseSkillByID($lSkillID, $aTarget = -2, $lCallTarget = False)
If IsDllStruct($aTarget) = 0 Then
$lTargetID = ConvertID($aTarget)
Else
$lTargetID = DllStructGetData($aTarget, 'ID')
EndIf
Return SendPacket(0x14, 0x40, $lSkillID, 0, $lTargetID, $lCallTarget)
EndFunc ;==>UseSkillByID
Thanks in advance!