Jump to content

YeetMeister

Contributor
  • Posts

    346
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by YeetMeister

  1. On 12/13/2018 at 3:39 PM, MrYorn said:

    Hi, I do not cancel the next time
    And installed as kshuep
    But it was detected again

    IMG_20181213_180849_991.jpg

    IMG_20181213_181744_392.jpg

    On standoff 2 i can help you

    Open setting and go to apps and then select standoff 3 and press clear cashe and clear data

     

    Restart game and done

  2. @Enyby why is this not working? Can you please help me in confused ._.

    Ive tried it like this now but i get an error

    Quote

    Script ended:
    Script error: org.luaj.vm2.LuaError: @/storage/emulated/0/Download/PrivateHack/Private Hack.lua:32
    `gg.searchNumber(Result["i"], gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)`
    bad argument #1 (nil): string expected, got nil
    level = 1, pc = 17
    stack traceback:
        /storage/emulated/0/Download/PrivateHack/Private Hack.lua:32 in function 'FoV'
        /storage/emulated/0/Download/PrivateHack/Private Hack.lua:16 in function 'main'
        /storage/emulated/0/Download/PrivateHack/Private Hack.lua:46 in main chunk
        [Java]: in ?
        at org.luaj.vm2.Varargs.argerr(Varargs.java:282)
        at org.luaj.vm2.Varargs.checkjstring(Varargs.java:347)
        at android.ext.Script$searchNumber.invokeUi(Script.java:2801)
        at android.ext.Script$ApiFunction.run(Script.java:1181)
        at android.os.Handler.handleCallback(Unknown Source:2)
        at android.os.Handler.dispatchMessage(Unknown Source:4)
        at android.os.Looper.loop(Unknown Source:139)
        at android.app.ActivityThread.main(Unknown Source:146)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Unknown Source:11)
        at com.android.internal.os.ZygoteInit.main(Unknown Source:198)

    And this is the "code"

    Quote

    UI = 1

    if gg.isVisible(true) then
      gg.setVisible(false)
    end


    --
    function main()
    gg.alert("{Press 'OK' to activate Hacks}\nthis hack Contains:\n~NoRecoil\n~Bigger Hitbox\n~FoV")
    Result = gg.prompt({"No Recoil","Bigger Hitbox", "FoV","Custom FoV(Needed if checked)\nSelect a number between 150 and 360"},nil,{"checkbox", "checkbox","checkbox",i = "0"})
    if Result[1] then NoRecoil() end
    if Result[2] then BigHitbox() end
    if Result[3] then FoV() end
    if Result[4] then FoV() end
    UI =-1
    end

    --
    function NoRecoil()

    end

    function BigHitbox()

    end

    function FoV()
    gg.setRanges(gg.REGION_CODE_APP)
    gg.searchNumber(Result["i"], gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)
    local r = gg.getResults(45)
    gg.removeResults(r)
    gg.getResults(1)
    gg.editAll("222", gg.TYPE_FLOAT)
    end
    --
    function exit()
    gg.toast("This script is made by \nஜ۩۩ஜ[K/D Destroyer]ஜ۩۩ஜ \nPrivate script made for wifi-iwnl")
    print("This script is made by \nஜ۩۩ஜ[K/D Destroyer]ஜ۩۩ஜ \nPrivate script made for wifi-iwnl")
    os.exit()
    end
    --

    main()

    while true do
        if gg.isVisible(true) then
            gg.setVisible(false)
            UI = 1
        end
        gg.sleep(100)
        if UI == 1 then
            main()
        end
    end

     

  3. 2 hours ago, CmP said:

    You need to explain that "idea" using words and not just drop some block of code. Noone here can read your thoughts. Moreover, quality of question/problem explanation affects receiving (or not receiving) answers more than anything else.

     

    Like this

    So if FoV is checked then it will need the custom number for that

    Screenshot_20190106-015923_Quoda.jpg

  4. 2 hours ago, CmP said:

    You need to explain that "idea" using words and not just drop some block of code. Noone here can read your thoughts. Moreover, quality of question/problem explanation affects receiving (or not receiving) answers more than anything else.

    Im sorry xD i was in hurry

    Uhm what i wanted to do is a hack with gg.prompt() with checkboxes if they checked they will be executed if not then not BASIC IK

     

    But theres another function with custom FOV (so if i check FoV i need to put in the value i want to set it to)

    Is this explained better for you?

  5. So i am making a "Private" script menu for a friend so he gets into hacking too.

     

    But i dont know how to solve this problem

     

    I hope you get my Idea xD

     

    UI = 1
    
    if gg.isVisible(true) then
      gg.setVisible(false)
    end
    
    CustomFoV = result[4]
    
    
    --
    function main()
    gg.alert("{Press 'OK' to activate Hacks}\nthis hack Contains:\n~NoRecoil\n~Bigger Hitbox\n~FoV")
    Result = gg.prompt({"No Recoil","Bigger Hitbox", "FoV","Custom FoV(Needed if checked)\nSelect a number between 150 and 360"},nil,{"checkbox", "checkbox","checkbox","number"})
    if result[1] then NoRecoil() end
    if result[2] then BigHitbox() end
    if result[3] then FoV() end
    if result[4] == FoV() then CustomFoV end
    UI =-1
    end
    
    --
    function NoRecoil()
    
    end
    
    function BigHitbox()
    
    end
    
    function FoV()
    
    end
    --
    function exit()
    gg.toast("This script is made by \nஜ۩۩ஜ[K/D Destroyer]ஜ۩۩ஜ \nPrivate script made for wifi-iwnl")
    print("This script is made by \nஜ۩۩ஜ[K/D Destroyer]ஜ۩۩ஜ \nPrivate script made for wifi-iwnl")
    os.exit()
    end
    --
    
    main()
    
    while true do
        if gg.isVisible(true) then
            gg.setVisible(false)
            UI = 1
        end
        gg.sleep(100)
    	if UI == 1 then
    		main()
    	end
    end

     

  6. So i have this little script thats not working right

    Because the Values doesn't freeze I need some Help

    Discord: [SnBt]YeetMeister#1967

    gg.toast("Memory Ranges: A:Anonymous and Xa:Code App for the Fastest Results")
    v = gg.prompt({i = "GoldRoom(After Spawning in)Search: Secret"}, {i = "0"})
    if v == nil then
      gg.clearResults()
      gg.alert("Goldroom Hack Cancelled, no Input")
      print("Canceled")
    else
      print(v["i"])
     gg.searchNumber(v["i"], gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
      print("Searched" .. v["i"])
      if gg.getResultCount() >= 4 then
        print("Values are 20")
        gg.getResults(20)
        gg.editAll("1999999999", gg.TYPE_DWORD)
        for i, v in ipairs(gg.getResults(50)) do
      i.freezeType = FREEZE_MAY_INCREASE
      i.freeze = true
    end
      else
        print("Too many / or too less Values found")
        gg.clearResults()
        gg.alert("Too much values found, Go to game and change the value, then open gameguardian window again")
      end
      print("Made by YeetMeister")
      print("Helped by Vuroz#1713 on Discord")
    end
     
    
        for i, v in ipairs(gg.getResults(50)) do
      i.freezeType = FREEZE_MAY_INCREASE
      i.freeze = true
    end

    Is this right? Because its not freezing

    Enyby Could you come to discord?

  7. On 7/25/2018 at 5:01 PM, Trxshy_666 said:

    Didn't work for me. 

    Tried running the script before and after i get into a fight for cash 

    You habe to run the script AS soon AS you join the map in fight for cash ?

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