|
Post by incendie on Feb 2, 2017 23:52:05 GMT
So i'm trying to zoom out in summoners war using
zoom(50, 350, 330, 350, 1200, 350, 350, 350, 300)
but all this does is move the move the screen right, right, right, then up, up twice.
I don't understand how the zoom function works and what does the "step" mean.
|
|
|
Post by AnkuLua on Feb 3, 2017 5:39:37 GMT
Is there scene allowing zoom in summoners war?
Step means how fast to zoom. Bigger number means your fingers moving more slowly.
|
|
|
Post by incendie on Feb 3, 2017 6:53:26 GMT
Is there scene allowing zoom in summoners war? Step means how fast to zoom. Bigger number means your fingers moving more slowly. Yes, on the player island where the magic shop and summoning hexagrams are located. Im trying to get the player map zoomed out as far as possible before searching the magic shop
|
|
|
Post by incendie on Feb 3, 2017 18:31:05 GMT
Is there scene allowing zoom in summoners war? Step means how fast to zoom. Bigger number means your fingers moving more slowly. Yes, on the player island where the magic shop and summoning hexagrams are located. Im trying to get the player map zoomed out as far as possible before searching the magic shop The script goes like this zoom(50, 350, 330, 350, 1200, 350, 350, 350, 300) zoom(50, 350, 330, 350, 1200, 350, 350, 350, 300) zoom(50, 350, 330, 350, 1200, 350, 350, 350, 300) FindMagicShop() All the zoom did was move the screen to the right 3 times
|
|
|
Post by AnkuLua on Feb 4, 2017 4:27:08 GMT
Be careful about the values representing your fingers. The values in your script doesn't always hit the space, but some items.
Following one works for us.
Settings:setScriptDimension(true, 1280) -- ========== main program ===========
zoom(200,600,500,400, 950,100, 600,300,300)
Considering that there is also rotation in Summoners war, it may not be good idea to zoom. Maybe swipe() or dragDrop() is good enough.
|
|