Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/27/2021 in Posts

  1. New version 10.0.1.3.8 released!
    7 points
  2. 5 points
  3. 3 points
  4. The problem is because you use comma (",") as decimal separator. Use dot (".") instead. gg.searchNumber('2.38220739e-44', gg.TYPE_FLOAT) This is also mentioned in documentation: https://gameguardian.net/help/scripts_locale.html
    2 points
  5. View File Car Parking Multiplayer Lua Script Hi nice to meet you peeps im LeviaC! This script is for car parking multiplayer v4.6.5 Password is : 1356 Here's the feature of this script Buy people's car for free (online) Chrome Color Magic Chrome Color Money Hack (1st Level) Walkthrough walls/Wallhack Speedhack Car Glitch Submitter brokenexile1 Submitted 05/10/2020 Category LUA scripts  
    1 point
  6. It seems to be some kind of global state variable to control whether main menu should be opened immediately after execution returns to main loop. But more often than not such behavior isn't needed and when it is so, the variable becomes redundant and can be removed. Main loop can be then replaced with the following typical one: while true do if gg.isVisible() gg.setVisible(false) Test() end gg.sleep(100) end
    1 point
  7. hmm.. base on your script...thats probably whats he want.(maybe) press cancel will hide the script menu but press GG logo again will bring back the menu that you had left before..not the very first menu(main). he did mention his script had various menu by a lot and so on..so on(parts i dont have clear understand)
    1 point
  8. We dont understand what you mean too. it will be great if you explains more clear. This is what i think you need. may be wrong ok.lua
    1 point
  9. so weird i didnt notice it before.. what does the "Homedm = -1" do in a function really? what its relation with this below? while true do if gg.isVisible(true) then Homedm = 1 gg.setVisible(false) end if Homedm == 1 then A() end hope someone more expert can give some insight on this. @CmP maybe?
    1 point
  10. i don't understand what you mean, i tried with a piece of code like this, and when i click cancel the menu is always hidden, no matter what menu! X = {"A","B"} function A() menu = gg.choice(X,nil,"Menu A") if menu == 1 then B() end if menu == 1 then B() end Homedm = -1 end function B() menu = gg.choice(X,nil,"Menu B") if menu == 1 then C() end if menu == 1 then C() end Homedm = -1 end function C() menu = gg.choice(X,nil,"Menu C") if menu == 1 then A() end if menu == 1 then A() end Homedm = -1 end while true do if gg.isVisible(true) then Homedm = 1 gg.setVisible(false) end if Homedm == 1 then A() end end
    1 point
  11. because im clearly not understand you? your details are all over the place and i cant visualize a clear picture of it.
    1 point
  12. this..? while true do if gg.isVisible(true) then HOMEDM = 1 end if HOMEDM == 1 then gg.setVisible(false) Test() end end
    1 point
  13. Such script is pretty simple, just need to call several functions of GG API: gg.clearResults() -- Clear results list to ensure that new search will be started gg.searchNumber("17", gg.TYPE_DWORD) -- Search for the value gg.getResults(100) -- Load first 100 results gg.editAll("0", gg.TYPE_DWORD) -- Edit loaded results Information about GG API functions including descriptions and examples of usage can be found in the documentation, link to which is in the post above by @blocx.
    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.