-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVorkath.java
More file actions
55 lines (47 loc) · 1.4 KB
/
Copy pathVorkath.java
File metadata and controls
55 lines (47 loc) · 1.4 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
53
54
55
import org.rspeer.runetek.adapter.scene.Npc;
import org.rspeer.runetek.api.scene.Npcs;
import org.rspeer.script.Script;
import org.rspeer.script.ScriptMeta;
import org.rspeer.ui.Log;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
@ScriptMeta(developer = "Sri", name = "Vorkath", desc = "Vorkath")
public class Vorkath extends Script {
File output;
FileWriter writer;
@Override
public void onStart() {
output = new File("VorkathOutput.txt");
try {
writer = new FileWriter("output.txt");
} catch (IOException e) {
e.printStackTrace();
}
super.onStart();
}
@Override
public int loop() {
Npc vorkath = Npcs.getNearest("Vorkath");
System.out.println("Stance: " + vorkath.getStance());
System.out.println("Animation " + vorkath.getAnimation());
Log.fine("Stance: " + vorkath.getStance());
Log.fine("Animation " + vorkath.getAnimation());
try {
writer.write("Stance: " + vorkath.getStance());
writer.write("Animation " + vorkath.getAnimation());
} catch (IOException e) {
e.printStackTrace();
}
return 10;
}
@Override
public void onStop() {
try {
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
super.onStop();
}
}