-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbzeditor_path.cfg
More file actions
56 lines (50 loc) · 1.08 KB
/
bzeditor_path.cfg
File metadata and controls
56 lines (50 loc) · 1.08 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
56
// ======================
// BATTLEZONE PATH EDITOR
// ======================
//
// CREATE THE PATH EDITOR WINDOW
//
CreateControl("EditPath", "WINDOW")
{
Pos(0, 65);
Size(160, 425);
ColorGroup("BACKGROUND");
CreateControl("ScriptTitle", "STATIC")
{
Pos(7, 5);
Size(107, 10);
Font("TINY");
JustifyText("LEFT");
Text("Script DLL");
Style("TRANSPARENT");
}
CreateControl("Script", "EDIT")
{
Pos(11, 25);
Size(119, 9);
BorderSize(3);
BevelSize(3);
Font("TINY");
Style("ROLLOVER", "OUTLINE");
Cursor("Highlight");
UseVar("script.setdll");
}
CreateControl("DllList", "LISTBOX")
{
ColorGroup("LISTBOX");
Position(11, 44);
Size(120, 90);
CellSize(107, 11);
Font("TINY");
Cursor("Highlight");
UseVar("script.setdll");
style("vslider");
AddTextItem("Deathmatch01.dll", "Deathmatch");
AddTextItem("Instant.dll", "InstantAction");
AddTextItem("mpinstant.dll", "MPI");
AddTextItem("strategy02.dll", "Strategy");
AddTextItem("stratctf.dll", "Strat-CTF");
AddTextItem("luamission.dll", "Lua Mission");
AddTextItem("Empty.dll", "Empty");
}
}