Sinds een 6 dagen heb ik een Counterstrike Source gameserver.
Nu ben ik bezig met de motd. De standaard dingen in die motd is heel erg beperkt. Je kan niet eens een tabel maken ofzo.
Daarom een redirect naar een externe site.
Maar nu het probleem. Als ik op de gameserver kom blijft de motd soort van knipperen. Niet snel ofzo. Maar lijkt alsof hij na het laden hem opnieuw laad.
motd.txt [de redirect]
motd.htm
Nu ben ik bezig met de motd. De standaard dingen in die motd is heel erg beperkt. Je kan niet eens een tabel maken ofzo.
Daarom een redirect naar een externe site.
Maar nu het probleem. Als ik op de gameserver kom blijft de motd soort van knipperen. Niet snel ofzo. Maar lijkt alsof hij na het laden hem opnieuw laad.
motd.txt [de redirect]
code:
1
2
3
4
5
6
7
8
9
10
| <html>
<head>
<title>
Falloutteam.com
</title>
</head>
<body bgcolor="#000000" scroll="no">
<meta http-equiv="Refresh" content="0";url="http://www.blokhak.nl/jordy/motd.htm">
</body>
</html> |
motd.htm
code:
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Falloutteam.com Counter-Strike: Source</title>
<style type="text/css">
pre {
font-family:Verdana,Tahoma;
color:#ffffff;
}
body {
background:#000000;
margin-left:8px;
margin-top:0px;
}
a {
text-decoration: underline;
}
a:link {
color: #E1B120;
}
a:visited {
color: #E1B120;
}
a:active {
color: #E1B120;
}
a:hover {
color: #E1B120;
text-decoration: underline;
}
</style>
</head>
<body bgcolor="#FFFFFF">
<font color="#ffffff" face="Verdana">
<div align="left">
<center>
<b>
Falloutteam.com - Counter Strike Source - Netherlands<br>
83.149.87.87:27035
</b></font>
<br><br>
<A HREF="http://www.falloutteam.com">[img]"http://www.blokhak.nl/jordy/logo.gif"></A>
</center>
<font[/img]
<table border="0" id="table2" style="border-collapse: collapse" cellpadding="0" cellspacing="0" width="666">
<tr>
<td width="222" align="left" valign="top">
<center>
<table border=0 cellpadding=1 cellspacing=1 bgcolor="#000000">
<tr>
<td valign="right" width="200" bgcolor="#333333">
<font color="#ffffff" size=1 face="verdana">
<center>[ admins ]</center>
</font>
</td>
</tr>
</table>
</center>
<font size="1">
Outsidr<br>
MrWizard<br>
</td>
<td width="222" align="left" valign="top">
<center>
<table border=0 cellpadding=1 cellspacing=1 bgcolor="#000000">
<tr>
<td valign="right" width="200" bgcolor="#333333">
<font color="#ffffff" size=1 face="verdana">
<center>[ map cycle ]</center>
</font>
</td>
</tr>
</table>
</center>
<font size="1">
de_prodigy<br>
de_dust<br>
de_dust2<br>
de_aztec<br>
de_cbble<br>
de_train
</td>
<td width="222" align="left" valign="top">
<center>
<table border=0 cellpadding=1 cellspacing=1 bgcolor="#000000">
<tr>
<td valign="right" width="200" bgcolor="#333333">
<font color="#ffffff" size=1 face="verdana">
<center>[ rules ]</center>
</font>
</td>
</tr>
</table>
</center>
<font size="1">
No Cheating<br>
No Camping<br>
No Spamming<br>
No Racism or Sexism<br>
Respect All Other Players<br>
</td>
</tr>
</table>
</div>
</font>
</body>
</html> |