I know what it is in "serferinfo.txt" but I don't know what the code is like. If you could explain to me how it works, I would appreciate it.
Forum
CS2D Scripts serverinfo.txtserverinfo.txt
5 replies 1
I know what it is in "serferinfo.txt" but I don't know what the code is like. If you could explain to me how it works, I would appreciate it.
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
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
<?xml version="1.0"?> <serverinfo> <br/> <image width="382" height="150" color="#ffffff" align = "center" url = "www.cs2dglobal.tk" source = "gfx\cs2dglobal.png"></image> <br/><br /> <text size = "15" color="#6699ff" align = "center"> Join our community for news, clans, tournaments and more.</text> <br/> <br/> <text size = "17" color="#fff">(!) Season 3</text> <br/> <text size = "15" color="#aaaaaa"> This season has started and ends at January 15. </text> <br/> <br/> <text size = "17" color="#fff">(!) Winners from Last Season</text> <br/> <text size = "15" color="#ffd700">1st Place @ 2DBRAZIL shccc (4093)</text> <br/> <text size = "15" color="#c0c0c0">2nd Place @ D4C (3617)</text> <br/> <text size = "15" color="#cd7f32">3rd Place @ fermaper (3427)</text> <br /> </serverinfo>
You can achieve something like this
SQ has written
Server info supports some tags via XML
You can achieve something like this
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
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
<?xml version="1.0"?> <serverinfo> <br/> <image width="382" height="150" color="#ffffff" align = "center" url = "www.cs2dglobal.tk" source = "gfx\cs2dglobal.png"></image> <br/><br /> <text size = "15" color="#6699ff" align = "center"> Join our community for news, clans, tournaments and more.</text> <br/> <br/> <text size = "17" color="#fff">(!) Season 3</text> <br/> <text size = "15" color="#aaaaaa"> This season has started and ends at January 15. </text> <br/> <br/> <text size = "17" color="#fff">(!) Winners from Last Season</text> <br/> <text size = "15" color="#ffd700">1st Place @ 2DBRAZIL shccc (4093)</text> <br/> <text size = "15" color="#c0c0c0">2nd Place @ D4C (3617)</text> <br/> <text size = "15" color="#cd7f32">3rd Place @ fermaper (3427)</text> <br /> </serverinfo>
You can achieve something like this
It helped me a lot but I don't know how to install it on the server, I tried to put it in "cs2d / sys" but it stays in letter format (no colors or images are applied)
Edited (Added):
I already solved the problem, they do not need to respond!
Many thanks to those who contributed !!
edited 1×, last 15.11.20 10:23:48 pm
1