| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- {
- "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",
- "then": [
- {
- "type": "random",
- "inVars": [
- 0,
- 1
- ],
- "outVars": [
- "{b-like-click}"
- ]
- },
- {
- "type": "if",
- "condition": "{b-like-click} == 1",
- "then": [
- {
- "type": "adb",
- "method": "click",
- "inVars": [
- "{send-btn-pos}"
- ]
- }
- ],
- "else": []
- }
- ],
- "else": []
- }
- ]
- }
- ],
- "fail": [
- {
- "type": "echo",
- "inVars": [
- "点赞图标匹配失败"
- ]
- }
- ]
- },
- {
- "type": "adb",
- "method": "keyevent",
- "inVars": [
- "4"
- ],
- "outVars": []
- }
- ]
- }
- ]
- }
|