There is a challenge mode in the adventure mode of King glory , You can get more gold coins for the first time , If you challenge again later, you will still get a small amount of gold coins , This is not bug, Only if you don't mind manual brute force, you can also brush gold coins .
Recommended level : The fallen wasteland - Witch memories
This level uses pure output heroes 20 You can play... In about seconds BOSS,50 You can pass the customs in about seconds , You can get rewards every time you repeat customs clearance 19 Gold coin . I suggest you go through the customs manually before opening and hanging up . This is the principle of the game .
Simply speaking , The following steps are required :
As long as you can simulate the screen and click, you can complete the script of brushing gold coins , The easiest way to click on the Android simulation interface is to use ADB dispatch orders , Unwanted root mobile phone , No need to install third party software , Convenient and quick .ADB Command click screen coordinates [x, y] You can use commands :
adb shell input tap x y
IOS Whether there are similar tools and commands , I don't know , If so, it's easy to automatically brush gold coins .
If it's just to brush gold coins , Just install the drive and ADB Just tools .
If everything is ready , Then the steps are very simple .
adb devices
test adb And the phone status is ready .$ adb devices List of devices attached b******4 device
Analog click screen , For example, you can open the drawing software , And then run the command :
adb shell input tap 500 500
If everything OK, Then you will see the drawing software in coordinates (500,500) There is a point in the position of .
The screen position that needs to be clicked for customs clearance is fixed , With notes, we just need less than 30 Line code can complete .
def tap_screen(x, y): os.system('adb shell input tap {} {}'.format(x, y)) def do_money_work(): print('#0 start the game') tap_screen(1600, 970) sleep(3) print('#1 ready, go!!!') tap_screen(1450, 910) sleep(15) print('#2 auto power on!') tap_screen(1780, 40) for i in range(25): tap_screen(1000, 500) sleep(1) print('#3 do it again...\n') tap_screen(1430, 980) sleep(3)
Then we write a main function to cycle the money .
if __name__ == '__main__': for i in range(repeat_times): print('round #{}'.format(i + 1)) do_money_work()
then :
kog.py
To local .kog.py
Parameters in .( Cell phone resolution , Number of times to brush gold, etc )python kog.py
Be careful :
This script is purely an experience of entertainment and exploration , If you are banned for violating the rules of the game , I'm not responsible for .
&n