Jump to content

SamePerson

Members
  • Posts

    14
  • Joined

  • Last visited

Additional Information

  • Android
    12.x
  • Device
    Redmi

Recent Profile Visitors

451 profile views

SamePerson's Achievements

Apprentice

Apprentice (3/14)

  • One Month Later
  • Collaborator Rare
  • Reacting Well Rare
  • Week One Done
  • First Post Rare

Recent Badges

0

Reputation

  1. nvm, already fixed v = gg.getTargetInfo() if v.x64 then -- gg.alert("Detect 64BIT") else -- gg.alert("Detect 32BIT") end I forgot, too fixated use v.x32 because my game lib Btw thanks
  2. I want to make public script automatically detect bit of game, but always detect 64bit even though my game lib is arm-v7a/32bit Example: v = gg.getTargetInfo() if v.x32 then -- if 32BIT goto -- 32bit function -- else -- if 64BIT goto -- 64bit function -- end Or v = gg.getTargetInfo() function EX() if v.x32 == true then -- if 32BIT goto -- 32bit function -- end if v.x32 == false then -- if 64BIT goto -- 64bit function -- end end How can possible i fix it? *Sorry for my bad english, I was helped by google translate*
  3. I have no idea with this function HOME1() --- HMM=-1 -- ??? end function HOME2() --- HMM=-1 -- ??? end function HOME3() --- HMM=-1 -- ??? end -- not following v.versionName while true do if gg.isVisible(true) then HMM = 1 -- ??? gg.setVisible(false) end if FL84 == 1 then HOME1() -- ??? end end
  4. Ahh i see, thanks to all for your help. I appreciate that
  5. Ah sorry, i did "versionName", in this post i just forget, my bad Tanks btw
  6. I have game with 3 version , i want to make an automatic go to function by detected the game version v=gg.getTargetInfo() -- get the target VN1="1.14.3.5.419705" -- game version 1 VN2="1.14.3.7.436693" -- game version 2 VN3="1.14.3.9.439281" -- game version 3 if v.processName~=VN1 then HOME1() -- goto function game version 1 then else -- idk exactly the next command if v.processName~=VN2 then HOME2() -- goto function game version 2 then else -- idk exactly the next command if v.processName~=VN3 then HOME3() -- goto function game version 3 then else -- idk exactly the next command os.exit() -- if all wrong os exit end end function HOME1() -- v1.14.3.5.419705 function HOME2() -- v1.14.3.7.436693 function HOME3() -- v1.14.3.9.439281
  7. function Test() -- function name gg.setVisible(false) -- set visibility to false gg.setRanges(gg.REGION_ANONYMOUS) -- ranges name gg.searchNumber("your value", gg.TYPE_DWORD) -- input your value if gg.isVisible() then -- if the user tap the gg btn execute the code below while true do -- set true to trigger gg.clearResults() -- clear result gg.clearList() -- clear list so user can't peak the code gg.alert("Don't open GG while executing") -- alert os.exit() -- then exit end end end
  8. function Test() -- function name gg.setVisible(false) -- set visibility to false gg.setRanges(gg.REGION_ANONYMOUS) -- ranges name gg.searchNumber("your value", gg.TYPE_DWORD) -- input your value if gg.isVisible() then -- if the user tap the gg btn execute the code below while true do -- set true to trigger gg.clearResults() -- clear result gg.clearList() -- clear list so user can't peak the code gg.alert("Don't open GG while executing") -- alert os.exit() -- then exit end end end Already fix, thanks sir
  9. if gg.isVisible() then while true do gg.alert("Don't open GG while executing") gg.setVisible(true) gg.clearResults() gg.clearList() os.exit() I want to make someone cannot peek my code when searching value How to make it work, i appreciate for the help Test.lua
×
×
  • 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.