Spring Sale Don't miss: Get a hefty 50% discount on your order

Language & Currency

Currency

Counter-Strike: Your game, your server

Counter-Strike Rent server
from 3.67
AUD /month
from 4.38
BGN /month
from 11.90
BRL /month
from 3.26
CAD /month
from 2.09
CHF /month
from 17.41
CNY /month
from 55.57
CZK /month
from 16.70
DKK /month
from 2.24
EUR /month
from 1.91
GBP /month
from 18.94
HKD /month
from 16.88
HRK /month
from 873.67
HUF /month
from 38,364.70
IDR /month
from 8.92
ILS /month
from 201.60
INR /month
from 332.64
ISK /month
from 358.69
JPY /month
from 3,238.14
KRW /month
from 41.57
MXN /month
from 11.48
MYR /month
from 25.32
NOK /month
from 3.96
NZD /month
from 136.76
PHP /month
from 9.78
PLN /month
from 11.15
RON /month
from 262.53
RUB /month
from 25.44
SEK /month
from 3.25
SGD /month
from 86.21
THB /month
from 73.59
TRY /month
from 2.42
USD /month
from 45.48
ZAR /month
from 2.92
date /month

Customize MotD in Counter Strike

Requirements:
Advanced Mode or motd.txt on FTP
Basic HTML knowledge
Webspace

Inserting an image:

You can add an image to the welcome window using this function:

<html>
<img src="http://www.URL-TO-THE-WEBSITE.com/IMAGE-NAME.JPG" border="0">
</html>

Regarding the size of the image, it depends on the resolution the player has set.
If you insert an image with a size of 800x600, for example, you will get ugly scroll bars and only a small part of the image will be displayed.

So, the size of the window changes according to the resolution.
The following table shows the approximate changes:

ResolutionWelcome Window Size
640 x 480450 x 210
800 x 600590 x 290
1024 x 768760 x 380
1600 x 12001190 x 590

We recommend using 590 x 290 since the resolution 800 x 600 is the most commonly used.

Inserting a sound:

You can insert a sound using the “embed” function.
This will play a sound file located on your webspace.
Uploading the sound file to the game server’s FTP is possible, but not recommended as the sound will not be played.

To have a sound in the welcome window, the code should look like this:

<html>
<embed src="http://www.URL-TO-THE-WEBSITE.com/sound.mp3" hidden="true" autostart="true">
</html>

The sound file can be in MP3 or WAV format and should not be too long.
There is nothing worse than having to listen to a sound for 15-45 seconds that some players may not want to hear.

Inserting a website:

In general, it is not recommended to display any website in the window.

Here are the reasons:

  1. Displaying a website with a lot of content can cause a player’s game to freeze.
  2. Most players don’t even see the welcome window for a second because they are not interested in who the admin of the server is. They quickly remove it by pressing the Enter key.

Reason 3 is because every welcome window says the same thing.
Play fair
Have fun
Don’t cheat

However, if you still want to display a website, you must use “IFrames”.

<HTML>
<FRAMESET ROWS="100%,*" BORDER="0" FRAMEBORDER="0">
<FRAME src="http://www.URL-TO-THE-WEBSITE.com" SCROLLING="AUTO">
</FRAMESET>
</HTML>

You can find more tutorials about HTML and its functions on www.selfhtml.org.