Hey, thanks a lot!
Question, how does the bot manage to know what to sell or keep? Just in case a good weapon drops.
Thank you.
It follows the CanSell function to determine what can be sold. You can add other functions to determine what you consider good, such as detecting Q8 or if it has a certain mod, but at the moment, it attempts to sell everything.
why I am getting message: ''Cannot find Bot_Main.ini file in Ini_Files folder.'' when I'm trying to open omni pre-searing? This file is in that folder.
why I am getting message: ''Cannot find Bot_Main.ini file in Ini_Files folder.'' when I'm trying to open omni pre-searing? This file is in that folder.
because you are either missing the Ini_Files folder or the Bot_Main.ini file within that folder.
Try re-extracting the files from the archive.
OR THERE IS ANOTHER MORE MYSTERIOUS EXPLANATION. Ghosts perhaps?
because you are either missing the Ini_Files folder or the Bot_Main.ini file within that folder.
Try re-extracting the files from the archive.
OR THERE IS ANOTHER MORE MYSTERIOUS EXPLANATION. Ghosts perhaps?
as I wrote above "This file is in that folder.". so this folder exists and the file inside that folder too. and ghosts.. if u wanna talk with them, keep ur way forward.
as I wrote above "This file is in that folder.". so this folder exists and the file inside that folder too. and ghosts.. if u wanna talk with them, keep ur way forward.
Go into the Ini_Files Folder and edit the IniFunctions.au3.
Replace the Func IniFilesPresent() all the way to the first EndFunc
*
Code:
Func IniFilesPresent()
; List of required .ini files
Local $aIniFiles[6] = ["Bot_Main.ini", "Bot_Second.ini", "Config_Main.ini", "Config_Second.ini", "CustomBuild_Main.ini", "CustomBuild_Second.ini"]
Local $sFolderPath = "Ini_Files/"
If Not FileExists($sFolderPath) Then DirCreate($sFolderPath)
For $i = 0 To UBound($aIniFiles) - 1
Local $sFilePath = $sFolderPath & $aIniFiles[$i]
If Not FileExists($sFilePath) Then
FileWrite($sFilePath, "")
MsgBox(48, "PreFarmer_Bot", "Created missing " & $aIniFiles[$i] & " file in " & $sFolderPath & " folder.")
EndIf
Next
EndFunc
This should solve some issues for you if the Ini_files were not properly created.
Go into the Ini_Files Folder and edit the IniFunctions.au3.
Replace the Func IniFilesPresent() all the way to the first EndFunc
*
Code:
Func IniFilesPresent()
; List of required .ini files
Local $aIniFiles[6] = ["Bot_Main.ini", "Bot_Second.ini", "Config_Main.ini", "Config_Second.ini", "CustomBuild_Main.ini", "CustomBuild_Second.ini"]
Local $sFolderPath = "Ini_Files/"
If Not FileExists($sFolderPath) Then DirCreate($sFolderPath)
For $i = 0 To UBound($aIniFiles) - 1
Local $sFilePath = $sFolderPath & $aIniFiles[$i]
If Not FileExists($sFilePath) Then
FileWrite($sFilePath, "")
MsgBox(48, "PreFarmer_Bot", "Created missing " & $aIniFiles[$i] & " file in " & $sFolderPath & " folder.")
EndIf
Next
EndFunc
This should solve some issues for you if the Ini_files were not properly created.
thank you very much lord. that's worked
anyway this bot works like shit. i have build for my 19lv e/mo digged from bot files and bot doesn't know how to use skills properly. and when I chose charr boss farm it's running all the northlands like a dumb and put every iris and kill every oakheart. in comparison to vaettir bot script this is like basics of scripting.. and the first thing that was dumbest shit I saw was double clicking on the lever and running to the closed doors.. waste of time.
I've tried it too on spider legs (today's activity from nick) - it is worse.. no attacking, only running, doesn't pick up the items. totally uselles running bot
It follows the CanSell function to determine what can be sold. You can add other functions to determine what you consider good, such as detecting Q8 or if it has a certain mod, but at the moment, it attempts to sell everything.
i took the last version, but when the bot goes out for worn belt, after the run resign, load the map and then goes to char selection page with no chars, any hint why or to solve it? the code seems fine to me