Navigation

Users Online

· Guests Online: 1

· Members Online: 0

· Total Members: 132
· Newest Member: DMGUYDZ64

Last Seen Users

· transistor6299 weeks
· chimpman_deluxe168 weeks
· DMGUYDZ64478 weeks
· labye621 weeks
· luluoueba621 weeks
· BadMojo622 weeks
· Empyre626 weeks
· llucy609626 weeks
· Nagibatol628 weeks
· uninlenrego629 weeks

Translate

World Clock

Amsterdam  
Athens  
Chicago Ill  
Cyprus  
GMT/UTC  
Hawaii  
Istanbul  
Kuwait City  
London  
Moscow  
New York  
Ottawa  
Perth  
Seattle  
Sydney  
Tokyo  
Wellington  

Your Time  

World Clock
Infusion by G0LGS
* Daylight Saving Active

Login

Username

Password



Not a member yet?
Click here to register.

Forgotten your password?
Request a new one here.

Calendar

April 2024
M T W T F S S
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30

Shoutbox

You must login to post a message.

02/13/2015 12:19
Booyeah :3

01/11/2012 20:43
I'm still dropping by almost every day, but not logging in.

09/04/2011 02:40
I figured out how to ban a bot, but not how to delete a post or thread. Frown

08/30/2011 20:29
... and we're back! again

07/24/2011 15:55
by the way, The wiki data is NOT lost. I have a backup of it. I just can't get the site to talk to the database for some reason. My server here works fine but not on my hosing service.

07/24/2011 15:50
Hello Empyre, I have deleted the spam shouts and you should be able to delete them as well now. It should show up as an edit or delete under the shout.

07/19/2011 19:49
I noticed that BigCog visited the forums today, despite having been banned.

07/18/2011 02:46
BigCog was obviously a spam bot, and I was able to ban it, but I didn't see how to delete its shout box spam.

07/07/2011 19:43
The last time I tried, I couldn't. I'll try again the next time I see a spam bot.

07/07/2011 01:09
Hey Empyre Shock, I have deleted the spam in the forum. I have also looked in your admin settings and you have permission to ban users & edit or delete treads. Let me know if you can't.

How to setup halflife deticated server Part-2

Clan Battle Mode

 

 

Clan Battle mode is supported by TFC for clan matches.  It keeps tracks of all players joining, disconnecting, scoring, and killing each other.  At the end of the game, it dumps these stats   into the console for the players to see.  To start a server in Clan Battle mode, use "tfc_clanbattle 1".  When players join a team on a Clan Battle server, that player will be assigned a Battle ID, i.e., Battle ID 101.  This unique number identifies that particular player in the game and is displayed throughout prematch mode as well as when a player respawns after dying in normal Clan Battle mode.  Players need to remember their ID because in the event of getting disconnected, they can use their ID and reconnect to the game where they left off - meaning the game will remember their previous stats and apply them to the player when he/she rejoins.  If a clan or team wanted to substitute a player, then when one player leaves, the second player can join with the same ID as the previous player and continue where the last player left.  To join a server after being disconnected from a game or as a substitute player, open the console and first type "setinfo tf_id <Battle ID>".  Then, type "connect <ip addy>" to get back into the server.  Many clans and teams like to run a practice round to warm up before playing the actual match.  For this, the "tfc_clanbattle_prematch <minutes>" line will allow players to frag each other without achieving any of that level's goals.  Also, it is always a pain when trying to play a private clan match when people in the public keep joining if you are running on a public server.   The server admin can use "tfc_clanbattle_lock 1" to lock the game as soon as the prematch period ends and the real match begins.  The only people who will be able to rejoin the game are those whose Battle ID's match the ID's of people that were disconnected during a match.

 

Linux Server

 

 

To begin, I am no Linux guru, and to get explicit linux "how to's" for you server admins, I had to enroll the help of another.  So, I would like to take this opportunity to thank Tim "Night-Shade" Fletcher for his Linux wisdom contributions.

          In the event that you have not yet downloaded the latest linux version of the dedicated server, you can download the linux server from Won.net.  The latest version of the server is 3014 (which is used with client version 1013).  The full version is at ftp://ftp.won.net/pub/half-life/server/linux/hlds_l3014.tar.gz, and the update is at ftp://ftp.won.net/pub/half-life/server/linux/hlds_l10103014.tar.gz.  Once you have this downloaded, you need to create a directory for it: "mkdir /usr/games/halflife".  Then you will change into that directory using "cd /usr/games/halflife".  Once there, you will untar the file with "tar xfzv /path/to/hlds_l3014.tar.gz" or "tar xfzv /path/to/hlds_l10103014.tar.gz" depending on which version you downloaded.  Now we need to get the server to access the shared library (libhlwon.so) - this can be accomplished in one of two ways.  The first way (symlinking the libhlwon.so into /usr/lib/) is easier for linux newbies to understand and use, as well as being good for people who want the server up and running fast, and do not care to setup a script to set the environment up first.  While the second way (LD_LIBRARY_PATH variable) is a little more complex, but is more unix complient:

