Jump to content

Boardoptions

Members
  • Posts

    33
  • Joined

  • Last visited

Posts posted by Boardoptions

  1. 11 minutes ago, CoyFanatic said:

    Ou você pode fazer isso. 

    Local r = gg .getResult (22)

    r [1] .value = 'qualquer valor que você queira colocar'

    r [2] .value = 'valor'

    Então, basicamente, tudo o que fiz foi atribuir r com toda a lista e, em seguida, você pode usar r com colchetes para editar esses valores de pesquisa específicos, conforme desejar.

    Fantastic! What if I want to move items from the saved list to the search list?

  2. 8 hours ago, Enyby said:

    Usually, if you use such numbers, then you are mistaken with the choice of data type. In your case, it should be qword instead of double. If you have a float with strange numbers, you need to use dword.

    boss, I'm developing a script, this is a group search where I need to edit each value separately, in this case there are 3 float values, I need to edit each one for other specific values. gg.editall is not for this case because it edits all values in list for a single one, and in my case I would need to edit one by one how would that edition look in a script?

    my group search is 

    gg.searchNumber("1151.92004394531F;-262.89999389648F;17.30963516235F::9", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)

    and those are the separate numbers;

    1°)  1151.92004394531

    2°) -262.89999389648

    3°) 17.30963516235

    I need to edit the numbers for these;

    1°) -1.106,31103515625

    2°) 523,13757324219

    3°) 68,24115753174

    (Obs: it is a teleportation so the big numbers)

  3. 5 minutes ago, JinXprO said:

    I tried this app to hide Game Guardian but still detected by the game (Fury Survivor : Pixel Z) any idea ?

    you need to run the official gameguardian outside the virtual space and do its auto installation, where it installs another modified apk not to be detected, the standard version with the name game guardian is detected.

  4. 2 minutes ago, nalcwap said:

    ótimo, porque eu não posso testar, e desculpe a confusão eu não quero dizer os jogos, mas este aplicativo, mano, faça o upload aqui porque o tamanho não é permitido para mim, não quero link externo, é meu, mas vou excluir

    Okay, I'm going to create a topic and send it, Thanks for the act done in good faith! like a boss, do I have your permission to redirect the credits to you?

  5. 31 minutes ago, nalcwap said:

    tente esta versão 32, exclua qualquer versão 32 que você possui e instale-a, coloquei a outra versão que corrigi, experimente-as se funcionar agora e diga-me se funcionar, obrigado, por que não permitir uplad?

    [adicionado 1 minuto depois]

    @ Boardoptions tente isso, se funcionar    https://drive.google.com/file/d/1axTXbIB4bNWpuggs_hsuDxmS_24F94IG/view?usp=sharing

    nice work bro, it's working perfectly now, apps 32x and 64x Android 10, perfectly working

     

  6. 9 hours ago, zam535582 said:

     

    
    local t = gg.getResults(22)
    
    for i,v in ipairs(t) do
       if v.flags == gg.TYPE_DOUBLE then
          v.freeze = true
       end
    end
    gg.setValues(t)
    gg.addListItems(t)
    t = nil
    gg.clearResults()
    gg.toast("Done")

    see if this work.

    I found the solution, here is the missing code for my search;

     

    function life()
    
    gg.searchNumber("100F;5.53552857e-315E::5", gg.TYPE_AUTO, false, gg.SIGN_EQUAL, 0, -1)
    
    revert = gg.getResults(991, nil, nil, nil, nil, nil, nil, nil, nil)
    local t = gg.getResults(991, nil, nil, nil, nil, nil, nil, nil, nil)
    for i, v in ipairs(t) do
    	if v.flags == gg.TYPE_DOUBLE then
    		v.value = "5.53552857e-315"
    		v.freeze = true
    	end
    end
    gg.addListItems(t)
    t = nil
    
    end

     

  7. gg.alert('Sucess')
    
    function start()
    
    end
    
    function menuC()
    
    menu = gg.choice({'Life','Sair'},nill,'Bypass')
    
    if menu == 1 then life() end
    if menu == 2 then os.exit() end
    
    end
    
    function life()
    
    gg.searchNumber('5,53552857e-315',gg.TYPE_DOUBLE)
    
    gg.getresult('22')
    
    gg.editAll(freeze)
    
    end
    
    function exit()
    
    os.exit()
    
    end
    
    menuC()

    in gg.searchnumber I need a group search with the following code:

    100F;5.53552857e-315E::5

    in gg.results I need 22 results

    and in the gg.editall part I need to freeze all 22 values that appear in the search

    can someone give me a hand?

  8. On 4/9/2020 at 7:19 PM, nalcwap said:

     @ Boardoptions try this fix, it works in my device tell me if works in your device,, the size is more big because need some work to work ,   thanks     

    Super Clone [3.6.41.0226] fixed.apk 12 MB · 5 downloads

    yea! incredible is working well, but only 64bit applications, the other 32bit applications even with support installed do not start, but even so the project came out partially perfect, thank you very much because this is one of the best apps to use with gg in many applications.

  9. 4 minutes ago, Enyby said:

    Maybe anything.
    Usually, if some popular virtual space is not in the download section of virtual spaces, this means that its modification is unsuccessful, for one reason or another.
    Often this is protection against modifications.

     

    ok ok boss, even so i am very grateful and happy for your attempt to help us always count on us, we are here to add to your project, a great night of hugs of peace and tranquility!

    @END TOPIC

  10. 51 minutes ago, Enyby said:

    hello boss, i'm having a problem with this apk, the original apk from the playstore works normally, however the re-signed apk fails after opening, the possible problem is in the subscription, because I tested a test re-subscription in the apk editor myself and also had flaws, does the apk have any kind of protection? below a video demonstrating the problem of the optimized apk and the original apk working normally, once again thank you for your attention and for everything you are doing for us, we wish you great progress😘🤗

    My video uploaded to:  https://streamable.com/pvnpqn

     

    down for screenshots for diferent name in certs, possible problem?

     

     

    Screenshot_20200406-011600~2.png

    Screenshot_20200406-011621~2.png

  11. 31 minutes ago, Boardoptions said:

    Wow, Very Very Very thanks bro, support its like a boss! ❤️❤️❤️

     

    @Edit: Boss, my device is Android 10 and 64bits, and you apk signed have crashed in my device you have solutions? 

    Sorry My bad english

     

    Screenshot_20200404-170321.png

    I uploaded two apks original from Playstore working in my device, Not modified and sign for GG, one as apk original, other is plugin 64bits, my device is Android 10 and aarch64

    Screenshot_20200404-171516~3.png

    Super Clone 64bit 3.5.40.0430.arm64.apk Super Clone 3.6.41.0226.apk

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