Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/16/2019 in all areas

  1. Hello guys . Today I will Show You How to make online upgrade on your lua scripts . Control Your Scripts using your Online servers . there were many questions about it , so watch video , its easy . here is many website for manage program files and texts . easiest for use is paste bin web site . Paste bin Web Site link : https://pastebin.com This online.lua script link : https://www.mediafire.com/file/9uuy3f2ji3847eu/%5B_ONLINE_%5D.lua/file If you have any questions ask me in Comments.
    1 point
  2. function coin() gg.clearResults() d = gg.prompt({A='Your Coin', B='Your Diamond'}, {A='0', B='0'}) gg.searchNumber(d.A, d.B, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) if gg.getResultCount() == 2 then gg.editAll('10000', gg.TYPE_DWORD)  gg.alert('Hacking Done!, Enjoy') gg.clearResults() os.exit() else gg.alert('Too much values found, Go to game and change the value, then open gameguardian again') end ?
    1 point
  3. x = gg.prompt({"Enter Value"}, nil, {"number"}) if x == nil then gg.alert("Canceled") end s = "1;3;2;"..x[1].."000~"..x[1].."999;0::70" gg.searchNumber(s, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) f = gg.getResultCount() gg.alert("We found: "..f)
    1 point
  4. A review of the example above for anyone who wonders why it works and why one should not code like this. Second line contains the following code: DESTROYER = gg.makeRequest("link").content There are 3 main steps in this code: 1. "makeRequest" function from "gg" table is called with the corresponding argument. 2. Result returned by the function is indexed with the key "content". 3. Value from the step 2 is saved in "DESTROYER" variable. Then, on the third line there is the following code: if not DESTROYER then which checks the condition and executes the code after "then" keyword, if the condition is true. Otherwise, it executes the code after "else" keyword. To understand, why "one should not code like this", let's review the documentation for "makeRequest" function at GG help. https://gameguardian.net/help/classgg.html#ad020d50d3af0a36733e0cbc231055c55 In this case we are interested in the description of the value returned by the function: Now, let's get back to the second line of the example. When function succeeds, the code from the second line behaves as intended. Table returned by the function is indexed with the key "content" and the result of this operation is stored in the variable. And what happens, when there is an error? String returned by the function is indexed with the key "content" and the value is stored in the variable. By default, there is no meaning of indexing string with a key and luckily for the example, the value returned by such operation is nil. But this behavior is not obvious and not obvious behavior may often lead to errors. Then how can the example be modified to avoid non-obvious behavior? The result of the call to "makeRequest" function should be saved to a variable. Then the type of the variable should be checked. If it is "table", the function has succeeded, the variable can be indexed with the key "content" and the result of this operation can be stored in another variable. And if it is "string", then an error occurred, the contents of the variable can be printed to log (via "print" function) and/or shown to the user (via "alert" function). Example to illustrate the answer above: local functionResult = gg.makeRequest('link') local content if type(functionResult) == 'table' then content = functionResult.content elseif type(functionResult) == 'string' then -- print/alert error description end -- other actions Such modification to the code explicitly shows which actions will be performed and when (function succeeds / function fails) getting rid from non-obvious behavior.
    1 point
  5. Version 0.11.0

    10,587 downloads

    this file is DEVELOPED by biggestpapa SUB to biggestpapa if u wanna know how this work i suggest watch this this script contains wall hack body color fly hax run on water black sky no recoil no gass no tree shot through wall one click all safe hack activate one click all hack activate (not sAFE)
    1 point
  6. @80869969 You are blind or stupid? What written in message?
    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.