Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ligne=""
- colone=""
- tail=""
- ma=""
- print("Orientation ecran")
- print("1=haut, 2=bas , 3=gauche , 4=droite ,5=deriere")
- mon = read()
- if (mon=="1") then
- ma="top"
- end
- if (mon=="2") then
- ma="bottom"
- end
- if (mon=="3") then
- ma="left"
- end
- if (mon=="4") then
- ma="right"
- end
- if (mon=="5") then
- ma="back"
- end
- mp = peripheral.wrap(ma)
- print("Quel Taile de police")
- tail = read()
- tail=tail+0
- mp.setTextScale(tail)
- print("Commence sur quel ligne ? ")
- ligne=read()
- ligne=ligne+0
- print("Commence sur quel colone ?")
- colone=read()
- colone=colone+0
- mp.setCursorPos(ligne,colone)
- print("De quel couleur ? ")
- print("Palette de couleur")
- term.setTextColor(colors.white)
- print("1 = blanc")
- term.setTextColor(colors.red)
- print("2 = rouge")
- term.setTextColor(colors.blue)
- print("3 = bleu")
- term.setTextColor(colors.green)
- print("4 = vert")
- term.setTextColor(colors.brown)
- print("5 = marron")
- term.setTextColor(colors.lime)
- print("6 = vert clair")
- term.setTextColor(colors.magenta)
- print("7 = magenta")
- term.setTextColor(colors.orange)
- print("8 = orange")
- term.setTextColor(colors.pink)
- print("9 = rose")
- term.setTextColor(colors.yellow)
- print("10 = jaune")
- term.setTextColor(colors.white)
- local couleur= read()
- if (couleur=="1") then
- mp.setTextColor(colors.white)
- end
- if (couleur=="2") then
- mp.setTextColor(colors.red)
- end
- if (couleur=="3") then
- mp.setTextColor(colors.blue)
- end
- if (couleur=="4") then
- mp.setTextColor(colors.green)
- end
- if (couleur=="5") then
- mp.setTextColor(colors.brown)
- end
- if (couleur=="6") then
- mp.setTextColor(colors.lime)
- end
- if (couleur=="7") then
- mp.setTextColor(colors.magenta)
- end
- if (couleur=="8") then
- mp.setTextColor(colors.orange)
- end
- if (couleur=="9") then
- mp.setTextColor(colors.pink)
- end
- if (couleur=="10") then
- mp.setTextColor(colors.yellow)
- end
- print("yolo")
- end
- mp.setTextColor(couleur)
- mp.write("Test 3")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement