
Fathoni267
Members-
Content Count
46 -
Donations
$0.00 -
Joined
-
Last visited
Community Reputation
3 n00bAbout Fathoni267

-
Rank
Advanced Member
Additional Information
-
Android
11.x
-
Device
ASUS ZenFone Max Pro M1
-
Service provider
Other
Recent Profile Visitors
596 profile views
-
I figured out how to prevent local date from being changed Date = os.date("!%a, %d %b %Y %H:%M") gg.sleep(100) --This is for matching the local date with online date if Date ~= string.match(gg.accessLink("https://exemple.com").headers["Date"][1], ("(.*):")) then --You can replace the website with anything but the website can still be accessed gg.alert(" Invalid Date/Time ") print(" Set your date/time correctly ") return else Date = os.date("!%Y/%m/%d %X", --You can change it as your date format os.time()+7*60*60) --This is for GMT+7 end
-
Oh I just realized. It's only based with local time, so it can still be manipulated:(
-
I've found the code! GMT+0 os.date("!%Y-%m-%d %X") GMT+7 os.date("!%Y-%m-%d %X", os.time()+7*60*60)
-
How to make os.date working with gmt? Or Does anyone have raw date & time site that working with gmt?
-
Can gg check the app name itself like checking package name?
-
problem was solved [added 4 minutes later] the script is error
-
How to put text on load files like this
-
it must be like this local fi = gg.prompt({"health hack","speed hack"}, {[1] ="0",[2]="0"}, {["1,2"] ="number"})
-
I already found the key os.rename(name, path..realName)
-
Can I change the name of file(script) that I'm running? Because I ever use some encrypted script and I try to change the name then it say "rename detected" and the file was renamed to the real name But when I try to do that in my script, it does nothing name = gg.getFile():match("[^/]+$") path = gg.getFile():match(".*/") realName = "[𝐹𝑆267]MLBB.lua" if name == realName then else gg.alert(" Rename Detected ") os.rename(path..name, path..realName) print(" Script has renamed to the real name ️") os.exit() end
-
I used your script to encrypt my online script. When i put the script on ":" named folder, it's cannot run. Then when i load code it, i can see the decrypted script.
-
how to search a same value/address after i use gg.clearResults() ?
Fathoni267 replied to Fathoni267's topic in Help
but can i use it in other function? -
how to search a same value/address after i use gg.clearResults() ?
Fathoni267 replied to Fathoni267's topic in Help
sorry i forgot thank you -
how to search a same value/address after i use gg.clearResults() ?
Fathoni267 replied to Fathoni267's topic in Help
so how to change the value? bcs they said Script ended: Script error: luaj.n: /storage/emulated/0/GameGuardian/script/Mobile Legends: Bang Bang/[𝐹𝑆267]MLBB.lua:167 `gg.editAll("5000") end` bad argument #2 to 'gg.editAll' (no value: int expected, got nil) (field 'editAll') level = 1, const = 43, proto = 0, upval = 1, vars = 10, code = 132 CALL v0..v1 ; PC 21 CODE 0100401D OP 29 A 0 B 2 C 1 Bx 1025 sBx -130046 stack traceback: /storage/emulated/0/GameGuardian/script/Mobile Legends: Bang Bang/[𝐹𝑆267]MLBB.lua:167 in function 'BYPASS' /storage/emulated/0/GameGuardian/script/Mobile Legends: Bang Bang/[𝐹𝑆267]MLBB.lua:15 in function 'start' /storage/emulated/0/GameGuardian/script/Mobile Legends: Bang Bang/[𝐹𝑆267]MLBB.lua:416 in main chunk [Java]: in ? at luaj.ap.a(src:265) at luaj.ap.o(src:301) at android.ext.Script$editAll.b(src:3711) at android.ext.Script$ApiFunction.a_(src:1393) at luaj.lib.VarArgFunction.a(src:58) at luaj.LuaClosure.a(src:534) at luaj.LuaClosure.l(src:160) at luaj.LuaClosure.a(src:533) at luaj.LuaClosure.l(src:160) at luaj.LuaClosure.a(src:533) at luaj.LuaClosure.l(src:160) at android.ext.Script.d(src:6056) at android.ext.Script$ScriptThread.run(src:5785) and here's my code results = gg.getListItems(100) if results[1].value == 0 then gg.editAll("5000") end