Administrators Enyby Posted May 10, 2019 Administrators Posted May 10, 2019 If you need read something like that: string.char(68, 111, 110, 39, 116, 32, 117, 115, 101, 32, 99, 111, 109, 112, 105, 108, 101, 114) Open https://www.lua.org/cgi-bin/demo put this code in form, add print around call, like this and run: print(string.char(68, 111, 110, 39, 116, 32, 117, 115, 101, 32, 99, 111, 109, 112, 105, 108, 101, 114)) You get readable text: 2
Administrators Enyby Posted May 10, 2019 Author Administrators Posted May 10, 2019 You can use something like this: local s = gg.prompt({'Code:', 'add print'}, nil, {'text', 'checkbox'}) if s ~= nil then if s[2] then s[1] = 'print('..s[1]..')' end local run, err = load(s[1]) if run == nil then print(err) else run() end end 2
Administrators Enyby Posted May 10, 2019 Author Administrators Posted May 10, 2019 https://gameguardian.net/forum/files/file/1320-tester/ 1
TisNquyen Posted May 11, 2019 Posted May 11, 2019 In this video I converted it easily, what do you see?
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