Posted 15 August 2012 - 02:49 PM
Hello. Im new here and also im noob in lua :3. I have question, how did i center my menu options
Code :
So, i just want to make my options
Code :
opcje = {}
wybor = 1
opcje[1] = "Wylacz komputer"
opcje[2] = "Zrestartuj komputer"
opcje[3] = "Zagraj w weza"
opcje[4] = "Kontroluj zolwia"
opcje[5] = "Przejdz do trybu komend"
function uruchom(numer)
if numer == 1 then
shell.run("shutdown")
elseif numer == 2 then
shell.run("reboot")
elseif numer == 3 then
shell.run("worm")
elseif numer == 4 then
shell.run("wcmove")
elseif numer == 5 then
else
wybor = 1
return menu()
end
end
function przycisk()
sleep(0.05)
event, argument = os.pullEvent()
if event == "key" then
if argument == 28 then
return uruchom(wybor)
elseif argument == 200 then
if wybor == 1 then
else
wybor = wybor - 1
end
elseif argument == 208 then
if wybor == table.getn(opcje) then
else
wybor = wybor + 1
end
else
return przycisk()
end
else
return przycisk()
end
return menu()
end
function menu()
shell.run("clear")
for i=1, table.getn(opcje) do
if wybor == i then
print("[ "..opcje[i].." ]")
else
print(opcje[i])
end
end
return przycisk()
end
shell.run("clear")
return menu()
Sorry, it's polish menu :<, if it's problem, i will translate it…So, i just want to make my options
opcje = {}
wybor = 1
opcje[1] = "Wylacz komputer"
opcje[2] = "Zrestartuj komputer"
opcje[3] = "Zagraj w weza"
opcje[4] = "Kontroluj zolwia"
opcje[5] = "Przejdz do trybu komend"
be on center of my screen… Can i get some help? <Thanks>