config #
The configuration file provides various settings for automatic actions in your Tekken automation script. It includes character mappings, probability settings, and script functionalities. This configuration is dynamic and can be accessed or modified through config.xx
.
Character ID Mapping #
Description: Maps numerical IDs to character names. This mapping is used to reference characters in the script by their ID. The mapping can be accessed and modified dynamically.
Character ID to Name Mapping:
0
: Paul1
: Law2
: King3
: Yoshimitsu4
: Hwoarang5
: Xiaoyu6
: Jin7
: Bryan8
: Kazuya9
: Steve10
: Jack11
: Asuka12
: Devil_Jin13
: Feng14
: Lili15
: Dragunov16
: Leo17
: Lars18
: Alisa19
: Claudio20
: Shaheen21
: Nina22
: Lee23
: Kuma24
: Panda25
: Zafina26
: Leroy27
: Jun28
: Reina29
: Azucena30
: Victor31
: Raven33
: Eddy34
: Lidia116
: Dummy
File Naming Convention:
The script files for each character should be placed in the \scripts\Character\
directory. Each file should be named according to and a .lua
extension. For example:
Paul.lua
corresponds to PaulLaw.lua
corresponds to LawDevil_Jin.lua
corresponds to Devil_JinDummy.lua
corresponds to Dummy
Example Path:
/scripts/Character/Paul.lua
for Paul
Dynamic Access:
- The
characters
mapping is dynamic and can be accessed or modified through theconfig.characters
interface.
Configuration Parameters #
DUCK_WHIP_PUNISH_CHANCE:
- Description: Probability of automatic duck whiff punish. A higher value means a higher chance of executing a duck whiff punish (0-100).
- Type: Integer (0-100)
- Default:
100
BLOCK_HIGH_CHANCE:
- Description: Probability of automatically blocking high attacks. A higher value means a higher chance of blocking high attacks (0-100).
- Type: Integer (0-100)
- Default:
100
BLOCK_MID_CHANCE:
- Description: Probability of automatically blocking mid attacks. A higher value means a higher chance of blocking mid attacks (0-100).
- Type: Integer (0-100)
- Default:
100
BLOCK_LOW_CHANCE:
- Description: Probability of automatically blocking low attacks. This value represents a 100% chance of blocking any incoming low attacks.
- Type: Integer (0-100)
- Default:
100
LOW_PARRY_CHANCE:
- Description: Probability of performing a low parry instead of a block when a low attack is detected. This value represents a 50% chance of parrying within the overall 100% chance of defending against low attacks.
- Type: Integer (0-100)
- Default:
50
BLOCK_PUNISH_CHANCE:
- Description: Probability of automatic block punish. A higher value means a higher chance of executing a block punish (0-100).
- Type: Integer (0-100)
- Default:
100
THROW_BREAK_CHANCE:
- Description: Probability of automatically breaking throws. A higher value means a higher chance of successfully breaking throws (0-100).
- Type: Integer (0-100)
- Default:
100
USE_SCRIPT_COMBO_FUNCTION:
- Description: Indicates whether to enable the built-in automatic macro input in the script.
- Type: Boolean
- Default:
true
(ON)
Dynamic Access:
- All configuration parameters can be accessed or modified dynamically through the
config.xx
interface. - To retrieve or update configuration values, use the methods provided by the
config.xx
API.