Jump to content

g1doz

Members
  • Posts

    88
  • Joined

  • Last visited

Posts posted by g1doz

  1. 2 hours ago, kiynox said:

    [ @g1doz ]
    ---

    Probably there's more than one xor key, just try to change the xor key to 0.
    ---

    I tried it and some of values that was 0 and I changed to 1 effect like this 

     

    Game crash

    Or

    The encrypted values changed

    Or

    The address of encrypted values become purple

    I think I discovered the values that used in encryption look into this:

     

    all three real values between 1000 ~ 2999

     

    value encrypted 1,858,284,306

    maybe the keys

    1,585,449,752

    126

     

    value encrypted 1,858,283,625

    maybe the keys

    1,585,449,792

    126

     

    value encrypted 1,858,283,632

    maybe the keys

    1,585,449,832

    126

     

    Those value that have pattern is under the encrypted value and I think they related to encryption because when I change them they back automatically and if I freeze them the game crash and also between every number that above 126 those numbers have a pattern which is each one bigger than other by 40 so what do you think? How can I decrypt this?

  2. Hi

    I want to know the real value of the gems in king of thieves.

    But the gems value are encrypted and I find a way to find them without their values but by its colors and this is the result:

     

    Left gem: encrypted value 1,960,750,621 / Unencrypted expected value 3000 ~ 9999

     

    center gem: encrypted value 1,960,748,331 / Unencrypted expected value 1000 ~ 2999

     

    Right gem: encrypted value 1,960,748,995 / size: Unencrypted expected value 1000 ~ 2999

     

    those is the unchanged value near to them and maybe one of them is the xor key

    482,434,872

    482,434,912

    1,102,053,376

    482,434,952

    1,104,764,928

     

    and those a bit away from them 

    1,109,778,944

    1,088,290,816

    1,107,354,304

    1,104,764,928

    1,109,779,136

     

    I'll be very appreciated for any kind of help. Thanks in advance 

  3. On 8/30/2019 at 9:46 AM, Rs92ks said:

    zxc is linked for search,clear and get results.

    We searching 3 numbers and saving to h1,2,3. You can edit it. No more searches if your numbers not changes. Else u can search and set h1,2,3 again.

    Rs92ks how to set h1=x(3) and h2,h3 without search again ? Because I will know 32 value i don't want to research again because this need many and many time

    I also want all its values to be saved in gg.addListItems or are they the same with addListItems or = ?

  4. 56 minutes ago, Rs92ks said:

    zxc is linked for search,clear and get results.

    We searching 3 numbers and saving to h1,2,3. You can edit it. No more searches if your numbers not changes. Else u can search and set h1,2,3 again.

    thx you so much

  5. 59 minutes ago, Enyby said:

    There can be many solutions.
     1. Use files to save and restore state. Remember what has changed and look for changes.
     2. Search once, remember and restore the address, change the value without re-searching.
     3. Find values nearby and rely on them when searching.

    in step 2 Can you show me What I need from api ? example gg.ect...

  6. 54 minutes ago, bukandewa said:

    Try to add some of nearby value in your group search. 

     For example, 1000;2000;3000

    3 steps Above 1000 is 500, then you can try 500;1000;2000;3000.

    3 steps below 3000 is 100, then you can change to 500;1000;2000;3000;100.

    And so on, until the group search is find desire value, if group search is not direct to your desire value, restart, try different combinations. 

    Yeah, it is so boring, you need to restart the game many times.

    i can only find these values just in this order and arrangement

    [added 0 minutes later]
    55 minutes ago, Enyby said:

    There can be many solutions.
     1. Use files to save and restore state. Remember what has changed and look for changes.
     2. Search once, remember and restore the address, change the value without re-searching.
     3. Find values nearby and rely on them when searching.

    thank you dude ❤️

    [added 3 minutes later]
    50 minutes ago, Rs92ks said:
    
    z=gg.searchNumber
    x=gg.getResults
    c=gg.clearResults
    
    z('1000;2000;3000::9',4)
    z('1000',4)
    h1=x(3)
    
    c()
    z('1000;2000;3000::9',4)
    z('2000',4)
    h2=x(3)
    
    c()
    z('1000;2000;3000::9',4)
    z('3000',4)
    h3=x(3)

     

    I didn't understand you well can you explain more !!

  7. Hello guys i need a help about lua script

    For example, I have a basic line of values and i can only find these values just in this order and arrangement

    gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD)

    and each value represents something in the game and in order to activate the cheat to a first value or any value in the line you must search for the same line once again okay?

    So this line is basic to found this values, the problem lies about i activated the first value "1000" and edit this to "1111"

    If I now want to activate second cheat, i can't because the main line "1000;2000;3000:9" is not the same as after the first cheat was activated "1111;2000;3000:9" and so on the rest of the values

    Well my question is how to update the main search when I search for a second value, the search is updated according to whether a search was done before or not

    For example, We do on this script

    function home()
    menu = gg.choice({"Hack 1","Hack 2","Hack 3")
    if menu == 1 then hack_1() end
    if menu == 2 then hack_2() end
    if menu == 2 then hack_3() end
    end

    -- this basic search line gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD)   and i can only find these values just in this order and arrangement

    function hack_1()
    gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) -- example user activate hack_3 before hack_1 so search hack_1 don't work or if user want to activated hack_1 don't work because basic search line is changed so how update this serach ?
    gg.getResults(3)
    gg.refineNumber("1000", gg.TYPE_DWORD)
    gg.getResults(1)
    gg.editAll("1111", gg.TYPE_DWORD)
    end

    function hack_2()
    gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) -- example user activated hack_1 before hack_2 so search hack_2 don't work because basic search line is changed so how update this serach ?
    gg.getResults(3)
    gg.refineNumber("2000", gg.TYPE_DWORD)
    gg.getResults(1)
    gg.editAll("2222", gg.TYPE_DWORD)
    end

    function hack_3()
    gg.searchNumber("1000;2000;3000:9", gg.TYPE_DWORD) -- example user activate hack_2 before hack_3 so search hack_3 don't work because basic search line is changed so how update this serach ?
    gg.getResults(3)
    gg.refineNumber("3000", gg.TYPE_DWORD)
    gg.getResults(1)
    gg.editAll("3333", gg.TYPE_DWORD)
    end

    This a simple process, i want solution for this problem that works in the big script lines and thanks you guys !!

×
×
  • 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.