1) Now, for the newbies, instead of copying around a huge lib, you can just link the halflife shared library (libhlwon.so) into a system wide shared library directory (/usr/lib) - this makes upgrades easier since you only need to rerun ldconfig and not recopy the lib.  You will link this by issuing the command "ln -s libhlwon.so /usr/lib/" in the command line in the halflife directory.  *Note: You will have to remove the old lib if you have already copied it into the directory (as per the linuxreadme.txt from Valve) and are trying to link on top of it.  Also, this way does require root access to the machine.  Next, rerun the ldconfig using "/sbin/ldconfig".

2) For the more complex oriented, before the server is started, set the LD_LIBRARY_PATH environment variable to contain the location of the library by running "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/games/halflife".  This also helps if you do not have root access on the server box that you are using to run your Half-Life server.  A simple script can be made to do this, e.g.:

#!/bin/sh
export LD_LIBRARY_PATH=/path/to/halflife:$LD_LIBRARY_PATH
cd /path/to/halflife
./hlds_l $*

Lastly, it is time to run the server from the halflife directory: "./hlds_l +map undertow +maxplayers 16" (or for a LAN server: "./hlds_l +map undertow +maxplayers 16 +sv_lan 1 -nomaster").  When the server program has finished loading, the words "WON Auth" should appear to tell you that you have obtained authorization from WON and you are ready to roll.  If per chance you instead see "WON Server", then this is a message from the WON gods that either you have an outdated version of the server software or possibly a firewall or proxy is hindering your attempts to reach the WON servers.

For further help in Linux troubleshooting, please read through the Linux portion of the FAQ.

Spectator Mode

 

 

Everybody, admins and players alike, seems to want to know how to use spectator mode.  Unfortunately, spectator mode is inoperable, and from what I understand, it will not be fixed.  There are no plans to ever make spectator mode work.

Comments

#1 | labye on May 22 2012 03:50:03
choice for many parents fake watches sale fake watches sale . . For those not wishing to flood the room with nothing but pink or blue, cheap rolex replica watches cheap rolex replica watches it is possible to use shades of light green and yellow the two most gender neutral colors. As the child gets older breitling replica breitling replica . , it"ll be a bit easier to incorporate a theme. Your little boy"s room can stay blue if you buy him a Disney Car"s toddler bed if that"s what he is considering. In scenario including this, you can simply add in several accessories and some new bedding along with the room can have a totally new appear and feel. The very best, and least expensive, technique to continually evolve together with your child"s everchanging interests would be to update the bedding as opposed to alter wallpaper and each and every matching piece of furniture. replica rolex watches replica rolex watches . Right after all is said and carried out www.thatwatches.com/images/thumbnails/rolexdatejusts/17214_863.jpg . , the decision will be a reflection of one"s taste and what you would like to
#2 | labye on May 23 2012 00:27:38
minimize dairy intake. In case you must have milk lace dresseslace dresses . , ensure it is skim homecoming dresses 2012homecoming dresses 2012 . . Furthermore, plant proteins don't give you unnecessary fats that would make your stomach bulge. Including them as part of your daily intake is a good method to cut down fat and obtain important nutrition. Additionally, fruits and vegetables provide you with fiber that will help in the digestion of your food lace wedding dresseslace wedding dresses . cheap homecoming dressescheap homecoming dresses . . You should not eat and immediately go to bed. This will actually put on more weight. Waiting up for 2 to 3 hours before you go to bed after consuming will ensure proper digestion. Other than this, you should also ensure you drink plenty of water. Two liters a day ensures that toxins are pushed from out of your body and shall help in keeping you from accumulating fat. Using nutrition and exercise to get a flat stomach may be a gradual process. In order to reap maximum benefits, you
#3 | labye on May 23 2012 00:28:56
. that arrivals line, discount wedding dressesdiscount wedding dresses but I do interviews on it and after just 30 minutes my feet are screaming and it isnat much longer before the shoes come off and I go barefoot. How do celebrities do itNot by acting the pain away, thatas for sure. They actually rely on experts like Dr. Stuart Kaplan, a Beverly Hills Dermatologist who treats the feet of Hollywoodas privileged class. Dr. Kaplan uses a product called Radius, cute dressescute dresses . a substance intended to fill in the creases in the face for a more youthful look. But, when Radius is injected into the balls of the feet it plumps up the area adding a padlike effect to the foot lace dresseslace dresses . . And the doctor tells me itas perfectly safe sexy wedding dressessexy wedding dresses . . aOh itas very safe. Itas just like any of the other fillers such as Juvaderm or Restylane only the advantages are that itas a little bit thicker and it lasts a little bit longer. When youare wearing high heels all
#4 | labye on May 23 2012 00:34:19
. Other SSRIs include Zoloft, Lexapro, Luvox and Paxil. cute dressescute dresses . The antagonism between SSRIs and NSAIDs was an unexpected finding. Researchers at Rockefeller University were looking at a chemical marker for depression in mice with the expectation that administration of antiinflammatory medications would improve symptoms. sexy prom dressessexy prom dresses They thought that if the inflammatory response to stress could be reduced, then depressive symptoms should improve. But they found the opposite mice receiving NSAIDs had a reduced response to antidepressants or none at all. The researchers then turned their attention to human studies that might shed light on this adverse NSAID effect. After reviewing data from a large clinical trial known as STARD, they found a similar effect in humans lace wedding dresseslace wedding dresses . . SSRI effectiveness dropped from 55% to 45% in people who reported taking NSAIDs. lace dresseslace dresses . It wasn't known if occasional or .

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 1.35 seconds
563,486 unique visits