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 3if v.processName~=VN1 then
HOME1()-- goto function game version 1thenelse-- idk exactly the next commandif v.processName~=VN2 then
HOME2()-- goto function game version 2thenelse-- idk exactly the next commandif v.processName~=VN3 then
HOME3()-- goto function game version 3thenelse-- idk exactly the next command
os.exit()-- if all wrong os exitendendfunction HOME1()-- v1.14.3.5.419705function HOME2()-- v1.14.3.7.436693function HOME3()-- v1.14.3.9.439281
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.
Question
SamePerson
I have game with 3 version , i want to make an automatic go to function by detected the game version
15 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now