Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/07/2019 in Posts

  1. For more easy menu implementation, use Menu Template.. Change MyMenu to this .. MyMenu = { "Main Menu", -- Menu Title "No Recoil", function() -- When "No Recoil" clicked, this function will be executed. gg.alert("No Recoil Activated !") end, "Bigger Hitbox", function() -- When "Bigger Hitbox" clicked, this function will be executed. gg.alert("Bigger Hitbox Activated !") end, "Custom FOV", function() -- When "Custom FOV" clicked, this function will be executed. Input = gg.prompt({"Please input custom FOV Value: "}, {cFOV}, {"number"}) if Input ~= nil then InputtedFOV = Input[1] gg.alert("Changed FOV to "..InputtedFOV) end end } Example: Template_v2.0.lua
    3 points
  2. You need to learn Lua and GG API, because the result can not be achieved without knowledge. There are at least 2 mistakes in your script because of which "it's not freezing": 1. Wrong usage of getListItems function. Incorrect usage: Correct usage: local list = gg.getListItems() 2. Using setValues function and expecting it to do the job of addListItems function. Incorrect (and even absurd) way to add items to the saved list: Correct way: list[1].value = '10000' list[1].freeze = true gg.addListItems(list)
    3 points
  3. @noblack, you forgot to delete the line in function "main". Also isVisible function does not accept arguments, so that "true" in this line is redundant. Moreover, this only works because of how Lua deals with extra arguments. From the Lua 5.3 reference manual (https://www.lua.org/manual/5.3/manual.html#3.4.11) : Another thing is that value returned by "prompt" function needs to be checked (because the dialog may be cancelled, in some cases accidentally) as well as value that is stored in "Result[4]", but I suggest you to leave these improvements to be done by the author of the topic (if he needs them at all).
    2 points
  4. Also that "UI" variable is redundant in your case. Don't use something just because others do it. Your main loop can be rewritten this way: while true do if gg.isVisible() then gg.setVisible(false) main() end gg.sleep(100) end
    2 points
  5. Error occuring when i open GG, Was not possible open file "/proc/pid/maps". No root, using Parallel Space. Help??
    1 point
  6. View File Guns Of Boom Updated LUA Menu ~Menu Options~ • Chams Menu • Light AimLock • Heavy Aimlock • Auto Headshot • Turn on Admin Panel • SpeedHack Menu • WallHack Menu Notes • All menu items work. If you have any issues with an option not loading then close the menu, re-select the process in GameGuardian, and choose the option again. • Heavy AutoLock gets buggy if your game sensitivity is above 40. • AimLock's and Auto HeadShot only need to be enabled once per game instance. Chams needs to be activated at the start of every game. • Use WallHack and SpeedHack at your own risk ~ Video of Menu in Action ~ Submitter Mello- Submitted 12/20/18 Category LUA scripts
    1 point
  7. Dword and REGION ANONYMOUS Use this for quick search First search 29Q;0F;0D;16,842,752D::17 Then search '0' Edit it
    1 point
  8. Like you use that coins in shop in game so that one source If we can't hack the value directly So here coins are dependent source to a independent source In games we can get coins by many ways by shop, by winning the match,by time. It's dependent on game Lua: battleground's survivor : battle royale (#77bwv064) use above lua file to hack the game I hacked number of kills I noticed that if i kill 0 then 100 coins, if 1 kill then 300coins , if 2 kills then 500coins Then I changed number of kills I got coins
    1 point
  9. As @CmP said,so i rewrite the code again to you. gg.setVisible(false) -- 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"},{false,false,false,0},{"checkbox", "checkbox","checkbox","number"}) if Result[1] then NoRecoil() end if Result[2] then BigHitbox() end if Result[3] and 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[4], 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 while true do if gg.isVisible(true) then gg.setVisible(false) main() else gg.sleep(100) end end Also watch out for invisible symbol cause of BB code
    1 point
  10. can anyone help me to get the season building that I have missed
    1 point
  11. In our videos you can see the application GG Victim (formerly GG victum). This is a test application that we created ourselves. You can never get or download it, because it's a private application. You can not ask for a link or apk - this will never happen. The reason for creating this application: it is very difficult to find games that meet the necessary requirements to show some features of the work of GG. Also, there are copyright issues when uploading a video to Youtube. This application contains a lot of code that can help developers to strengthen protection or bypass GG. Therefore, this application can not be downloaded. If you need a test application for video recording or training, look for such application yourself. If you do not understand what a test application is, and you think that without GG Victim you can not work with GG, then GG is definitely not for you. Uninstall the GG.
    1 point
×
×
  • 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.