-
Posts
481 -
Joined
-
Last visited
-
Days Won
14
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by kiynox
-
[ @Stillo ] --- The inner workings of this video can still be applied to most games even though it may no longer working on the game itself (Stumble Guys) ---
-
[ @Bloxxy ] --- Yes, I mean it as partially. --- You can re-use existing socket by using HTTP Pipelining: See GET / HTTP/1.1\r\n Host: blah.com\r\n \r\n GET / HTTP/1.1\r\n Host: blah.com\r\n \r\n --- 200 bytes for headers, etc; is not a lot and still reasonable. ---
-
[ @Bloxxy ] --- Lua that's bundled inside Game Guardian cannot use external module and even some Lua internal modules. But, Game Guardian do support HTTP bequest, so your server needs to also support HTTP/HTTPS protocol, otherwise there's nothing you can do about it. Yes, even plain TCP aren't do-able. --- See request documentation: gg.makeRequest
-
[ @huanggua ] --- That's right. If it's doesn't fit, just replace the next instruction. ---
-
[ @Wizzy2008 ] --- Glad that you figured it out. May explain how you can do it? ---
- 32 replies
-
- Unity
- Online Games
-
(and 3 more)
Tagged with:
-
[ @Teito ] --- Bytes is Signed Char, it ranges from -128 to 127, that's maybe the reason it is randomized to -126 --- Do note that DWORD is limited to: 4.294.967.295, so you can't exceed this limit. I've seen that your input still falls into the safe-range but aren't able to do some changes. It can be caused by the score is being capped and you're already reach the highest score. Find something like "MaxScore()" function to change the limits. --- Mention the game's name, so we can also test it ourself. ---
-
[ @huanggua ] --- Make sure that you're know the difference between Arm and Thumb. The difference between both is that: Arm uses 4 hexes / 8 bytes, meaningwhile, Thumb usually uses only 2 hexes / 4 bytes. For example: --- It is important because you can only change one instruction with another one WITH the same hex length. You can replace the next instruction to fit your long-patches, but make sure that: if it's a function, you need to ends it with: Arm32: BX LR Arm64: RET ---
-
[ @Abdulb, @AhGun] Explain your problem here with some screenshot or logs ("Fix It" button -> Generate Logs), so others can help ---
-
[ @Wizzy2008 ] --- Depends, if the game allows multiple Host or has permission equivalent to Host, then you can. In most online games, you can gain Host level permissions through patching the game, you just need to find the function that will unlock the permissions (ex: is_murder() ) but you can't be the host (only permissions). This already happen on Among Us back then, where you can kick people or even be the impostor itself. --- [ @XEKEX ] Can confirm if the game is peer to peer, but you can also DDOS the in-game server (UDP) and have all players stuck. Ever tried it on PUBGM back in the day. ---
- 32 replies
-
- Unity
- Online Games
-
(and 3 more)
Tagged with:
-
[ @KabutHitam ] --- From what I understand, you're trying to set a large possible value. You can use this template: --- [ Float 0-65535 ] MOVW R0, #(1-65535) VMOV SO, R0 VCVT.F32.S32 S0, S0 VMOV R0, S0 BX LR --- [ Float 65535 - 131072 ]: R0 = R0 + R1 MOVW R0, #(0-65535) MOVW R1, #(0-65535) ADD R0, R0, R1 VMOV SO, R0 VCVT.F32.S32 SO, S0 VMOV RO, SO BX LR --- [ Float 131072 - 429503284]: R0 = (R0 x R1) + R1 MOVW R0, #(0-65535) MOVW R1, #(0-65535) --multiply here MUL R0, R0, R1 MOVW R1, #(0-65535) --addition here ADD R0, R0, R1 VMOV S0, R0 VCVT.F32.S32 S0, S0 VMOV R0, S0 BX LR --- *Above mnemonic are replicable for getting a really high value. *Do note that most function has it's own Max Limit, so you need to change them first (example: MaxHP & MinHP) *( credit: @BadCase )
-
How to convert xapk or apks to apk
kiynox replied to DARK_DEMON_SCRIPTER's topic in General Discussion
[ @Ayaanly ] --- Both format are bundle extension. APKS: bundles bunch of split apk, meanwhile, XAPKS: bundles APK with it's OBB. Well, atleast that's what I understand. --- -
[ @sparkx ] --- What "methods" to be more specific? Is it the way to change the value or in-game functions / methods? ---
-
[ @DoDevil ] --- On LDPlayer 9; once you install Magisk, you can still disable the root access from the settings but the "su" file still exist in "/system/bin". It is probably because of Magisk being installed into system partition which the "su" file, in this case, is in fact MagiskSu. --- Also based on my experiment, "/data/data/com.playhardlabs.heroes/files" is likely related to LIAPP Anti-Cheat. I'm still figuring things out. ---
-
This post cannot be displayed because it is in a forum which requires at least 1 post to view.
-
[ @KabutHitam ] --- Surely you can't get one but atleast you can still get "Contributor" badge with the least same feature. ---
-
[ @DoDevil ] --- I just notice that in older LDPlayer you can't delete "su" file from "/system/bin" as the default system.vmdk will override it again on each reboot. Also, once you delete it, you loose access to MagiskSu. I'll try with the updated LDPlayer with "write system.vmdk" feature. ---
-
[ @GRLeS ] --- Have you find it in all memory ranges? Inside Game Guardian -> = -> Select Memory Ranges -> Check everything. --- Inside the magnifying tab -> click on magnifying icon without (*) -> on the search set "type" from "???" to your desired datatypes. --- Your search will be exact by default (=), you can see the icon on the left of the value you want to search. ---
-
[ @GRLeS ] --- You missed the point of "Why it should use Virtual Space". All of the phones (exclude Android 4.0) requires the phone to be "Jailbreaked" first (this include IPhone). You need risky amount of things just to get your phone rooted: from Unlocking your phone Bootloader, Flashing your ROM, etc; that could lead into bootloop or just dead in general. That's why most of tutorial would say "it requires Virtual Space", since you can get "Sandboxed Root Permission". --- It is. It is used to be simpler but you can't deny the fact that security is envolving each generation. If you're experiencing hacking games on Android 4.0 KitKat, you just install "KingRoot" and you get your own Root Permission without alot of complicated things. I miss those days where I literally could hack others Wifi Network. --- And no, Game Guardian cannot work without Root. It is permanent.
-
[ @GRLeS ] --- To install Game Guardian, you just need Root and Game Guardian itself. 1) Lauch your LDPlayer first 2) In the top right corner, you will find a bunch of buttons, select the "Menu" (=) button 3) Select "Settings" 4) Select "Other Settings" 5) Set "Root Permission" to "Enable" 6) Click "Save Settings" 7) Restart the emulator (close it and start it again) 8. On emulator, install your Game Guardian. If you have it outside (on your PC) just drag the APK into the emulator and it will automaticly installs it. 9. Launch Game Guardian and select "Default" 10. Wait and it will ask for "Root" permission, select "Remember Choice Forever" and "Allow" it. 11. Done. --- Is that too hard? It is really simple in my opinion.
-
[ @MonkeySAN ] --- If the "Hide" option is to give Moderators ability to see your hidden message, then it is should be possible with Delete option along with content loggings. If you delete certain message, the deleted content can be still logged, this still give moderators advantage to see your deleted message. --- I'm certainly agree, this forum lacks of delete option. Even the "Edit" option is only available on higher ranks, what's up with that?
-
[ @GRLeS ] --- You cannot run Virtual Space on Emulator. It is like running Virtual Apps inside another Virtual Apps. Do note that Emulator is considered a Virtual, it can't run another virtual inside of it. --- Are you trying to install Game Guardian on Emulator itself or inside the Virtual Space. Refer to my #1 comment first, and yes, you can install GG on LDPlayer 9. --- I'm not sure your intention to use Virtual Space in this case. Need more context.
-
[ @Shaazrulz ] --- Change your SELinux into Permissive through Termux and do this command: su setenforce 0 --- After that go into GG -> "Fix It" button -> Switch to work with SELinux.
-
[ @Ethrixo ] --- It is to spoof the app to pretend that the bootloader is still locked. Some apps might detect root by looking at bootloaders being unlocked / open. ---
-
[ @DoDevil ] --- I'm not sure if the game has Emulator Detection. With clean instances, it triggers this: ---
-
[ @DoDevil ] --- Welp, I have also tried it on LDPlayer9 with Magisk installed into /system. Are you installing Magisk with Systemless? ---