I have a counterstrike source server and the webspace from you guys, I need to put an image on my counterstrike server, but i dont know how to right the html from my ftp where i put my image. how do i do this?
thanks, matt
images
-
- New to forums
- Posts: 3
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Sun Apr 23, 2006 9:06 pm
The basic html would be <img src="http://linkhere">
I'm guessing you want it to show up when people first join your server so you would need to put the code I showed you above in your motd.txt file found in the root(first) folder of your game server ftp.
An example of a motd.txt file would be:
<html>
<head>
<title>Your server name here</title>
</head>
<body>
<img src="http://linkhere">
</body>
</html>
I'm guessing you want it to show up when people first join your server so you would need to put the code I showed you above in your motd.txt file found in the root(first) folder of your game server ftp.
An example of a motd.txt file would be:
<html>
<head>
<title>Your server name here</title>
</head>
<body>
<img src="http://linkhere">
</body>
</html>
my ftp is ftp://thehive@hive.nuclearfallout.net i put the image inside there(not within any of the folders) and for the image i put http://www.hive.nuclearfallout.net/logo.gif and nothing comes up. What am i doing wrong?