blob: a67e4ce1571497993776d0c538d643cca67694eb (
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
42
43
44
45
46
47
48
49
50
51
52
|
// Functions
// exit
lineauxC.exit.enter = function ()
{
}
// end
lineauxC.addSC("end");
lineauxC.end.enter = globalC.exit.enter;
// login
lineauxC.login.enter = true;
{
}
// no login
lineauxC.no.login.enter = true;
{
}
// password
lineauxC.password.mustEnter = function(subCNum)
{
}
lineauxC.password.mustHelp = function(subCNum)
{
}
// no password
commands_deleteSubCommand("lineauxC.no.password", null, true);
lineauxC.no.password.enter = function ()
{
}
// interface
commands_copyCommand("globalC", "lineauxC", "interface");
lineauxC.interface.descript = null;
// line
commands_copyCommand("globalC", "lineauxC", "line");
lineauxC.line.descript = null;
|