|
Post by tribalwind on May 12, 2016 10:04:05 GMT
i was editing post to be more clear, thanks you for your help
|
|
|
Post by tobbie on May 14, 2016 15:23:25 GMT
Hi! Im using the Tap titans click script which is working great but i want it to tap on more then one spot but ive tried to change the script several times but it dont work. So the three places i want to tap is the ones in the code under. Also if its possible to do can another tap be trigged lets say 10min after the scrips has been activated on a designated spot? -- ========== Settings ================ Settings:setCompareDimension(true, 540) Settings:setScriptDimension(true, 540) -- ========== main program =========== while (true) do continueClick(270, 320, 20, 20, 100) continueClick(460, 215, 20, 20, 100) continueClick(80, 215, 20, 20, 100) continueClick(100, 810, 20, 20, 100) - every 10min for example end Thanks in advance!
|
|
|
Post by AnkuLua on May 14, 2016 15:38:57 GMT
Hi! Im using the Tap titans click script for the game "Tap tycoon" which is working great but i want it to tap on more then one spot but ive tried to change the script several times but it dont work. So the three places i want to tap is the ones in the code under. Also if its possible to do can another tap be trigged lets say 10min after the scrips has been activated on a designated spot? -- ========== Settings ================ Settings:setCompareDimension(true, 540) Settings:setScriptDimension(true, 540) -- ========== main program =========== while (true) do continueClick(270, 320, 20, 20, 100) continueClick(460, 215, 20, 20, 100) continueClick(80, 215, 20, 20, 100) continueClick(100, 810, 20, 20, 100) - every 10min for example end Thanks in advance! If you want to tap on three spots at the same time, use continueMultiTouch()Try following script -- ========== Settings ================ Settings:setCompareDimension(true, 540) Settings:setScriptDimension(true, 540)
-- ========== main program =========== timer = Timer() while (true) do clickList = {Location(270, 320), Location(460,215), Location(80,215) } continueMultiTouch(clickList, 100) if (timer:check() > (60*10)) then continueClick(100, 810, 20, 20, 100) -- every 10min for example timer:set() end
end
|
|
|
Post by tobbie on May 14, 2016 16:34:18 GMT
It works great! But I removed one of the three tapspots because it make max with two. The time tap works also great for unlocking bonuses. But can this be made to multiple tapspots to? Then it will be maxed on everything. I can do the x y axis so just put the same value.
Great help and fast replies! Thanks in advance!
|
|
|
Post by AnkuLua on May 14, 2016 23:12:39 GMT
It works great! But I removed one of the three tapspots because it make max with two. The time tap works also great for unlocking bonuses. But can this be made to multiple tapspots to? Then it will be maxed on everything. I can do the x y axis so just put the same value. Great help and fast replies! Thanks in advance! Yes. the time tap could also use multiple taps.
|
|
|
Post by ginioforces on May 22, 2016 15:52:29 GMT
Can you help me in developing a script for Ragnarok mobile game? It takes only several clicks, plus random walk to find monsters then attack.
|
|
Kako
Contributors
Posts: 105
|
Post by Kako on May 22, 2016 19:03:45 GMT
Can you help me in developing a script for Ragnarok mobile game? It takes only several clicks, plus random walk to find monsters then attack. Could you at least be more specific about what Ragnarok game you're talking about? If you provide a Google Play link it should be clear
|
|
|
Post by ginioforces on May 23, 2016 0:12:07 GMT
|
|
|
Post by raj1000 on May 31, 2016 11:53:10 GMT
how to make a script that click on a particular image every time when it appears on the screen.
|
|
|
Post by AnkuLua on May 31, 2016 12:15:21 GMT
how to make a script that click on a particular image every time when it appears on the screen. use while(true) loop while (true) do existsClick("target.png") end
|
|
|
Post by raj1000 on May 31, 2016 17:43:23 GMT
thanks for the script
|
|
|
Post by hellokitty on Jun 12, 2016 21:18:08 GMT
Hello guys! I would like to make a script for a game that i play to xp fast but i come across with some problem. First i don't have much knowledge of programming with Lua but i do my best. So i would like to ask something with the command waitClick("target.png",60). When coming this command in my script , it never actually keep searching for this image for 60 seconds, just go to the next command without waiting and coming error. What command do i must put to keep searching this image for 60 second and if it find the image, click on it? And something else, i would like when finish all my script to start searching for a specific image (maximum 30 minutes to appear this image) and when appear to start again all the script from beginning again and again. I used the command While (exists("target.png")) do mpla mpla mpla end. But this actually never work.It start again the script without appear the specific image i would like. Any suggestion?? Thanks in advance for your time!
|
|
|
Post by AnkuLua on Jun 13, 2016 1:21:15 GMT
It's strange.
Please add highLight() and make the scripts like following
waitClick("target.png",60) getLastMatch():highlight(2) -- this should highlight the searched target Please share your script, images and screenshots if possible.
|
|
|
Post by tinotk on Jun 13, 2016 23:45:15 GMT
Will you consider adding a dropdown for GUI?
|
|
|
Post by hellokitty on Jun 14, 2016 0:21:48 GMT
Thanks admin that really help me to find my mistake. The image that i had captured, wasn't so clear so sometime clicks in different position and when was coming the next command, coming and the error! Now i fixed all incorrect image and work like a charm !!
|
|