-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAutorun.java
More file actions
52 lines (46 loc) · 1.15 KB
/
Autorun.java
File metadata and controls
52 lines (46 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
public class Autorun extends STD implements Runnable {
public static String a = "";
public static int a0 = 0;
static void run(int l) {
bombom:
while (true) {
switch (l) {
case 0:
default:
a = "тест";
l = 10;
continue;
case 10:
_drawText(a, 0, 0);
a0 = 10;
l = 20;
continue;
case 20:
if (a0 == 10 && (a0 + 10 == 20)) {
_drawText("" + a0, 0, 15);
}
l = 30;
continue;
case 30:
_repaint();
l = 40;
continue;
case 40:
_delay(5000);
continue;
}
}
}
public Autorun() {
super();
}
public void run() {
try {
R();
} catch (Exception ex) {
}
}
public static void R() throws Exception {
run(-1);
}
}