I got tons of info on all 3!
Tick rate is NUMEROURS number of things, but has NOTHING to do with your server FPS (which I will explain next). For a VERY VERY indepth look at tick rate go here:
Tick Rate @ Vavle ERC
I will just say it has to do with how info is sent and how much bandwidth is used...
NOW for your server side FPS, to get your FPS to run at max add this command to your start up line (not your server.cfg)...
+fps_max 600
It really runs at only 512+, but thats as high as it can go.
SV_DOWNLOADURL
Sv_downloadurl is used to allow your players to download sounds, maps, and files via a HTTP fast download. If you do not use this, players have to trickle download which is VERY SLOW. With this on players can tell how much they have to download because its only 1 progress bar!
To use this you have to do a couple of things.
Ok lets say you have 3 sounds and 1 map for players to use well first we need to find webspace...
Once you have that you MIRROR what you have on your server to what you have on the web server.
Like this
Ok your 3 sounds are 1.mp3 2.mp3 and 3.mp3 and your map is aim_map2
(I am assuming you are using Mani with auto download and you know how to make a .res file)
On your server they would be in these folders...
cstrike/sounds/admin_plugins/1.mp3
cstrike/sounds/admin_plugins/2.mp3
cstrike/sounds/admin_plugins/3.mp3
cstrike/maps/aim_map2.bsp
Ok so lets say your webspace is at
http://www.svdownloadurl.com/username/
We would make a folder via ftp and name it 'cstrike'
So now your url is....
http://www.svdownloadurl.com/username/cstrike/
So now you mirrow your files on to the webserver...
.../username/cstrike/sounds/admin_plugins/1.mp3
.../username/cstrike/sounds/admin_plugins/2.mp3
.../username/cstrike/sounds/admin_plugins/3.mp3
.../username/cstrike/maps/aim_map2.bsp
These files need the permissions to allow public users to read them and download them
And in your server.cfg you will now place this CVAR
//Downloadurl CVARS
sv_downloadurl "http://www.svdownloadurl.com/username/cstrike/"
sv_allowupload 1
sv_allowdownload 1
You MUST have the quotes
For the spray CVARS, I do not know how to make it so you can spray more than one spray, BUT the time it takes to spray is controlled by 2 cvars...
//Spray Round Life (how many rounds a spray stays)
r_spray_lifetime 3
//Time between Sprays (seconds)
decalfrequency 15
Add these to your autoexec.cfg
I hope this helps masterq, If you need more help please PM me or message me on Xfire if you have it!