Language & Currency

Currency

Counter-Strike: Your game, your server

Counter-Strike Rent server
from 4.44
AUD /month
from 5.26
BGN /month
from 17.08
BRL /month
from 4.02
CAD /month
from 2.52
CHF /month
from 20.58
CNY /month
from 67.30
CZK /month
from 20.06
DKK /month
from 2.69
EUR /month
from 2.23
GBP /month
from 22.00
HKD /month
from 20.27
HRK /month
from 1,099.94
HUF /month
from 45,327.04
IDR /month
from 10.16
ILS /month
from 239.92
INR /month
from 392.47
ISK /month
from 434.30
JPY /month
from 4,055.39
KRW /month
from 57.15
MXN /month
from 12.59
MYR /month
from 31.41
NOK /month
from 4.90
NZD /month
from 165.81
PHP /month
from 11.47
PLN /month
from 13.38
RON /month
from 315.27
RUB /month
from 30.98
SEK /month
from 3.81
SGD /month
from 96.58
THB /month
from 98.88
TRY /month
from 2.83
USD /month
from 50.61
ZAR /month
from 32.69
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.