Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/20/2022 in all areas

  1. View File Era Of Magic Wars *** Made for 64bit devices *** (1) Free Building Upgrade (2) Free Artefact Upgrade & 100% Success (3) Quick Unit Level Up (4) All Difficulty Unlocked (5) Map Unlocked Submitter sammax71 Submitted 12/20/2022 Category LUA scripts  
    1 point
  2. I just updated the information. Please don't dm me things that clearly shows on the description, I've had people dm many times.
    1 point
  3. Hi! Yes, It's possible. ELSE will carries any Values other than 1 (On Above Script). You don't need to Specificly define all Condition, Unless You had to do something When 'That' Conditions met. local switch = 1 if switch == 1 then --Do Something if Condition is 1 function1() else if switch == 2 then --Do Something if Condition is 2 function2() else --Do Something if Condition is other than 1 and 2 (Accept any value A-Z 0-Infinite) function3() end This apply accross any language, In fact; checking every Conditions is NOT Recommended in Optimization Perspective even It is supported by ANY Hardware (Computer is basicly a bunch of 0 and 1 Input). Take some Example from Yandere Dev Simulator on How ELSE IF can Affect Performance: Code Review for Yandere Simulator Some demonstration in other language: # Good Practice switch = 1 if switch == 1: function1() elif switch == 2: function2() else: function3() # Bad Practice if switch == 1: function1() elif switch == 2: function2() elif switch > 2: function3() elif switch 0: print('errr')
    1 point
  4. For anyone who is facing problems, when you start the script you wait a few seconds for enter Password to show up and enter MaxLevel. Wait a bit and it should load, just get some xp then you should be maxlevel. Also.. restart the game when you open chest because it's glitched.
    1 point
  5. local file = '/Dump/niggers.lua' --This is Your File location. menu = gg.choice({"Call File", "Exit"}, nil, "Main") --Ordered Choice (Call = 1, Exit = 2) if menu == 1 then --Check if User chooce 'Call' if not (io.open(gg.EXT_STORAGE .. file, 'r')) then --Check if Script is NOT Downloaded fileData = gg.makeRequest('https://pastebin.com/raw/hNhEbgVd').content --Read Script from URL if not fileData then --Check if Pastebin is Empty print('Site is Down') --Tell User that URL is Invalid else gg.saveList(gg.EXT_STORAGE .. '/' .. file, gg.LOAD_APPEND) --If Pastebin exist, makes a New Lua File fileAppend = io.open(gg.EXT_STORAGE .. file, 'w'):write(fileData) --Save Pastebin Script into the New Lua dofile(gg.EXT_STORAGE .. file) --Run the Downloaded Script end else dofile(gg.EXT_STORAGE .. file) --Run the Downloaded Script end else os.exit() --Exit the Script end You didn't write if menu == 2 then os.exit() end You wrote else os.exit() end is that even possible
    1 point
  6. Hi! There's several mistake in Your Script: - If You choose 'Exit' it will execute Menu 2: Which downloading the Script instead of Exitting. The reason is: Choices are Ordered on gg.choice (Call = 1, Exit = 2) - The First Option (Menu 1) doesn't have the same File Location to the File that have been Downloaded (/Dump and /.pass) - The Exec function is Unnecessary since You didn't use them. I have made 2 Script that has it's Own use: Temp Script local file = '/Dump/niggers.lua' --This is Your File location. menu = gg.choice({"Call File", "Exit"}, nil, "Main") --Ordered Choice (Call = 1, Exit = 2) if menu == 1 then --Check if User chooce 'Call' if not (io.open(gg.EXT_STORAGE .. file, 'r')) then --Check if Script is NOT Downloaded fileData = gg.makeRequest('https://pastebin.com/raw/hNhEbgVd').content --Read Script from URL if not fileData then --Check if Pastebin is Empty print('Site is Down') --Tell User that URL is Invalid else gg.saveList(gg.EXT_STORAGE .. '/' .. file, gg.LOAD_APPEND) --If Pastebin exist, makes a New Lua File fileAppend = io.open(gg.EXT_STORAGE .. file, 'w'):write(fileData) --Save Pastebin Script into the New Lua dofile(gg.EXT_STORAGE .. file) --Run the Downloaded Script end else dofile(gg.EXT_STORAGE .. file) --Run the Downloaded Script end else os.exit() --Exit the Script end - Choices are now Adjusted: 'Exit' will Exit the script and 'Call File' will runs a simple Directory check. - If the file is NOT Downloaded yet, it will Download the script from Pastebin and Save it into a Directory (/storage/emulated/0/Dump/niggers.lua) - If the file Exist, it will run the Script instead via dofile Direct Script menu = gg.choice({"Call Script", "Exit"}, nil, "Main") --Ordered Choice (Call = 1, Exit = 2) if menu == 1 then --Check if User chooce 'Call' fileData = gg.makeRequest('https://pastebin.com/raw/hNhEbgVd').content --Read URL Script if not fileData then --Check if URL is Empty print('Site is Down') --Tell User the URL is Invalid else pcall(load(fileData)) --Run Pastebin Script end else os.exit() --Exit the Script end This Script does NOT Save the Pastebin Script but instead Run them Directly. This is a good Practice if You do NOT want Your Script to be Stolen from Local Directory.
    1 point
  7. Version 2.5.9

    10,660 downloads

    This script loads a Il2CppDumper dump.cs file and allows you to. Search for methods using keywords. Edit methods with the press of a button. Create script functions from your edited methods. And generate a complete fully functional script without writing a single line of code. There is full help documentation at the bottom of each menu.
    1 point
  8. 1 point
  9. It finally works!!! Thanks XEKEX!!! Script is brilliant!!❤
    1 point
  10. -Goto AndroidMinisfest.xml -under <application tag, find android:extractNativeLibs="false" -Make it true -Sign and install -Now, game will export its libs outside as normal. If the game has apk signature protection, dont forget to kill signature before you edit AndroidMinifest.xml.
    1 point
    Please update the app, current version not supported for Android 12. Thanks.
    1 point
  11. hmm , its not string encode or decode . it only convert to string byte . and decode will not work , im sure .
    1 point
  12. Lol.... Always entertaining when someone like you arrives. You always install apps that you have no knowledge of and then panic after? Probably download apks from many unknown sources and completely unaware of the malware you potentially have. I've been using GG for over 4yrs... I trust Enyby and GG.
    1 point
  13. At this point such threads should be moved to "funny quotes about game guardian".Do you think a virus app would build such a large and friendly community?Also don't you think regular users of the app would be the ones reporting and complaining instead of you who just started off? Maybe this will help answer your question if it doesn't ask google.
    1 point
  14. 1 point
    now i this script send me code then?what will happen i didn't understand ~incomplete info
    -1 points
×
×
  • 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.