news

X8 Tapper advanced mode tutorial

X8 Auto Tapper plugin is only available in X8 0.3.0.0 or higher.

Simple ModeYou can only set one auto tap position. If you need more positions or other customized content, you need to use the advanced mode of the X8 Auto Tapper.

Advanced mode Using the Lua engine, the most common example: Click on 2 positions.

Copy the above code into the input box of the tapper plugin, modify the coordinate position as needed, and click Run.

FAQ:

1, how to find the coordinates of the position to tap?

Set position in simple mode, write down this position. If there are multiple points, repeat it. You will use that positions when you write lua script.

2, the game I play needs to click 5 points, loop for 10 times, how to set up?

This can be done using for loop,

3, can’t stop after starting, what should I do?

This is usually because Delay is set too short, and the system can’t receive taps from your finger.

The average human touch speed is about 100ms, and it is recommended not to be less than 100ms.

In this case, forces the return to the desktop, clears the game progress, re-enters the game.

4, script auto stop after starting, what should I do?

First check if the script is wrong: 1, use English symbols, such as commas and parentheses; 2, the English case is wrong, strictly follow; 3. The contents of the loop body must start with 4 spaces.

Next, check the script logic, for example, there is no loop, of course, it ends.

Appendix, other functions

TouchDown

Features

Syntax

Parameter description

Example

TouchMove

Features

Syntax

Parameter description

TouchUp

Features

Syntax

Parameter description

KeyDown

Features

Syntax

Parameter description

Example

KeyPress

Features

Syntax

Parameter description

Example

KeyUp

Features

Syntax

Parameter description

Example

Swipe

Features

Syntax

Parameter description

Example

Tap

Features

Syntax

Parameter description

Example

Touch

Features

Syntax

Parameter description

Example

Delay

Features

Syntax

Parameter description

Example

Virtual Keycode Table

There are a total of 223 android virtual key codes, ranging from 0-222, one of which is a common character for pc keyboard operations, and one for android comes with Some of the features, the other part is unknown.
This table is mainly for the key code of the known function. It establishes a character constant and virtual code comparison and description. The key code of the unknown function is not displayed here. The key code that is not displayed can only be simulated by keypress, keydown and keyup.