blob: 7eb28b7efc8713f553e9174247d6dffdaaafda1f (
plain)
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
|
using System;
using System.Text;
public class ImportantTextTask : PlayerTask
{
public override int TaskStep
{
get
{
return 0;
}
}
public override bool IsComplete
{
get
{
return false;
}
}
public string Text;
public override void Initialize()
{
}
public override bool ValidConsole(global::Console console)
{
return false;
}
public override void Complete()
{
}
public override void AppendTaskText(StringBuilder sb)
{
sb.AppendLine("[FF0000FF]" + this.Text + "[]");
}
}
|