Jump to content

Search the Community

Showing results for 'Huawei mate 10'.

  • Search By Tags

    Type tags separated by commas.
    For example, the common name of the game: PUBG, Free Fire, Rules of Survival, Critical Ops, Mobile Legends: Bang Bang, etc.
  • Search By Author

Content Type


Forums

  • GameGuardian
    • Requests
    • Help
    • Guides
    • Cheats
    • Video Tutorials
    • Unintended Effects
  • General
    • General Discussion
    • Introduce yourself (:
    • Announcements
    • Website suggestions/Bugs
  • Downloads Support
    • Apps
    • LUA scripts
  • Online Multiplayer Mods
    • Altering Online Games with Gameguardian
    • Download Mods
  • Other Hacks
    • Tutorials
    • Non-GameGuardian
  • Archive
    • Archived topics

Categories

  • Official Downloads
  • Virtual spaces (no root)
  • LUA scripts
    • Forward Assault
    • Free Fire
    • PUBG
    • Rules of Survival
    • Templates
    • Tools
  • Test applications
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Device


Discord ID

  1. from waht i understand is impossible to get diamonds without risking ban, i got like 8K multiple times but 10 was a insta ban but i found a usefull thing, your acc will only babanned once the app connects to a wifi, so you can use net blocker app from google play
  2. my fault i turned off the wifi when I was playing i got that massage too sorry for that i will try another way. Screenrecorder-2022-08-23-14-10-58-256.mp4
  3. HorridModz

    hex converter

    I wish I would have used this - it would have saved ages! Here's my solution: function armtohex(fullarm) progressalert("Converting edit value",false) fullhex = "" --Thanks to Enyby for the original arm hex converter I used code from: -- https://gameguardian.net/forum/files/file/2004-arm-converter/ for arm in string.gmatch(fullarm,'[^\r\n]+') do progressalert("Converting edit value",false) local addr = gg.getRangesList('libc.so') for i, v in ipairs(addr) do if v.type:sub(2,2) == 'w' then addr = {{address = v.start, flags = gg.TYPE_DWORD}} end end if not addr[1].address then print("Error occured converting arm code to hex: Failed to get address ", addr) gg.setVisible(true) os.exit() end if is64bit then --Armv8 (64bit) local old = gg.getValues(addr) addr[1].value = '~A8 '..arm local ok, err = pcall(gg.setValues, addr) local out if not ok then err = err:gsub("^.* '1': ", ''):gsub('\nlevel = 1.*$', '') print("Error occured converting arm code to hex: " .. err) gg.setVisible(true) os.exit() else out = gg.getValues(addr) out = out[1].value & 0xFFFFFFFF gg.setValues(old) if not hex then out = string.unpack('>I4', string.pack('<I4', out)) end out = string.format('%08X', out) fullhex = fullhex .. out end else --Armv7 (32bit) local old = gg.getValues(addr) addr[1].value = '~A '..arm local ok, err = pcall(gg.setValues, addr) local out if not ok then err = err:gsub("^.* '1': ", ''):gsub('\nlevel = 1.*$', '') print("Error occured converting arm code to hex: " .. err) gg.setVisible(true) os.exit() else out = gg.getValues(addr) out = out[1].value & 0xFFFFFFFF gg.setValues(old) if not hex then out = string.unpack('>I4', string.pack('<I4', out)) end out = string.format('%08X', out) fullhex = fullhex .. out end end end return(fullhex) end function hextodecimal(hex) progressalert("Converting edit value",false) --Remove spaces, then reverse bytes (ex: A1 B1 -> B1A1) oldhex = string.gsub(tostring(hex)," ","") hex = "" thisbyte = "" for letterindex = 1, #oldhex do thisbyte = thisbyte .. oldhex:sub(letterindex,letterindex) if #thisbyte == 2 then hex = thisbyte .. hex thisbyte = "" end end if not(string.sub(hex,1,2) == "0x") then hex = "0x" .. hex end return(tonumber(hex)) --[[ --thanks to ItsSC for this function (found at https://gameguardian.net/forum/topic/31634-converting-decimal-to-hex/) hex = tonumber(hex) gg.alert(tostring(tonumber(hex >= 0 and string.format("%X", tonumber(hex)) or string.format("%X", (hex~ 0xffffffffffffffff <<((math.floor(math.log(math.abs(hex))/math.log(10)) + 1) *4))),16))) return(tonumber(hex >= 0 and string.format("%X", tonumber(hex)) or string.format("%X", (hex~ 0xffffffffffffffff <<((math.floor(math.log(math.abs(hex))/math.log(10)) + 1) *4))),16)) --]] end
    Wow, you actually did it.. Great job on this dude! The script works flawlessly! 11/10
  4. Hi, Do you guys have this error when running the script? Auto or Manual is not working for me. Script ended: Script error: luaj.o: /storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua:-1 attempt to index ? (a nil value) with key 'start' (field '1') level = 1, const = 4, proto = 0, upval = 3, vars = 3, code = 10 GETTABLE v0 v0 "start" ; PC 7 CODE 0040C007 OP 7 A 0 B 0 C 259 Bx 259 sBx -130812 stack traceback: /storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua: in function </storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua:83> /storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua: in function </storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua:99> /storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua: in function </storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua:137> /storage/emulated/0/Download/3_rr3_car_upgrader.v10.6.0.4.4.bin.lua: in main chunk [Java]: in ? at luaj.LuaValue.f(src:989) at luaj.LuaValue.c(src:2864) at luaj.LuaValue.i(src:2767) at luaj.LuaValue.w(src:1094) at luaj.LuaClosure.a(src:363) at luaj.LuaClosure.l(src:160) at luaj.LuaClosure.a(src:533) at luaj.LuaClosure.a(src:176) at luaj.LuaClosure.a(src:539) 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)
  5. How can I play in virtual space day r to have root and use game guardian, what virtual space do you recommend I use in android 10 and be able to link play games and use my Google account in the virtual space?
  6. excellent work mate. Much respect !!!
  7. I have a video bro here I MADE IT 10 MONTHS AGO IT SHOULD STILL WORK TESTED IT TODAY
  8. for me it need about 25 seconds for my first search (usually i only choose auto drive and ghost), then only need 10 second to do my next search. kinda slow but at least it work device: zenfone 5Q 4gb ram
  9. Select it and wait until the search is done, usually about 10-15 seconds.
  10. Endup

    Change Price

    Hello my friend, You just have to put a filter 100 And change it eight times, if you find it in the eight times, put a filter 50.. 25..10..5 Until you find the value.
  11. View File Kuboom Mod Menu All version, V5| Kuboom Mod Menu New Version, V6 Features V6: Discord Skins: Unlock skins Regular AutoUse Premium Character: Unlock Characters Regular Set character Regular Unlock skins Character Premium Unlock Head Premium Unlimited ammo Regular Fastshot Regular Hack Level Regular Title And Profile Set Regular Radar Regular Headshot Regular Bots control : Play With bots Regular Stupid Bots Regular Hack items: Hack items+Bobm Regular Hack Frag in Match unlimited Regular OldShot Regular Speed And Jump Regular SilentAim Regular Collect Ruby Regular Time : Hide Ultra XP Premium Health : Not Ez die Regular Edit health menual Premium Secret Mod : Hide Ultra Win Game Premium Back case Gone Ultra Hide my ID Ultra Fov Hack Regular AutoPlay Ultra Damage Hack Premium Speed bullets, not fastshot. Premium Hack Rank point Premium Price Weapons in bomb mode Premium Features V5: 1 - wallhack+Radar (not ban) 2 - oldshot (not ban) 3- chachter Vasya 1 - 3 shot kill real player and bot and accurate (risk if play with real players -> play with bot activation) 4 - chachter Hermit bucks every game 500 bucks (not ban) 5- chachter mercnco hack health fast++ (risk if play with real players -> play with bot activation)---- 6 - play with bot always (protection [antiban]) 7- add bombs secret with bucks (risk if you put big number) 8- unlock all character( risk 20% It is better to open it for real) (risk20% if play with real players -> play with bot activation) 9- unlock rpk sobrina It must be activated every time you enter the game. 10- oldmove (not ban) 11 - headshot (not ban) 12- unlock Groza 13 - unlock AK borisenko (use shovel) 14 - unlock L96A1 (use shovel) skull It must be activated every time you enter the game 15 - unlock Famas Deathline(use shovel) It must be activated every time you enter the game 16 - Unlock Saiga (uses shovel) 17- hard.death( your heath 100-300 may be more)( The bomb kills you) ( risk 40%) 18- fastshot (risk) 19- silentaim (no ban) 20-speed 5% + (no ban) 21-jump 5% (no ban) 22- fov hack (no ban) Please evaluate the work because it took a lot of time, as well as the script does not have any type of encryption. You can enjoy and modify it according to need. ~ ENDUP Submitter Endup Submitted 08/13/2022 Category LUA scripts  
  12. Version All

    8,656 downloads

    Features V6: Discord Skins: Unlock skins Regular AutoUse Premium Character: Unlock Characters Regular Set character Regular Unlock skins Character Premium Unlock Head Premium Unlimited ammo Regular Fastshot Regular Hack Level Regular Title And Profile Set Regular Radar Regular Headshot Regular Bots control : Play With bots Regular Stupid Bots Regular Hack items: Hack items+Bobm Regular Hack Frag in Match unlimited Regular OldShot Regular Speed And Jump Regular SilentAim Regular Collect Ruby Regular Time : Hide Ultra XP Premium Health : Not Ez die Regular Edit health menual Premium Secret Mod : Hide Ultra Win Game Premium Back case Gone Ultra Hide my ID Ultra Fov Hack Regular AutoPlay Ultra Damage Hack Premium Speed bullets, not fastshot. Premium Hack Rank point Premium Price Weapons in bomb mode Premium Features V5: 1 - wallhack+Radar (not ban) 2 - oldshot (not ban) 3- chachter Vasya 1 - 3 shot kill real player and bot and accurate (risk if play with real players -> play with bot activation) 4 - chachter Hermit bucks every game 500 bucks (not ban) 5- chachter mercnco hack health fast++ (risk if play with real players -> play with bot activation)---- 6 - play with bot always (protection [antiban]) 7- add bombs secret with bucks (risk if you put big number) 8- unlock all character( risk 20% It is better to open it for real) (risk20% if play with real players -> play with bot activation) 9- unlock rpk sobrina It must be activated every time you enter the game. 10- oldmove (not ban) 11 - headshot (not ban) 12- unlock Groza 13 - unlock AK borisenko (use shovel) 14 - unlock L96A1 (use shovel) skull It must be activated every time you enter the game 15 - unlock Famas Deathline(use shovel) It must be activated every time you enter the game 16 - Unlock Saiga (uses shovel) 17- hard.death( your heath 100-300 may be more)( The bomb kills you) ( risk 40%) 18- fastshot (risk) 19- silentaim (no ban) 20-speed 5% + (no ban) 21-jump 5% (no ban) 22- fov hack (no ban) Please evaluate the work because it took a lot of time, as well as the script does not have any type of encryption. You can enjoy and modify it according to need. ~ ENDUP
  13. View File War robots script sorry no photo, no cooldown,speedhack Submitter Gargoylelol Submitted 08/10/2022 Category Tools  
  14. View File SCRIPT + BYPASS BRUTAL ᴄɴ ᴄʜᴇᴀᴛꜱ ᴘʀᴇꜱᴇɴᴛꜱ ꜱᴜᴘᴘᴏʀᴛ 2.1 ᴀʟʟ ᴠᴇʀᴛɪᴏɴꜱ ᴀɴᴛɪʙᴀɴ + ꜱᴄʀɪᴘᴛ ʙʀᴜᴛᴀʟ ɢᴀᴍᴇᴘʟᴀʏ ɴᴏ 10ᴍ + ɴᴏ 10 ʏ ʙᴀɴ ꜱᴄʀɪᴘᴛ ꜰᴇᴀᴛᴜʀᴇꜱ [] ʟᴏʙʙʏ ʙʏᴘᴀꜱꜱ [] ɪꜱʟᴀɴᴅ ʙʏᴘᴀꜱꜱ [] ᴍᴀɢɪᴄ ʙᴜʟʟᴇᴛ [] ɴᴏ ʀᴇᴄᴏɪʟ [] ɪ ᴘᴀᴅ [] ɴᴏ ꜰᴏɢ [] ɴᴏ ɢʀᴀꜱꜱ [] ᴄᴀʀ ᴍᴇɴᴜ [] 𝐂𝐀𝐑 𝐉𝐔𝐌𝐏 [] 𝐂𝐀𝐑 𝐒𝐏𝐄𝐄𝐃 [] 𝐉𝐄𝐄𝐏 𝐅𝐋𝐘 𝐒𝐓𝐀𝐁𝐋𝐄 [] 𝐉𝐄𝐄𝐏 𝐅𝐋𝐘 𝐒𝐓𝐀𝐁𝐋𝐄 𝐎𝐅𝐅 ʙɢᴍɪ = ᴏꜰꜰʟɪɴᴇ ʙᴀɴ ꜰɪx ᴏᴛʜᴇʀ ʟᴏᴡ ᴀɴᴛɪᴄʜᴇᴀᴛ = ʙʀᴜᴛᴀʟ ᴍᴜꜱᴛ ꜰᴇᴇᴅʙᴀᴄᴋ :: @The_Cheater_BoY DOWNLOAD NO ROOT SETUP https://t.me/Cheaters_Files/118 𝐉𝐎𝐈𝐍 𝐅𝐎𝐑 𝐌𝐎𝐑𝐄 𝐇𝐀𝐂𝐊𝐒 https://t.me/TheGamecheaters https://t.me/TheGamecheaters Submitter CALISTA Submitted 08/10/2022 Category PUBG  
  15. Version 2.1

    1,456 downloads

    ᴄɴ ᴄʜᴇᴀᴛꜱ ᴘʀᴇꜱᴇɴᴛꜱ ꜱᴜᴘᴘᴏʀᴛ 2.1 ᴀʟʟ ᴠᴇʀᴛɪᴏɴꜱ ᴀɴᴛɪʙᴀɴ + ꜱᴄʀɪᴘᴛ ʙʀᴜᴛᴀʟ ɢᴀᴍᴇᴘʟᴀʏ ɴᴏ 10ᴍ + ɴᴏ 10 ʏ ʙᴀɴ ꜱᴄʀɪᴘᴛ ꜰᴇᴀᴛᴜʀᴇꜱ [] ʟᴏʙʙʏ ʙʏᴘᴀꜱꜱ [] ɪꜱʟᴀɴᴅ ʙʏᴘᴀꜱꜱ [] ᴍᴀɢɪᴄ ʙᴜʟʟᴇᴛ [] ɴᴏ ʀᴇᴄᴏɪʟ [] ɪ ᴘᴀᴅ [] ɴᴏ ꜰᴏɢ [] ɴᴏ ɢʀᴀꜱꜱ [] ᴄᴀʀ ᴍᴇɴᴜ [] 𝐂𝐀𝐑 𝐉𝐔𝐌𝐏 [] 𝐂𝐀𝐑 𝐒𝐏𝐄𝐄𝐃 [] 𝐉𝐄𝐄𝐏 𝐅𝐋𝐘 𝐒𝐓𝐀𝐁𝐋𝐄 [] 𝐉𝐄𝐄𝐏 𝐅𝐋𝐘 𝐒𝐓𝐀𝐁𝐋𝐄 𝐎𝐅𝐅 ʙɢᴍɪ = ᴏꜰꜰʟɪɴᴇ ʙᴀɴ ꜰɪx ᴏᴛʜᴇʀ ʟᴏᴡ ᴀɴᴛɪᴄʜᴇᴀᴛ = ʙʀᴜᴛᴀʟ ᴍᴜꜱᴛ ꜰᴇᴇᴅʙᴀᴄᴋ :: @The_Cheater_BoY DOWNLOAD NO ROOT SETUP https://t.me/Cheaters_Files/118 𝐉𝐎𝐈𝐍 𝐅𝐎𝐑 𝐌𝐎𝐑𝐄 𝐇𝐀𝐂𝐊𝐒 https://t.me/TheGamecheaters https://t.me/TheGamecheaters
  16. View File Free Fire VIP Script Welcome! I'm a new LUA developer. But I'm very good at making GameGuardian Script I made a new Script and want to publish it. Script Features: ᴀɪᴍʙᴏᴛ ᴘʀᴏ ◐ᴍᴇᴅᴋɪᴛ ʟᴏᴀᴅ ¹ ꜱᴇᴄᴏɴᴅ◑ ꜱᴜᴘᴇʀ ꜱᴘᴇᴇᴅ ᴀɴᴛᴇɴɴᴀ ʀᴇᴍᴏᴠᴇ ᴛʀᴇᴇ ʜɪɢʜ ᴊᴜᴍᴘ Script PASSWORD: 190 Wait for me at New Hacks My youtube channel: https://m.youtube.com/channel/UCW8PW6wKYi12E7ZQ-iAadUw Submitter DRAGON_GAMING_YT Submitted 08/10/2022 Category Free Fire  
  17. You Can Detect Android Version With Android SDK Version ⟱ For Example ⟱ gg.alert("Your Android SDK Version :"..gg.ANDROID_SDK_INT,"OK") You can try script andsdk = (gg.ANDROID_SDK_INT) if andsdk == 19 then gg.alert("( 4.4.4 ) K I T K A T ,"OK") end----if if andsdk == 21 then gg.alert("( 5.0.0 ) L O L I P O P ,"OK") end----if if andsdk == 22 then gg.alert("( 5.1.0 ) L O L I P O P ,"OK") end----if if andsdk == 23 then gg.alert("( 6.0.0 ) M A R S H M A L L O W ,"OK") end----if if andsdk == 24 then gg.alert("( 7.0.0 ) N O G U A T ,"OK") end----if if andsdk == 25 then gg.alert("( 7.1.0 ) – ( 7.1.1 ) – ( 7.1.2 ) N O G U A T ,"OK") end----if if andsdk == 26 then gg.alert("( 8.0.0 ) O R E O ,"OK") end----if if andsdk == 27 then gg.alert("( 8.1.0 ) O R E O ,"OK") end----if if andsdk == 28 then gg.alert("( 9.0.0 ) P I E ,"OK") end----if if andsdk == 29 then gg.alert("( 10 ) T E N ,"OK") end----if if andsdk == 30 then gg.alert("( 11 ) E L E V E N ,"OK") end----if if andsdk == 31 then gg.alert("( 12 ) T W E L V E ,"OK") end----if if andsdk == 32 then gg.alert("( 12 ) T W E L V E ,"OK") end----if I Love To Help Show Android Version.lua
    One of the best scripts out there, very easy to use and you can add in your own id, overall a 10/10 mod, great job :DD!
  18. Ferib

    I need a good encryption

    You are confusing encryption with obfuscation, yes when you encrypt a script it will have to get decrypted before it can be used, making encryption pretty useless. Obfuscation is different as it transforms the script BUT keeps the functionality, it will just be harder to read for humans yet GG still knows what to do. The LuaR you see is just pre-compiled Lua Bytecode, it is not safer but the Lua Script is transformed into Lua Bytecode, this is some kind of 'obfuscation as the text representation is transformed into a byte representation that is difficult to understand for humans yet GG still knows exactly what to do. However I still recommend to obfuscate any script as it will stack multiple layers of transformation, making it more difficult for an attacker. You can do a memory read 10 times and only have 1 out of 10 be used by the script, you may also write 10 times to the same number and only have the last value as the real value. Yes it will create a huge memory overhead, which hopefully forces the attacker to turn it off or disk gets f*ck. Or attacker keeps it enabled and has lots of logs to read through.
  19. View File Critical Ops Mega Script (+70 Features) Features: Chams Esp radar Radar Team Radar (with fixed player animations) Wide Putin Smaller Putin Medium Putin Legit Putin Increased Aim Assist Increased HitSphere Ratio Increased Body HitBox Increased Head HitBox Remove Firing Cooldowns(makes snipers shoot like ak & sa58 auto) No Recoil Less Recoil Less Recoil v2 No Spread No Aimpunch No Dryfire No Flash No Flash V2 No smoke Sniper Crosshair No Sniper Blur Shoot Through Walls No Kick Shoot Through Walls No Kick V2 (slightly stronger, might kick if u kill everyone in 3secs) Noclip Suppressor Magic Melee Killfeed Spoofer Max Clip Size Fake Duck Jump On Teammates Show Bomb Timer Tutorial Bypass Instant Crouch 1.25 Crouch Speed Slow Crouch Change UserType: Spectator User Assistant Moderator Moderator Veteran Moderator Developer Mods Officials Slide Make Everyone Slide Make Everyone Crouch 1 Burst Shot 10 Burst Shots 20 Burst Shots 30 Burst Shots BigAss Bodies Midget Bodies Spoof Kills/Deaths Spoof Rank Spoof Wins Spoof Losses Unlock All Skins No Ragdolls Play While Banned Bots Don't Shoot Underground Increased Camera Height (K) Remove Hands/Gun Models Increased Jump Height Viewmodel X Changer Guns On Left Guns Centered 1.22 Viewmodel FOV Instant Equip Guns Increased HitBoxes Legit Fire rate Rapid Fire Super Rapid Fire Slow Fire rate Fly Speed Skin Changer (almost every skin in the game) credits to arskiz Anti-Cheat Bypass Prevent GameData from Updating Spoof Account Age Grenade Speed [K] LGBTQ + Smoke Green Smoke Submitter 1xyc Submitted 07/21/2022 Category LUA scripts  
  20. Version 0.9

    7,155 downloads

    Features: Chams Esp radar Radar Team Radar (with fixed player animations) Wide Putin Smaller Putin Medium Putin Legit Putin Increased Aim Assist Increased HitSphere Ratio Increased Body HitBox Increased Head HitBox Remove Firing Cooldowns(makes snipers shoot like ak & sa58 auto) No Recoil Less Recoil Less Recoil v2 No Spread No Aimpunch No Dryfire No Flash No Flash V2 No smoke Sniper Crosshair No Sniper Blur Shoot Through Walls No Kick Shoot Through Walls No Kick V2 (slightly stronger, might kick if u kill everyone in 3secs) Noclip Suppressor Magic Melee Killfeed Spoofer Max Clip Size Fake Duck Jump On Teammates Show Bomb Timer Tutorial Bypass Instant Crouch 1.25 Crouch Speed Slow Crouch Change UserType: Spectator User Assistant Moderator Moderator Veteran Moderator Developer Mods Officials Slide Make Everyone Slide Make Everyone Crouch 1 Burst Shot 10 Burst Shots 20 Burst Shots 30 Burst Shots BigAss Bodies Midget Bodies Spoof Kills/Deaths Spoof Rank Spoof Wins Spoof Losses Unlock All Skins No Ragdolls Play While Banned Bots Don't Shoot Underground Increased Camera Height (K) Remove Hands/Gun Models Increased Jump Height Viewmodel X Changer Guns On Left Guns Centered 1.22 Viewmodel FOV Instant Equip Guns Increased HitBoxes Legit Fire rate Rapid Fire Super Rapid Fire Slow Fire rate Fly Speed Skin Changer (almost every skin in the game) credits to arskiz Anti-Cheat Bypass Prevent GameData from Updating Spoof Account Age Grenade Speed [K] LGBTQ + Smoke Green Smoke
  21. View File BGMI GUST ACCOUNT ACTIVATER BGMI GUST ACCOUNT MAKER APPLY AT KRAFTON LOGO WANT VIDEO TUTORIAL ? else https://t.me/Cheaters_Files/95 WATCH CAREFULLY ! JOIN FOR MORE HACKS https://t.me/TheGamecheaters https://t.me/Cheaters_Files Submitter CALISTA Submitted 07/10/2022 Category PUBG  
  22. Script ended: Script error: luaj.o: /storage/emulated/0/Download/sky_cotl_autocr.lua:341 ` if points[i].time <= 100 then` attempt to index ? (a nil value) with key 'time' (field '?') level = 1, const = 32, proto = 0, upval = 1, vars = 9, code = 197 GETTABLE v3 v3 "time" ; PC 151 CODE 01C500C7 OP 7 A 3 B 3 C 276 Bx 1812 sBx -129259 stack traceback: /storage/emulated/0/Download/sky_cotl_autocr.lua:341 in function 'DoPoints' /storage/emulated/0/Download/sky_cotl_autocr.lua:424 in function 'start' /storage/emulated/0/Download/sky_cotl_autocr.lua:600 in main chunk [Java]: in ? at luaj.LuaValue.f(src:989) at luaj.LuaValue.c(src:2864) at luaj.LuaValue.i(src:2767) at luaj.LuaValue.w(src:1094) at luaj.LuaClosure.a(src:363) at luaj.LuaClosure.a(src:176) at luaj.LuaClosure.a(src:535) 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) This result for autocr in isle Device : redmi note 8 , nusantara os android 10
×
×
  • 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.