Reply to topic  [ 52 posts ]  Go to page 1, 2, 3, 4  Next
HLDS 
Author Message
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!
User avatar

Joined: Wed Feb 21, 2007 2:59 pm
Posts: 338
Location: Storage Area Network
Well I finally took the plunge and setup a dedicated server on my extra computer.

Everything seems to be working alright at the moment, however I do need some help with a few things.

For those of you that want to help, here is some pertinent information:

Specs
P4 HT socket 478
1Gb RAM
10/100 mb/s LAN card
Server 2003 Standard
Approx 512kb/s up

Currently I have AMXX installed and working, also WB bots.


Currently some problems I face are:
-Admins cannot slap themselves/eachother[FIXED]
-Trouble enabling voice_speex codec & making it sound not shitty [FIXED]
-Cannot change server cvars from my client ( sv_password related? )[FIXED] (Derr, use rcon)
-Having trouble installing plugins that overwrite metamod ( IE: WhichBots )[FIXED]
-I need an automatic re-launcher for when I crash the server[FIXED]

I have never administered an NS server, any tips/help would be appreciated.

Server located here: OA.SELFIP.NET:27015

_________________
JP impostor server offlined due to nobody playing on it.


Last edited by WormboOA on Thu Jul 26, 2007 1:00 am, edited 5 times in total.



Mon Jul 23, 2007 4:52 pm
Profile WWW
User avatar

Joined: Mon Mar 05, 2007 5:19 pm
Posts: 268
Location: Sunny San Diego
Post 
You do know that since it is related to OA, no one from here will touch it with a 20ft stick.

_________________
On the count of three, everyone eject Oldro. 1......2.........


Mon Jul 23, 2007 5:04 pm
Profile WWW
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!
User avatar

Joined: Wed Feb 21, 2007 2:59 pm
Posts: 338
Location: Storage Area Network
Post 
Thats not true : (

_________________
JP impostor server offlined due to nobody playing on it.


Mon Jul 23, 2007 5:09 pm
Profile WWW

Joined: Mon Feb 19, 2007 3:25 pm
Posts: 483
Location: socal
Post 
Read the AMX docs. Theres certain access codes in the users.ini file you need to give/take out to have admins abuse themselves. Also on that same note there is a access letter to have admins get amx_rcon access, like amx_rcon sv_gravity 500 and stuff. You have to login to rcon when you join the server. Like rcon_password hldsnub, then you will have access to the commands. rcon sv_gravity 500 and so. If im off on my commands SUE ME.


Mon Jul 23, 2007 6:03 pm
Profile
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!
User avatar

Joined: Wed Feb 21, 2007 2:59 pm
Posts: 338
Location: Storage Area Network
Post 
[FIXED]

_________________
JP impostor server offlined due to nobody playing on it.


Mon Jul 23, 2007 6:07 pm
Profile WWW
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!

Joined: Fri Feb 23, 2007 5:23 pm
Posts: 230
Location: Irvine, CA
Post 
rox. hopefully it isnt as shitty as evo servers :/


Mon Jul 23, 2007 6:28 pm
Profile
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!
User avatar

Joined: Wed Feb 21, 2007 2:59 pm
Posts: 338
Location: Storage Area Network
Post 
I dunno, its seems to be doing alright

Maxed it out at a whole 25kB/s up tonight.

With real players too.

_________________
JP impostor server offlined due to nobody playing on it.


Mon Jul 23, 2007 6:55 pm
Profile WWW

Joined: Mon Feb 19, 2007 3:25 pm
Posts: 483
Location: socal
Post 
I owned. Not.


Mon Jul 23, 2007 7:23 pm
Profile
Jigglyroom Admin

Joined: Tue Feb 20, 2007 12:44 pm
Posts: 289
Location: Los Angeles County
WormboOA wrote:
-I need an automatic re-launcher for when I crash the server

Server located here: OA.SELFIP.NET:27015


You just need a script to relaunch the executable on exit. Unfortunately I haven't a clue how to do this on Windows 2003 -- can you even get to a command shell in that OS?

In DOS you'd just need to make a batch file... and in the bourne shell (sh, ksh, bash) for *nix you'd just do this:

Code:
#!/bin/sh
while [ 0 ] do
hl-exectuable-name
done



Least I think this is how it's done.

(And yes, it uses 0 in the bourne shell for the true condition on a while. If anyone cares I'll explain why if asked)


Last edited by effDefender on Mon Jul 23, 2007 10:18 pm, edited 1 time in total.



Mon Jul 23, 2007 9:28 pm
Profile
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!
User avatar

Joined: Wed Feb 21, 2007 2:59 pm
Posts: 338
Location: Storage Area Network
Post 
Hmm I'll have to try that.

I'm familiar with *nix, thanks.

What would my batch file look like in dos?

It's going to be about the same in windows.

_________________
JP impostor server offlined due to nobody playing on it.


Mon Jul 23, 2007 9:33 pm
Profile WWW
Site Admin
User avatar

Joined: Tue Feb 20, 2007 12:50 am
Posts: 1415
Post 
And so it begins...

That's the fifth server to steal our name...

One day, all servers will be called "Jigglypuff"
_________________
"I am Dyslexia of Smörgåsbord. Prepare to have your ass, laminated!" - Babylon Park
Thothie


Mon Jul 23, 2007 9:33 pm
Profile YIM WWW
Attention Whore! Look at meeeeeeeeee!
Attention Whore! Look at meeeeeeeeee!
User avatar

Joined: Wed Feb 21, 2007 2:59 pm
Posts: 338
Location: Storage Area Network
Post 
It's merely meant as a token of those who will most likely play there.

_________________
JP impostor server offlined due to nobody playing on it.


Mon Jul 23, 2007 9:36 pm
Profile WWW
Jigglyroom Admin

Joined: Tue Feb 20, 2007 12:44 pm
Posts: 289
Location: Los Angeles County
Post 
My DOS is sorta weak...
Not sure how to do a loop in a batch file... but I suppose you could make a two liner "mybatchfile.bat":

Code:
half-life-executable
mybatchfile.bat


You might need to use fully qualified paths.

This is just an idea -- I'm pretty weak at DOS (partly because DOS itself is weak)


Mon Jul 23, 2007 10:16 pm
Profile
User avatar

Joined: Tue May 08, 2007 1:08 pm
Posts: 1045
Post 
pedal faster jiggly?

_________________
Image


Mon Jul 23, 2007 10:19 pm
Profile
Site Admin
User avatar

Joined: Tue Feb 20, 2007 12:50 am
Posts: 1415
Post 
Code:
@echo off
cls
title NS HLDS Restart
echo (%date% %time%) hlds started.
:hlds
rem Edit params on this line to match your HLDS.EXE config
start /min /wait /ABOVENORMAL hlds.exe -tos -game NS +maxplayers 12 -noipx -port 27016 -console +map ns_eclipse
echo (%date% %time%) WARNING: hlds closed or crashed, restarting.
goto hlds

_________________
"The DOS is strong in this one."
Thothie


Mon Jul 23, 2007 10:44 pm
Profile YIM WWW
Display posts from previous:  Sort by  
Reply to topic   [ 52 posts ]  Go to page 1, 2, 3, 4  Next

Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software.