It is recommended to first specify the desired values for parameters and then enable the corresponding functions you need.
enable_restart
Enables the game to automatically restart if it closes unexpectedly.
open_game_window
The line below indicates that the program will automatically open the game window upon launch.
pet_name=horse|hare|wolf
Below, list the names of the pets that will be used. You can specify any number of pets, separating their names with a vertical bar (|).
regen_timeout=2
I set the frequency (in seconds) at which my character's health and mana will be checked.
speed_attack=0.05
I specify the delay (in seconds) between skill presses during attack. Fractional values are permitted.
attack_type=1
The line below determines the character's movement behavior during combat. If set to 1, the character will constantly move and attack monsters as they are encountered. If set to 0, the character will stop to attack a target and resume movement after killing it.
keys_attack=h|n|j|m
Below, list the keys used for attack skills, separated by vertical bars (|).
Key Names Reference (https://mwbot.org/index.php/topic,38.0.html)
min_hp=155000
I specify the minimum health level below which the character will use a healing item.
min_mp=190000
Below, specify the minimum mana level below which the character will use a mana potion.
min_banks_hp=-1
Below, I set this to -1 to indicate that the game should not close if the character runs out of health potions.
min_banks_mp=-1
Below, I set this to -1 to indicate that the game should not close if the character runs out of mana potions.
pet_min_hp=245000
Below, specify the pet's minimum health level below which it will use a health potion.
pet_min_mp=100000
Below, specify the pet's minimum mana level below which it will use a mana potion.
pet_min_food=45
Below, specify the pet's minimum satiety level below which it will consume a food item (e.g., rice ball).
key_regen_hp=u
Below is the key assigned for the character's healing skill or potion. In this example, it is the letter u.
key_regen_mp=3
Below is the key assigned for the character's mana potion.
key_pet_regen_hp=7
Below is the key assigned for the pet's health potion.
key_pet_regen_mp=6
Below is the key assigned for the pet's mana potion.
key_pet_regen_food=9
Below is the key assigned for using a pet food item (e.g., rice ball).
key_repair=0
Below is the key assigned for repairing equipment (using a repair box or pliers).
enable_regen
Enables automatic health and mana regeneration for the character.
enable_nav_attack
Enables the radar function to search for monsters.
enable_attack
Enables the attack function, including the use of skills.
enable_repair=1
Below, I enable the character's equipment repair function using a repair box.
enable_pet
Below, I enable the function to summon and manage the pet.
enable_pet_regen
Below, I enable the control of the pet's health and mana regeneration.
enable_pet_food
Below, I enable the control of the pet's satiety level.
enable_clearbag
Below, I enable the function to automatically clear specified items from the inventory.