View difference between Paste ID: k0HNLMeG and k4auVXDC
SHOW: | | - or go back to the newest paste.
1
os.loadAPI("col")
2
col.setBackground(colors.black)
3
col.clear()
4
5-
col.msg(01,"------------------------------------------")
5+
--Funftionen
6-
col.msg(19,"-")
6+
7
function deutsch()
8
9
	col.clear()
10
	col.msg(01,"           [German-Version]            ")
11
	col.msg(02,"")
12
	col.msg(03,"Hier kann man sehr schnell automatisch")
13
	col.msg(04,"Items brennen lassen.")
14
	col.msg(05,"")
15
	col.msg(06,"Einfach eure Items in das Input-ME")
16
	col.msg(07,"legen. Items die nicht eingestellt sind")
17
	col.msg(08,"bleiben im Inpute-ME liegen.")
18
	col.msg(09,"")
19
	col.msg(10,"Maschienen die im Hintergrund verbaut")
20
	col.msg(11,"sind:  -> Electric Furnace")
21
	col.msg(12,"		 -> Macerator")
22
	col.msg(13,"		 -> Extractor")
23
	col.msg(14,"		 -> Compressor")
24
	col.msg(15,"")
25
	col.msg(16,"Erz-Verdoppelungen wurden mit in die")
26
	col.msg(17,"Brennvorgänge eingerichtet.")
27
	col.msg(18,"")
28
	col.msg(19,"")
29
end
30
31
function englisch()
32
33
	col.clear()
34
	col.msg(01,"           [English-Version]           ")
35
	col.msg(02,"")
36
	col.msg(03,"Here you can melt Items very quick")
37
	col.msg(04,"and completely automatically.")
38
	col.msg(05,"")
39
	col.msg(06,"Simply put your items in the input ME.")
40
	col.msg(07,"Items that are not set, remain in")
41
	col.msg(08,"the input ME.")
42
	col.msg(09,"")
43
	col.msg(10,"Machines that are installed in the")
44
	col.msg(11,"background:  -> Electric Furnace")
45
	col.msg(12,"		 -> Macerator")
46
	col.msg(13,"		 -> Extractor")
47
	col.msg(14,"		 -> Compressor")
48
	col.msg(15,"")
49
	col.msg(16,"Ore doublings were set up with in")
50
	col.msg(17,"the melting processes.")
51
	col.msg(18,"")
52
	col.msg(19,"")
53
end
54
55
--Programm
56
57
deutsch()
58
59
while true do
60
  	if rs.getInput("left") then
61
    	englisch()
62
    end
63
	if rs.getInput("right") then
64
		deutsch()
65
    end
66
	sleep(1)
67
end