Giter Site home page Giter Site logo

Comments (17)

TheMegafuji avatar TheMegafuji commented on September 16, 2024 3

Hey @Grey-97 and everyone, I didn't update the bot yet because I have been very very busy. For anyone who wants to contribute with the new version, first getting the latest APK (from the official store), use apktool to decompile the apk, inside the assets folder will be a app-randomstring.js
this is the main file and the one you need to look up into.
I've updated the app twice, the first one was in another repo, this repo has two of the updates, if you check the commits (problably 3f17cda) will have most of the updates, since its a pain in the ass to update, I left a comment //MEGA: at the top of each section.
The commit 86fbd23 is basically the code formated with very few additions, if you use vcs tools you can compare the current code with that commit's code and see the difference, perhaps there might be some pieces of code I missed the comment.

Some variables will change, because it runs through a obfuscator and it always do different results and variable names.

@Grey-97 you said the logic has changed, try loading the html in your PC and with devtools inspect the element and try sending console js commands to achieve the click, its certainly not fully protected, there are several ways to simulate click, I'll list some:

  1. element.click()
  2. Creating and dispatching MouseEvent (TouchEvents as well)
const event = new MouseEvent('click', { //here you can change to mouseUp, down, touchDown, etc..
  bubbles: true,
  cancelable: true,
  view: window
});
element.dispatchEvent(event);
  1. Triggering a click event using dispatchEvent (it basically does the same as the first, but who knows)
const event = document.createEvent('HTMLEvents');
event.initEvent('click', true, false);
element.dispatchEvent(event);
  1. Element.prototype.click.apply(element);

sure you can find plenty more, there are also a few examples in the code probably

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024 2

sure, I'm new to this but there is a lot of work to do, there have been a lot of updates and a lot of things to look at, I'd say I have 1/3 of the work done... Some files are huge and muy pc crashed a few times lol... I only have free time on Sunday and I can't guarantee that all the scripts will work but for now I will continue with the challenge.

from megaaethric.

TheMegafuji avatar TheMegafuji commented on September 16, 2024 1

I have setted up a tutorial in readme for generating the apk, have you tried it?

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024 1

I have setted up a tutorial in readme for generating the apk, have you tried it?

yes I read it, but it was my problem, I had an old version of java installed but after updating it seems to work flawlesly. my bad...

i decompiled this using apktool m, so far it's working fine, but i haven't tried all the features Try it yourself

https://mega.nz/file/yH5U1biZ#LOk7CxgRn7S4DXVgB1y82WjK_a6lMDjt3VqQ_AyfHzU

I cant find codex hack, its removed?

things I've removed that I remember are:

