
hoangninyb
Ascended-
Posts
74 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by hoangninyb
-
I find it pretty cool!
-
I use F1 VM and com2us does not detect!
-
u can use F1VM
- 7 replies
-
- game gurdian
- help
-
(and 1 more)
Tagged with:
-
Oh, man! I already have a database and connect to my script using php! My problem is that there is no method for receiving device IDs! And maybe it's a problem for you and me I created the Ankulua script, and there they have a method for receiving device ID: getDeviceID() I wish GG had it
-
Time = os.date("%H:%M:%S %D") print(Time) Or Time = os.date("*t") print(Time) Or Time = os.date("%c") print(Time)
-
I create a database, when a user registers with my script on their device, the script creates a file containing the information and it is also sent to the database and saved to the database database. when the user logs in, the information in the previously saved file will be sent to the database and compared by php sorry my english is very bad!
-
I know what you mean! but i have no knowledge about java/smali. Where can I see instructions?
-
Yes I understand what you mean, I tried reading files build.pro but some do not allow, if there is a method of reading Android ID is good
-
@HEROGAMEOfficial My script is encrypted with SELGG, and it's decrypted and shared for free by others! That's not good for me
- 40 replies
-
1
-
- Encrypt
- Encryption
- (and 5 more)
-
how to make script work only with allowed devices?
hoangninyb replied to hoangninyb's question in Help
Build.pro a few devices can't read it -
Yes, we can't tell users to encrypt it
-
P=gg.prompt({"A"},nil,{"text"}} if string.lenP[1] > 10 then gg.alert("max char") elseif not string.find("@") then gg.alert("not @") end
-
What did I say wrong
-
I'm not interested in creating an encryption tool, it's just that my script creates a key on the user's device! Do you know what I mean
-
What do you mean by modifying 9185137 to 11 and 11111 to 1941? Or is it the first and second amendments to the search results list?
-
I mean, when I create it's encrypted, not using any other tools anymore
-
I have searched a lot on YouTube, Google but there is no one guide to do this. Is this not possible? if possible, please guide me!
-
I accidentally deleted the source code an someone help me recover from the encrypted file? Password is my name: HOANGNINYB mapping.lua
-
man, I don't know where to find it!
- 40 replies
-
1
-
- Encrypt
- Encryption
- (and 5 more)
-
Hi @HEROGAMEOfficial my device doesn't allow access to /sdcard/ so it got an error like in the picture! but can access the path /storage/emulated/0/ So I have a small suggestion: change the path to /storage/emulated/0/ if /sdcard/ is inaccessible!
- 40 replies
-
1
-
- Encrypt
- Encryption
- (and 5 more)
-
you just need to remove "add menu[2]", "and menu[4]" and "and menu[6]" in lines 12, 13 and 14
-
@LemaKeltter u can try with F1vm or x8sanbox
-
i don't understand what you mean, i tried with a piece of code like this, and when i click cancel the menu is always hidden, no matter what menu! X = {"A","B"} function A() menu = gg.choice(X,nil,"Menu A") if menu == 1 then B() end if menu == 1 then B() end Homedm = -1 end function B() menu = gg.choice(X,nil,"Menu B") if menu == 1 then C() end if menu == 1 then C() end Homedm = -1 end function C() menu = gg.choice(X,nil,"Menu C") if menu == 1 then A() end if menu == 1 then A() end Homedm = -1 end while true do if gg.isVisible(true) then Homedm = 1 gg.setVisible(false) end if Homedm == 1 then A() end end
-
How to edit offset value with unstatic value?
hoangninyb replied to KarimIdris999997's question in Help
gg.clearResults() gg.loadResults(gg.getListItems()) -- get values in list item gg.refineNumber("7777888", gg.TYPE_DWORD) -- filter value 7777888 local results = gg.getResults(1) t ={} t[1] = {} t[1].address = results[1].address + 4 -- offset 4 t[1].flags = 4 -- type Dword k ={} k[1] = {} k[1].address = results[1].address + 8 -- type Dword 8 k[1].flags = 4 -- type Dword C = gg.getValues(t)[1].value -- get the C value D = gg.getValues(k)[1].value -- get the D value gg.clearResults() gg.loadResults(gg.getListItems()) -- get values in list item gg.refineNumber("55556666", gg.TYPE_DWORD) -- filter value 55556666 local count = gg.getResultsCount() local results = gg.getResults(count) get all values from count local values = {} for i, v in ipairs(results) do local index = (i - 1) * 2 local addr = v.address values[index + 1] = {address = addr + 4, flags = gg.TYPE_DWORD, value = C, freeze = true} -- set C to A values[index + 2] = {address = addr + 8, flags = gg.TYPE_DWORD, value = D, freeze = true} -- set D to B end gg.setValues(values) gg.addListItems(values) Is this what you want?- 1 reply
-
1
-
hi guys! I'm trying to find a method to remove an element from the table! A ={"a","b","c"} P = prompt({"input"},"{"a"}) for i, v in ipairs(A) do if P[1] == A[i] then A[i] = nil break end end when i set A[1] = "a" to A[1] = nil then print out nil, but i want print out "b"