Jump to content

Wembbu

Ascended
  • Posts

    49
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Wembbu

  1. 10 hours ago, MemOzax said:

    What's the best virtual space that work well with gg and support all games ?

    If it was 2017 I'd say virtualXposed but right now I would assume it would be F1VM or VMOS pro

  2. 23 hours ago, Dr4gon65 said:

    What do you mean?

    Use gdb/lldb to watch what I'm assuming would read the value, find the instruction you need to edit and calculate offset to it 

  3. 9 hours ago, Dr4gon65 said:

    Hello my friends I want to ask something.there is a game called madout2 and a hack called speed with gun now I want to convert it into offset it's value is 0.04, range anonymous,type float, address is 5F930DD0 so from which will I take the lib like from xa ca cb ps?

    Debug it and find the needed offset

  4. 16 hours ago, VincentEmmanuel said:

    Thanks!

    So to search for values in ordered value back to back I can do 2D;0D:1: 

    Is that the correct syntax ?

    No. If you want it to search in the reverse order you'd need to type in 0D;2D::5 because it searches in THE ORDER you type it in

    Also that 1 doesn't make sense as that group range is only used for byte searches

  5. On 2/2/2024 at 6:42 PM, Dr4gon65 said:

    Hello I am a values finder and I want to ask you something that how do we take out the correct values from the game gaurdian generated value files. Like the file in the image

     

    Screenshot_20240202-203941.png

    I'm not sure what these are but if you REALLY need a few of them you can just copy that hex after the hashtag on the left and goto it as the address. Pretty inefficient but it would work fine for small scale

  6. 9 hours ago, VincentEmmanuel said:

    Hi all,

    I know the values of 2 consecutive address 

    eg
    BXXXXXXXX 2D
    BXXXXXXXX 0D

    How can i search for 2D and 0D and return only results where they occur on top of each other?

    What you'd need is:

    2D;0D::5

    2D;0D is the group search of two values

    : means grouped within certain distance from each other and the second ":" means it's ordered i.g. they go one after another in the specified order

    5 is the group size i.g. how far away they are from one another

  7. On 2/17/2024 at 9:34 AM, Unknownharry said:

    1. In .... All types of Emulators Like X8-Sandbox/VMOS .... It Shows Us Error Of [ Unfortunately Hcr2 Has Stopped ] But it was Working Yesterday Until Patch Update Release But Root Device Don't Have This Problem .

    2. It was Working Yesterday 1.59.3 when User is Offline But When On Internet It was Internel Corrupted Something....{ Only On Emulator Phone }... Can Someone Find Us Solution On This Try To Measure Thing And there are better People this Some Stuff.... Give Me Reply on it ... DevS :- FingerSoft,May had find Solutions on it .... They Got Huge Loss By Me* and my other People like Like ... We Make Script to Unlock 🔓 {Premium pass} which was 2$ And Almost like 100k Use was Done By Players..... but you Can Guess What it Been Happen to Company 😂 @NoFear @BadCase

    Just downloaded the update, works fine. Android 14 is surprisingly also supported. My emulator runs it fine too. Your problem seems to be just specific to you. 

  8. I recently made a script that would take some data from RAM and make it readable. It uses gg.copyText() function to copy that data in the following chunk:
     

                printRes = tostring(getTune1[1].value + 1) .. "/" .. tostring(getTune2[1].value + 1) .. "/" .. tostring(getTune3[1].value + 1) ..
                            "/" .. tostring(getTune4[1].value + 1) .. "\n" .. strPart1 .. "-" .. tostring(getPartTune1[1].value) ..
                            " " .. strPart2 .. "-" .. tostring(getPartTune2[1].value) .. " " .. strPart3 .. "-" ..
                            tostring(getPartTune3[1].value) .. "\nBy :flag_" .. strFlag .. ":" .. strName .. "\nusing " ..
                            strVehicle .. "\nIn " .. strMap .. "\non 20" .. strDate .. "\nWith a time of: " ..
                            tostring(getTime[1].value) .. " seconds\n\n"
    
                collectTune = gg.alert(printRes, "Continue", "Copy the tune")
                if collectTune == 1 then
                    return 0
                else
                    gg.copyText(printRes)
                end

    now I did assume that it was an issue with me assigning it to a variable and then copying the variable but that didn't seem to be the problem as it still didn't copy the spaces. Attached is what I got displayed in the gg.alert() function which seems to be completely fine and have all the spaces needed. Following text is what I received to my clipboard after pressing "Copy the tune" button in the alert function:

    20/20/10/20
    winter_tyres-15start_boost-10nitro-4
    By:flag_fi:RS3113
    usingsuperbike
    Indark_roads_cup_03_04
    on2024_2_february
    Withatimeof:9.55695629119873seconds

    I couldn't find any explanation anywhere.

    image_2024-02-16_225053680.png

  9. On 12/27/2023 at 1:59 PM, EnMan said:

    I don't know in advance which values in memory are current. But I have a guess that they have already been formed. I know the previous value. (This is a pair of values on two dice from 1 to 6). Can I somehow find these values before they are formed? I wanted save values before change then filter it.

    Pretty sure what you want to do is find an address where a specific value is going to appear.

    I'm pretty sure you can't do exactly that, but what you can can do is use a debugger (lldb or gdb) to break the instruction and see when and where exactly it writes a value of a specific register. 

  10. 1 hour ago, Siivme said:

    Well after a long time of trying I wasn't able to run carx street on a virtual space the best progress I got is with DUALSPACE lite where I was able to reach this Page . Any help of how I can do it 0

    Phone: poco x3 pro android 12

    Screenshot_2023-12-17-21-07-03-878_com.ludashi.superboost.jpg

    Root your phone, hack there

    Best advice I can give you.

  11. First of all, I wanna know what game this is that you are trying to hack

    Second of all, I highly doubt they would keep shop prices stored locally while having each player's balance stored online, on servers

    And lastly, if you want to see what writes/causes a change in a value, you can use lldb or gdb in Termux and type in a command

    for lldb - wa s e -s [size in bytes of the value] -w write -- 0x[hex value of the address]

    for gdb - watch 0x[hex value of the address]

     

    But I highly doubt that would help you since that doesn't work for many games as they use all sorts of protection against debugging including ptrace protection which completely disables debugging AND even if you get a hit somewhere it wouldn't lead you anywhere since the value was edited locally only AFTER it was edited on servers.

  12. On 11/26/2023 at 6:12 AM, XenosShell said:

    GameGuardian not work on Android 14. When I install an application, the package installer says that this application was created for an earlier version of Android.

    Perhaps, try downgrading to at least A11

    A11 was the last one to be somewhat stable with almost all games and GG for me

    The most stable right now I would say A10

    For A12-13 you can use VMOS Pro. No other VM worked for me on either androids. 

    So in conclusion, you should downgrade your phone to either A11 or A10 in order to have any stability. A12-14 aren't very stable and not many games are fully optimised for it, especially GG which hasn't been updated for awhile.

  13. On 11/16/2023 at 3:28 AM, Number0123 said:

    When I Startup Parallel Space, It Keeps Crashing On Startup. I Wanna Cheat In CSR 2. But Parallel Space Won't Let Me Make My Game Guardian Without Root! image.thumb.png.400eef2445ef3e6f1f13222af332c902.png

    Judging by the "nox" tag you added to your post I can guess you are trying to use a virtual space on an emulator. As far as I know the most popular android emulators don't support virtualization which results in inability to use any virtual space or emulator within another android emulator. I do know that VMware workstation supports virtualization, but it's very demanding in terms of hardware. Your best option is to root your nox and hack there directly.

  14. On 11/19/2023 at 12:46 PM, Naijunreal said:

    I need help on finding a virtual space that works on my phone (xiaomi) Android 13, there was one that used to work on my phone but accidentally deleted it and now i can't find it, the app logo looks like the mulitple accounts but the app name is Multi space, kgo doesnt work for me either, i have a virtual space but its really laggy and sometimes crashes.

    You clearly didn't try to use the search bar. You can look in my profile, in recent activities you'll find my topic covering same very issue. You'll find your answer there.

  15. Cars Unlock script 1.58.1


    This script lets you unlock any Vehicle locked behind the curtains in the newest version of HCR2
    I gotta admit I absolutely did not like that update
    Huge thanks to NoFear for telling me all the edits for the script, my brain was too slow lmao

    This script is made only for the arm64/v8a version of the game


     

  16. So this was hard, but I got VMOS Pro to work

    All other VMs either crashed or... Also crashed....

    VMOS from official website didn't work

    Downloaded an older one (1.4.5) with English localisation which seems to be working fine

    Thanks for the help!

  17. 1 hour ago, Xaviesz said:

    [ @Wembbu ]
    ---

    Currently there's no stable Virtual Apps for Android 13. Some of A13 devices have stable Virtual Apps, like Xiaomi. I'm afraid that you need to keep finding that suits your device. I heard that VMos, F1VM, VPhoneGaGa & GSpace works on some A13. Might try this lists of choices:

    ---
    With that being said, the alternative is to use Android Emulator on your Computer/PC/Laptop. I recommend to use: LDPlayer. It is really difficult to find apps that already adjusted to A13. Might as well wait for a couple of years to see most apps adjusted to A13.
    ---

    Thanks for suggesting some.

    I already use BlueStacks on PC which works perfectly fine for me

    I was just going on a vacation and wanted to do a bit of hacking there too.

    I'll try everything you suggested and come back with results if someone else has a similar issue.

     

  18. Just got a very powerful OP 11R

    Can't seem to find any Virtual Space suitable for A13

    Any chance there even is one?

    F1VM doesn't wanna show process name in process list. It even said that it doesnt have root which it does have

    x8sb is stuck on first launch, I tried resetting it already which didn't work.

    octopus crashes...

    parallel space crashes...

    I don't wanna root because I already killed a OP 10T which costed me 500$

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.