Autobuy (copy and paste should work)
Rendering All (I'm not sure why do we need this)
Blacklist/Whitelist (copy and paste should work )
zoom levels (not necessary since the game already has it)

I will do it next Sunday I guess

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024 1

We got fu**ed bois, time to move on, sorry Odie

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024 1

Peace ✌️

from megaaethric.

 avatar commented on September 16, 2024

If you get an update going, wanna share it? I'd love see this mod continued with but the creator seems to be doing other stuff for now :(

from megaaethric.

Matvel007 avatar Matvel007 commented on September 16, 2024

If you get an update going, wanna share it? I'd love see this mod continued with but the creator seems to be doing other stuff for now :(

most likely so

from megaaethric.

Axibed avatar Axibed commented on September 16, 2024

sure, I'm new to this but there is a lot of work to do, there have been a lot of updates and a lot of things to look at, I'd say I have 1/3 of the work done... Some files are huge and muy pc crashed a few times lol... I only have free time on Sunday and I can't guarantee that all the scripts will work but for now I will continue with the challenge.

Dude, we'll wait for u, good luck to u

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024

So what works and what dosen't (version 1.1.26)

I haven't been able to test everything but it seems that the only thing that doesn't work at the moment is the UI with the npc,monsters,etc... They have changed the rendering and some logic with the "click" and "mouseup" it seems that the old script doesn't catch it and that means that the bot can't farm automatically and you can't select them either... If you want me to put it for download let me know, if not you can continue with the old one without problems... Btw, haven't bothered to test it on android

from megaaethric.

Xray1716 avatar Xray1716 commented on September 16, 2024

I can't wait for the bot update. It would be nice if the bot could not only attack and use the magic of 1 slot, but also some spells and their sequence. Although I think it's not that easy. It's not artificial intelligence. But in any case, we all the community will be glad to see the release of a new version of the bot Mega Aethric! ❤

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024

I have spent too much time on this haha... I have removed a lot of things because... I'll be honest, I was lazy haha. Sorry @TheMegafuji for not having it in one piece but with so many updates I have kept it as short as possible. Still need to figure it out how to compile back to apk,

what I did is:
1 apktool b gamefolder
2 jarsigner -keystore aethric.keystore -verbose name.apk mega
3 apksigner sign --ks .\aethric.keystore name.apk
but I still can't install it on my android not sure why

But anyway I enjoyed the experience with js (I miss python)
v1.1.27
https://mega.nz/file/lIUGUS5I#gFhF2AyP1MVpkeYP2_lgLUm0y6inYX0wd7zcWNedPbg

from megaaethric.

Axibed avatar Axibed commented on September 16, 2024

I have spent too much time on this haha... I have removed a lot of things because... I'll be honest, I was lazy haha. Sorry @TheMegafuji for not having it in one piece but with so many updates I have kept it as short as possible. Still need to figure it out how to compile back to apk,

what I did is: 1 apktool b gamefolder 2 jarsigner -keystore aethric.keystore -verbose name.apk mega 3 apksigner sign --ks .\aethric.keystore name.apk but I still can't install it on my android not sure why

But anyway I enjoyed the experience with js (I miss python) v1.1.27 https://mega.nz/file/lIUGUS5I#gFhF2AyP1MVpkeYP2_lgLUm0y6inYX0wd7zcWNedPbg

Bro, The link is invalid

from megaaethric.

Grey-97 avatar Grey-97 commented on September 16, 2024

I have spent too much time on this haha... I have removed a lot of things because... I'll be honest, I was lazy haha. Sorry @TheMegafuji for not having it in one piece but with so many updates I have kept it as short as possible. Still need to figure it out how to compile back to apk,
what I did is: 1 apktool b gamefolder 2 jarsigner -keystore aethric.keystore -verbose name.apk mega 3 apksigner sign --ks .\aethric.keystore name.apk but I still can't install it on my android not sure why
But anyway I enjoyed the experience with js (I miss python) v1.1.27 https://mega.nz/file/lIUGUS5I#gFhF2AyP1MVpkeYP2_lgLUm0y6inYX0wd7zcWNedPbg

Bro, The link is invalid

It works, just copy and paste it don't click on it

from megaaethric.

Axibed avatar Axibed commented on September 16, 2024

i decompiled this using apktool m, so far it's working fine, but i haven't tried all the features Try it yourself

https://mega.nz/file/yH5U1biZ#LOk7CxgRn7S4DXVgB1y82WjK_a6lMDjt3VqQ_AyfHzU

I cant find codex hack, its removed?

Yes, the add mobs to white-list in codex button is gone

from megaaethric.

Sfdlss avatar Sfdlss commented on September 16, 2024

Be careful everyone, my account got disabled when using new version of this mod

Its safer when using original mod by megafuji

I try opening app with original version but nothing change

Screen_Recording_20230607_073030_Aethric.mp4

from megaaethric.

Xray1716 avatar Xray1716 commented on September 16, 2024

Будьте осторожны, моя учетная запись была отключена при использовании новой версии этого мода.

Безопаснее использовать оригинальный мод от megafuji.

Я пытаюсь открыть приложение с оригинальной версией, но ничего не меняется

Screen_Recording_20230607_073030_Aethric.mp4

I was banned too, it's okay. I started at first.

from megaaethric.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.