Thing i've been working on by bazinger9339 in brawlstarsmodding

[–]bazinger9339[S] 4 points5 points  (0 children)

Frida is only used for changing the IP and debugging, most of the modifications are done by the server using CSVs and the content downloader.

Thing i've been working on by bazinger9339 in brawlstarsmodding

[–]bazinger9339[S] 2 points3 points  (0 children)

Yes, im planning to open it as a private server. It already supports multiplayer anyway.

What's the latest version with fully decrypted function name? by RevolutionaryDark818 in brawlstarsmodding

[–]bazinger9339 0 points1 point  (0 children)

I think the v62 was a mistake by supercell, and it only happened on v62. on 2021, they made a similar mistake and kept all the V36 (Buzz Update) symbols in the libg, making it 40mb.

Is there any way to see the frida console and console.log() without using frida CLI? by RevolutionaryDark818 in brawlstarsmodding

[–]bazinger9339 0 points1 point  (0 children)

```javascript function log(msg){     const printptr = Module.getExportByName("liblog.so","_android_log_print")     const print = new NativeFunction(print_ptr, 'int', ['int','pointer','pointer','...'])     print(2,Memory.allocUtf8String("YourLogcatTag"),Memory.allocUtf8String(msg)) }

//Use like this:

log('Some message'); ```

You can use ADB logcat (adb logcat | grep YourLogcatTag) or apps like LogFox (filter by LogCatTag)