--[[ Clean Boot ]]--
N = "Clean Boot System Protect"
B = "Boot"
R = "Recompile"
MT = "Make Temp"
E = "Exit"
version = "1.1"
O = {
"Boot",
"Recompile",
"Make Temp",
"Exit"
}
print(N)
print(version)
print("Options:")
print(O)
Please Help Me!!
Posted 30 July 2013 - 10:13 PM
--[[ Clean Boot ]]--
N = "Clean Boot System Protect"
B = "Boot"
R = "Recompile"
MT = "Make Temp"
E = "Exit"
version = "1.1"
O = {
"Boot",
"Recompile",
"Make Temp",
"Exit"
}
print(N)
print(version)
print("Options:")
print(O)
Posted 30 July 2013 - 10:20 PM
textutils.serialize(O)
Posted 30 July 2013 - 10:23 PM
Posted 30 July 2013 - 10:25 PM
Posted 30 July 2013 - 11:19 PM
print(textutils.serialize(O))
Posted 31 July 2013 - 01:24 AM
Posted 31 July 2013 - 01:39 AM
Posted 31 July 2013 - 01:43 AM
for _, v in ipairs(O) do print(v) endFor this, you'd replace
print(textutils.serialize(O))with the above.
Posted 31 July 2013 - 12:52 PM
0 members, 1 guests, 0 anonymous users