Leaderboard
Popular Content
Showing content with the highest reputation on 03/25/2022 in all areas
-
Version 10.4.2.1.2b
6,439 downloads
REAL RACING 3 - ALL IN ONE INTERFACE Current version: 10.4.2.1.2b Description: The script loads all my scripts into one menu. Useful for running all my scripts without having to search and run them manually. Instructions: Run the file in the same directory where my other scripts are saved.4 points -
I've updated it and posted in the Lua Script section. Just needs to be approved.2 points
-
If this always return something, then you never know what user press - OK or Cancel. Or simple close dialog. Also if you press cancel, all data must be lost and erased. It is common and default behavior everywhere. Even in matter of simple logic and security. If you accidentally past in form sensitive data and press cancel for avoid propagate it, data must be lost, not processed. Look like you want solve wrong problem or by wrong approach. If you want store input for close UI - write that in prompt. So user press OK in any case and later script ask him for apply data or no. if no, you can use this data on next call dialog.2 points
-
View File SimCity Real Server Script 2023 Please watch patiently my video: Password: scs v1.17 video here. Submitter SimpleCodeStudio Submitted 02/19/2022 Category LUA scripts1 point
-
1 point
-
View File GameGuardian Script Tutorial (Detailed) Hello Everyone! You can make your own Script file with simple methods! Files in Description. You can watch video tutorials! Tutorial Videos here! Submitter SimpleCodeStudio Submitted 01/23/2022 Category Templates1 point
-
View File Real Racing 3 - All In One Interface REAL RACING 3 - ALL IN ONE INTERFACE Current version: 10.4.2.1.2b Description: The script loads all my scripts into one menu. Useful for running all my scripts without having to search and run them manually. Instructions: Run the file in the same directory where my other scripts are saved. Submitter MarioRossi93i Submitted 03/20/2022 Category LUA scripts1 point
-
When you find that value if you edit the line above you can level up very quickly. Be careful though if you max each skill at level 150 then it gets stuck asking you to distribute points.1 point
-
When you earn exp and get to use it , search 4 dword , use it once , search 3 , use , 2 use then change value to what ever you like Cool. Very cool . How ?1 point
-
1 point
-
thats strange.. you had been here since April 10 2020. its almost 2 years..thats not new anymore. havent you learn anything since that? and you always ask for video where written details given are more than enough. part of learning is exploring by trials and errors.1 point
-
Hello, I am very new to GG and lua script. Here is the lua script I made to change Cash or Golden Eggs from delivery box (With Ad or direct gift). For Cash: Type the value proposed by the delivery box, with comma and magnitude (see script), for example: 23,069qd For eggs: Type the value proposed by the delivery box, choose box that offers eggs >100 (less results) Changed values are hard coded, it can be changed in script or new value could be asked in prompt. -- Script generated by GameGuardian 101.1 (16142) at 2022-03-08 12:02:16 for Egg, Inc. [com.auxbrain.egginc 1.22.5 (111186)] -- Lua help: http://gameguardian.net/help/ -- options local scriptName = [=====[Script for Egg, Inc. 1.22.5]=====] local scriptVersion = '1.0.0' local scriptAuthor = 'FluidZ' local startToast = '' -- 0 - no check; 1 - check package only, 2 - check package and build local checkTarget = 0 local targetName = [=====[Egg, Inc.]=====] local targetPkg = 'com.auxbrain.egginc' local targetVersion = [=====[1.22.5]=====] local targetBuild = 111186 -- functions local function isempty(s) return s == nil or s == '' end -- init gg.require('101.1', 16142) if startToast ~= '' then startToast = '\n'..startToast end gg.toast(scriptName..' v'..scriptVersion..' by '..scriptAuthor..startToast) if checkTarget ~= 0 then local info = gg.getTargetInfo() local check = false local current = false if checkTarget >= 1 then check = targetPkg current = info.packageName end if checkTarget >= 2 then check = check..' '..targetVersion..' ('..targetBuild..')' current = current..' '..info.versionName..' ('..info.versionCode..')' end if check ~= current then gg.alert('This script for "'..targetName..'" ['..check..'].\nYou select "'..info.label..'" ['..current..'].\nNow script exit.') os.exit() end end local revert = nil local magnitudes = { ['M'] = 6, ['B'] = 9, ['T'] = 12; ['q'] = 15, ['Q'] = 18, ['s'] = 21, ['S'] = 24, ['o'] = 27, ['N'] = 30, ['d'] = 33, ['U'] = 36, ['D'] = 39, ['Td'] = 42, ['qd'] = 45, ['Qd'] = 48, ['sd'] = 51, ['Sd'] = 54, ['Od'] = 57, ['Nd'] = 60, ['V'] = 63, ['uV'] = 66, ['dV'] = 69, ['tV'] = 72, ['qV'] = 75, ['QV'] = 78, ['sV'] = 81, ['SV'] = 84, ['OV'] = 87, ['NV'] = 90, ['tT'] = 93 } -- main code local pData = gg.prompt({[1] = 'Type value to search for'}, nil, {"text"}) local new_v = 0 local sch = '' if pData == nil then gg.alert('Canceled') else local v, m = string.match(pData[1], "([0-9%.,]+)(%a*)") if isempty(m) then sch = ''..v new_v = ''..v..'e6' else local va = v:gsub(",", "") local ma = magnitudes[m]-3 local v_before = va-1 local v_after = va+1 local start = tostring(v_before)..'e'..tostring(ma) local zend = tostring(v_after)..'e'..tostring(ma) sch = ''..start..'~'..zend new_v = '1.0e78' end gg.clearResults() gg.setRanges(gg.REGION_C_ALLOC) gg.searchNumber(sch, gg.TYPE_DOUBLE, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll(''..new_v, gg.TYPE_DOUBLE) gg.processResume() print('Searched for ', sch) print('Found: ', gg.getResultsCount()) print('Edited to ', new_v) print('Hack done!') end Feel free to improve code and post it here ! Thx1 point
-
1 point
-
Version 007
20,624 downloads
Hi guys you are gonna love this script. This is my first script here, hope you guys enjoy. Note: 1. If u are using play store apk. Use only Wallhack, color and no recoil. 2. If u are using modded apk. Then u can use all the features provided. Working with new beta version!1 point