ANDLUA+ SHARE PROJECT
2.93K subscribers
195 photos
112 videos
376 files
47 links
SHARE FREE .ALP OR PROJECT AND ANYTHING

GROUPS

@andluapublic
Download Telegram
Forwarded from Deleted Account
Forwarded from Deleted Account
ExpLogin.alp
5.9 KB
Exp Login with custom dialog alert.
YANG PUNYA AKUN GMAIL BISA INSTAL LEAGUE OF LEGENDS MOBILE CHAT @krojzanovic

GUA PENGEN BUAT CHEATNYA KTL , PNYA GUA MASIH PRAPENDAFTARAN TERUS!! BGST
JUAL CHEAT SUNTIK IOS JB/NON JB MINAT CHAT @krojzanovic
Proses pemasangan suntik IOS NON JB di iPhone X😁
JUAL CHEAT SUNTIK IOS JB/NON JB MINAT CHAT @krojzanovic
Forwarded from AndLua+ بالعربي (Nawaf)
function SExecute(File,Features)
local path=Get_Path(File)
ROOT = os.execute("su") --Whether it is ROOT
if ROOT then
os.execute("su -c chmod 777 "..path)
cmd="su -c '"..path.."'"
else
os.execute("chmod 777 "..path)
cmd=path
end
pd=os.execute(cmd)
if pd then
print((Features).."Success")
else
print((Features).."Failure")
end
end
function Get_Path(File)
import "java.io.File"
return tostring(File(activity.getLuaDir(File)))
end

SExecute("files/1","MB Turned on")
Forwarded from AndLua+ بالعربي (Nawaf)
Lua Class.alp
3.6 KB
😁👍
Forwarded from AndLua+ بالعربي (Nawaf)
function twice(x)
return 2*x --return value (x)=2x
end

print("The Number Is :")
io.read("*number")--Read variable number
a = 4
print(twice(a))

--Output will be like this :
--The Number Is :
--8