{ "name": "RedNoteBrowsingAndThumbsUp", "description": "小红书随机浏览和点赞", "variables": { "page-index": 0, "up-or-down": 0, "swipe-count": 0, "click-x": 0, "click-y": 0, "random-click-pos": "", "stay-duration": 0, "send-btn-pos": "", "b-like-click": 0 }, "execute": [ { "type": "while", "condition": "1", "body": [ { "type": "random", "inVars": ["1", "3"], "outVars": ["{swipe-count}"] }, { "type": "schedule", "condition": { "interval": "7s", "repeat": "{swipe-count}" }, "interval": [ { "type": "adb", "method": "swipe", "inVars": ["up-down"], "outVars": [] } ] }, { "type": "random", "inVars": ["200", "780"], "outVars": ["{click-x}"] }, { "type": "random", "inVars": ["400", "1500"], "outVars": ["{click-y}"] }, { "type": "set", "variable": "{random-click-pos}", "value": "{click-x},{click-y}" }, { "type": "adb", "method": "click", "inVars": ["{random-click-pos}"] }, { "type": "random", "inVars": [10, 2000], "outVars": ["{stay-duration}"] }, { "type": "try", "try": [ { "type": "img-center-point-location", "inVars": ["视频点赞.png", [0.2, 1.6]], "outVars": ["{send-btn-pos}"] } ], "success": [ { "type": "random", "inVars": ["2", "10"], "outVars": ["{swipe-count}"] }, { "type": "for", "times": "{swipe-count}", "variable": "{i}", "body": [ { "type": "random", "inVars": [5,30], "outVars": ["{stay-duration}"] }, { "type": "delay", "value": "{{stay-duration}}s" }, { "type": "adb", "method": "swipe", "inVars": ["down-up"], "outVars": [] }, { "type": "if", "condition": "{stay-duration} > 25", "ture": [ { "type": "random", "inVars": [0, 1], "outVars": ["{b-like-click}"] }, { "type": "if", "condition": "{b-like-click} == 1", "ture": [ { "type": "adb", "method": "click", "inVars": ["{send-btn-pos}"] } ] } ] } ] } ], "fail": [ { "type": "echo", "value": "点赞图标匹配失败" } ] }, { "type": "adb", "method": "keyevent", "inVars": ["4"], "outVars": [] } ] } ] }