Bootstrap

学了lua,用节点精灵写了D音的脚本

compile("Sunckkk~:2.2")

print("开启抖音极速版")

runApp("com.ss.android.ugc.aweme.lite")

s = getScreen();

if s then 

    --横竖屏切换后,宽高自动转换

    --print(s.width);-- 屏幕宽度

    w = s.width;

    --print(s.height)-- 屏幕高度

    h = s.height;

end

x1 = math.random(w/4,w/4*3)

y1 = math.random(h/4*3.25,h/4*3.5)

x2= math.random(w/4,w/4*3)

y2 = math.random(h/4*0.5,h/4*0.75)

 

function 划动视频()

    i=1

    while true do 

        print("划动第"..i.."个视频")

        t=math.random(8,10)

        S_Swipe(x1,y1,x2,y2,t*100)

        t1=math.random(8,30)

        print("观看"..t1.."秒")

        sleep(t1*1000)

        i=i+1

        clearLog();-- 清空悬浮窗内的日志log

    end

end

 

划动视频()

 

;