Language & Currency

Currency

Counter-Strike: Your game, your server

Counter-Strike Rent server
from 4.38
AUD /month
from 5.26
BGN /month
from 16.44
BRL /month
from 3.97
CAD /month
from 2.52
CHF /month
from 20.52
CNY /month
from 68.07
CZK /month
from 20.07
DKK /month
from 2.69
EUR /month
from 2.24
GBP /month
from 22.05
HKD /month
from 20.27
HRK /month
from 1,094.96
HUF /month
from 45,202.22
IDR /month
from 10.59
ILS /month
from 239.31
INR /month
from 393.55
ISK /month
from 441.81
JPY /month
from 3,977.92
KRW /month
from 58.43
MXN /month
from 12.69
MYR /month
from 31.63
NOK /month
from 4.83
NZD /month
from 166.70
PHP /month
from 11.67
PLN /month
from 13.39
RON /month
from 315.27
RUB /month
from 31.21
SEK /month
from 3.81
SGD /month
from 99.23
THB /month
from 97.37
TRY /month
from 2.83
USD /month
from 51.95
ZAR /month
from 30.00
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.