英国紳士の午後

メタルマンをこよなく愛すロックマン系管理人ブログ
メタルマンはメタルブレードで死ぬ

ツムツムの自動プレイについて その3

2016年03月11日 11時53分55秒 | Weblog
自動プレイのソースを公開する。
まあ実用性はほぼないので、こんなのもあるよー程度で。
使用は自己責任でおなしゃす。
スキルも自動でタップするので、レイア姫みたいなスキル発動時、ツムの落下が止まらないスキルを使用するとコイン稼ぎにはいい。
まぁハート交換ライングループ入るのが、一番効率いいけど。
問題あれば消します。

-- 対応端末:iphone6
-- 0.30
-- ツムツムオートプレイ
-- ランダム点を始点として、円形になぞる
-- ---------------------------
-- 変数定義
-- ---------------------------
x = 0;
y = 0;
flg_end = 0;
-- ---------------------------
-- f_touchmove:
-- ---------------------------
function f_touchmove(lw_x,lw_y)

-- スライド
for i = 1,8 do
x = x + lw_x;
y = y + lw_y;
touchMove(0,x,y);
usleep(1000);
end

end
-- ---------------------------
-- main:主処理
-- ---------------------------

repeat

x = math.random( 50, 700);
y = math.random(450,1000);

touchDown(0,x,y);
usleep(10000);

-- 1週目
f_touchmove( 0, -10);
f_touchmove(-10, 5);
f_touchmove( 0, 10);
f_touchmove( 10, 5);
f_touchmove( 10, -5);
f_touchmove( 0, -20);
f_touchmove(-10, -5);

-- 2週目
f_touchmove(-20, 10);
f_touchmove( 0, 20);
f_touchmove( 20, 10);
f_touchmove( 20, -10);
f_touchmove( 0, -30);
f_touchmove(-20, -10);

touchUp(0,x,y);
usleep(10000);

-- スキルタップ判定
result = findColor(16373504,1,{90, 1080,50, 20});
for i,v in pairs(result) do
tap(90,1080);
usleep(2000000);
end

-- 終了判定
result = {};
result = findColor(16763659,1,{140, 120, 15, 15});
for i,v in pairs(result) do
flg_end = 1;
end

until flg_end == 1
コメント
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする