Jump to content

MANDO01

Contributor
  • Posts

    175
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by MANDO01

  1. 1 hour ago, MC189 said:

    Hi @MANDO01, I think it's just confirm it. F1 VM has a buggy Daemon that causing this, MyAndroidToolsPro also requires Daemon to see the LogCat.

    • - Basicly, the app aren't able to deploy it's services. Have you tried another Virtual Machine or check new updates for F1 VM?
    • - You can always check if Services is deployed when You see multiple PID on the running process:
    su -c pidof com.myandroidtools.pro
    #Should be shows: 1084, 8089 (or more PID)
    • - Alternatively, you can use Termux again to see the LogCat:
    su -c 'logcat > /sdcard/log.txt'

    In the end, I'm really sure it was  F1 VM Fault. If Daemon is buggy, then it would affect any Apps, not just GG. Termux and MyAndroidToolsPro can fails because of this.

    Should I send to you the log ?

  2. 30 minutes ago, MC189 said:

    Hi @MANDO01, I think it's just confirm it. F1 VM has a buggy Daemon that causing this, MyAndroidToolsPro also requires Daemon to see the LogCat.

    • - Basicly, the app aren't able to deploy it's services. Have you tried another Virtual Machine or check new updates for F1 VM?
    • - You can always check if Services is deployed when You see multiple PID on the running process:
    su -c pidof com.myandroidtools.pro
    #Should be shows: 1084, 8089 (or more PID)
    • - Alternatively, you can use Termux again to see the LogCat:
    su -c 'logcat > /sdcard/log.txt'

    In the end, I'm really sure it was  F1 VM Fault. If Daemon is buggy, then it would affect any Apps, not just GG. Termux and MyAndroidToolsPro can fails because of this.

    Well after the last message i send to you i tryed my androidtoolspro again and when i click to much in logcat i get the log

  3. 4 hours ago, MC189 said:

    Hi @MANDO01, Daemon Failed means it can't instantiate a background process/service because of Occupied Permission/Access. The cause is something that accessing a Root Directory or accessing Local Network (something that requires High Level of Permission). The only way is to restart your device. There's no effective solution to this since the causes may vary. If you're anoyyed, you can always try several things as your first step:

    • - You can determine the reason behing Failing Daemons by monitoring your app activtiy using logcat: MyAndroidTools Pro has a nice logcat feature or even modifying system app properties. Don't forget to also analyse malicious / unnecessary apps that accessing Libnetd, a simple Packet Capturer can give you a better result: PCAPdroid
    • - I don't know if F1 VM has a Dual User Space like Xiaomi did, as it can cause the same issue related to Daemon. Probably, creating multiple Instance of F1 VM can also be the reason.
    • - You might want to disable any existing Firewall Client through Termux.
    export ANDROID_NO_USE_FWMARK_CLIENT = 1

    However, it could also because of GG being buggy on F1 VM (or opposite), as you said: "sometimes it works fine and sometimes i get this error".

    Myandroidtools pro i got this error in every part of the app FAILED TO GIN ROOT ACCESS

    i restarted f1vm 3 times and still the same error and game guardian working fine 

     

    Screenshot_2023-01-15-04-09-25-029_com.f1player.jpg

  4. 42 minutes ago, under_score said:

    open gameguardian inside of f1vm

    Or maybe f1vm is corrupt, try to uninstall f1vm and install it again

    well i think you didn't understand me

    I mean when i open game guardian in f1vm 

    sometimes it works fine and sometimes i get this error 

    And I tried to reinstall it so many times

     

    Screenshot_2023-01-13-03-55-01-363_com.f1player.jpg

    Screenshot_2023-01-13-03-55-22-377_com.f1player.jpg

  5. 7 hours ago, MainC said:

    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:
    	function(3)
    elif switch 0:
    	print('errr')

    Cool I know it's in other languages but i didn't know it's in lua

  6. 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 👀

  7. On 12/15/2022 at 5:59 PM, under_score said:

    that is impossible, that menu will always appear if the script needs internet

    No it's possible lol

    But i can't test it and i need the code to test it even without links i just need the code

    On 12/15/2022 at 12:46 PM, Unnamed1 said:

    Well I made it download but now i need to Know how to Actually stop the pop up after it completely download since the file already there and ready to execute in the main lua heres the example i wanted to remove Would be helpful if anyone can help thanks!

    test = loadfile("the file you want to open")
    if not test then 
    -- then download 
    else
    -- then just exit
    os.exit()
    end

    This should work i think 🤔 try it 

    This without testing !!!!

  8. 16 minutes ago, WavyDavy said:

    Looked up some vids and a post on xda my version of the s22 ultra cant be rooted just thought I'd let you know.

    That's sad use virtual machine 

  9. 4 hours ago, WavyDavy said:

    Yea android 12 why wouldn't i pay? Even if there a free version

    Because you can get it for free 😐

    But If you insist on paying 

    pay me 😂🤣

  10. On 8/30/2022 at 7:14 AM, WavyDavy said:

    Is it that easy? Feel like ive seen tuts that are complicated and longer. Isnt there to separate s22 ultra versions with different processors

    If you don't wanna root your device just use x8 sandbox or f1vm or any virtual machine 

  11. 3 hours ago, WavyDavy said:

    Does parallel space and GG just not work on android 12? Same with virtual xposed(says it supports 5~10)

    Yup

    You have 2 choices 

    1 - root your device

    2 - use virtual machine like f1vm or x8 sandbox 

  12. 3 hours ago, ENDUP said:

    when you put offset will transfer anonymous.

    But the content works for you on cd, cb, xa

    But I think it's working anonymous , Actually, I don't use this storage much, but I think it works.

    And if don't work.

    All Hacks are of four types with different values.

    Example:

    Hack damage

    In Xa 100F

    In Ca 66D

    In Cd 1F

    In A 5D

     

    But how i can know that

    I have value 55F A how i can find the xa value for this value 

  13. 33 minutes ago, ENDUP said:

    Hello, How are you my friend, let's get started. 

    1- Go To GOTO  

    spacer.png

    2- you will find CD, CB, PS,Xa .. Choose one of them and according to the game it may be different from one game to another, But you will often find it in Xa.

    spacer.png

     

    3 -  Choose libil2cpp.so

    spacer.png

    spacer.png

    4- The desired value will be renewed, just press and hold on it , Then the first option Offset Calculator.

    spacer.png

    spacer.png

     

    5- You will have to search for Offset 

    Like unlock 0x621B88

    Don't put "0x"

    (621B88)

    You will put it and then you will adjust the value.

    spacer.png

     

    This method is the most professional and the best possible method, which I personally use.

     

     

     

    But this works only in xa range

    do you have any way to get the offset from anonymous range ?

×
×
  • 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.