Raised This Month: $12 Target: $400
 3% 

Is there a way to turn server NO lagg?


Post New Thread Reply   
 
Thread Tools Display Modes
pulpy
Senior Member
Join Date: Oct 2005
Location: Brights Grove, ON
Old 01-29-2007 , 04:47   Re: Is there a way to turn server NO lagg?
Reply With Quote #61

just because he has a wireless router doesnt mean that he's using the wireless portion of it, i believer ALL wireless routers have the capability of both wireless and wired, havent seen 1 that doesnt have at least 4 wired ports.

Now, if your looking to upgrade your processor, prob gonna be expensive, if ur willing to fork out the dough for a new processor, why not break down and rent a decent server for 30-60 bucks a month, at least this way u can find admins willing to help with server costs, maybe in the end u could be getting a free server because of the flow of money.. works for me at least
__________________
pulpy is offline
Ingram
Veteran Member
Join Date: May 2004
Old 01-29-2007 , 09:05   Re: Is there a way to turn server NO lagg?
Reply With Quote #62

How can he be running wireless through a hub without an access point??

And, for the second time, get rid of the hub.

Last edited by Ingram; 01-29-2007 at 09:15.
Ingram is offline
SweatyBanana
BANNED
Join Date: Sep 2005
Location: LOL
Old 01-29-2007 , 18:07   Re: Is there a way to turn server NO lagg?
Reply With Quote #63

Quote:
Originally Posted by JJkiller View Post
How can he be running wireless through a hub without an access point??
I've seen em.
SweatyBanana is offline
Send a message via AIM to SweatyBanana Send a message via Yahoo to SweatyBanana
BlueSpirit
Junior Member
Join Date: Dec 2006
Old 01-29-2007 , 18:26   Re: Is there a way to turn server NO lagg?
Reply With Quote #64

Huh.

Wireless? It cannot be that, well, I think.

If what he says is true ( 2.90 MBpS Up ), changing his internet to better internet will not change things.

Here smy server SPECS :
--------
Processor : Pentium III 866Mhz @ 1001 Mhz
Speed : 5.1 MBpS Down ; 900 KBpS Up
Mem : SDRAM PCI 133 MHz @ 154 MHz ( CAS 3T ; RAS 2T ; CAS2RAS 3T)

----------

He has better SPECS than me, however, im not even lagging a bit. People on my server have all low pings whithout laggs. My server is a 16 slots... & im sure I could host another 8 slots. And finally, Im running it on Winblows XP Pro.


To have no laggs, ppl need a good upload, not dling. And he has a real better uploading than me!

Maybe theres something with Wireless, like that b/c its in the "air" data transfers take more time to join his computer...
I don't know if it'll work with a Cable / Optic Fiber interbet connection, but the hardware i have now very suck comparated to his. PENTIUM III !!!!!! OMG

And I have the proof it doesnt lagg because my father doesnt want me to host a server at his home, but my mother doesnt care. So at my mother's house, I sometimes run the server on the PIII for a week and go to my fatheres house & play CS on my server with his Athlon 64.

Try hosting your server on Linux (huh if you know at least what iit is), so we could see. b4 i was hostring my server on Slackware (im still, but not often).

! AT LEAST IT CANNOT BE YOUR SEMPRON !


Edit : OMG I forgot something!!!!!!!!!!!!!!!!!!!!!!!!
If your on Windows, set the PRIORITY TO HIGH for HLDS.EXE
OMG OMG OMG its that.

Heres a lil batch script.

Code:
@echo off
%systemdrive%
SET HLDSPATH=***Write where is located hlds.exe here***
cd %HLDSPATH%
SET OPTIONS=***WRITE the HLDS startup options here  e.g. -console -maxplayers 16 -port 27015***
start /HIGH hlds.exe %OPTIONS%
echo HLDS.exe started...
Copy this code in a TXT file like then rename the extension to BAT
like : openhlds.txt * **---> openhlds.bat

IF you were using the GUI mode before, dont take it.
Write these options to the SET OPTIONS line : -console -maxplayers <numbers of maxplayers> -port <server port> -game <game e.g. cstrike> -map <starting map>

***YOU MUST usu the -map <map> argument or hlds will crash.

Oh and : If your HLDS.EXE is NOT located on C: ( hda1 ) , remove %systemdrive% and write the drive letter like D: ( e.g. hda2 , hdb1 ) ...

Try it, it did that for me too, I remember. Then I wrote a kill script to kill some progs + a script to set priority to high. Its not in C, but it helps.

Heres my lil batch :
Code:
@echo off
D:
rem Do you see? I cannot use %systemdrive% because my HLDS path isnt on C: , but on D: .
@echo off
echo *** KILLING RUNNING PROCESSES TO AVOID LAGGS... Please wait. ***
echo.
@echo on
taskkill /F /FI "IMAGENAME eq WRSSSDK.exe" /T
taskkill /F /FI "IMAGENAME eq SpySweeper.exe" /T
taskkill /F /FI "IMAGENAME eq nod32kui.exe" /T
taskkill /F /FI "IMAGENAME eq webshots.scr" /T
taskkill /F /FI "IMAGENAME eq PopupBlocker.exe" /T
taskkill /F /FI "IMAGENAME eq hpztsb04.exe" /T
taskkill /F /FI "IMAGENAME eq emule.exe" /T
taskkill /F /FI "IMAGENAME eq bittorrent.exe" /T
taskkill /F /FI "IMAGENAME eq aim.exe" /T
@echo off
echo.
echo Done.
cls
color 9
set load_num=%random%
@echo on
cd D:\Jeux\Valve\HLServer\
@echo off
move server_setup.cfg %cd%\server_setup_[%load_num%].cmd
@echo on
call server_setup_[%load_num%].cmd
@echo off
move server_setup_[%load_num%].cmd %cd%\server_setup.cfg
echo Loaded SERVER_SETUP.CFG Configuration File Successfully with %load_num%
echo.
echo -------------------------------------------
echo.
echo SERVER MAXPLAYERS  : %MAXPLAYERS%
echo SERVER GAME        : %GAME%
echo INITIAL SERVER MAP : %STARTMAP%
echo SERVER PORT        : %PORT%
IF %SECURITY%==secure echo SECURE             : YES & goto returnnext
IF %SECURITY%==insecure (echo SECURE             : NO) ELSE echo SECURE             : UNKNOWN
:returnnext
echo.
echo -------------------------------------------
echo.
@echo on
SET HLDS=hlds.exe -console +maxplayers %MAXPLAYERS% -game %GAME% +map %STARTMAP% +port %PORT% -%SECURITY%
start /HIGH %HLDS%
exit
I did it when I had nothing to do , so thats why its so big lol. But the one I wrote you will work.

"BlueX

Bye

Last edited by BlueSpirit; 01-29-2007 at 19:09.
BlueSpirit is offline
Daniell_
Junior Member
Join Date: Dec 2006
Location: Helsingborg
Old 01-30-2007 , 10:16   Re: Is there a way to turn server NO lagg?
Reply With Quote #65

It just gives me an error!

W_LoadWadFile: couldn't load gfx.wad

how to fix?
__________________
What can i write here? ^^
= Read The Fuck*ng Manual
READ THE RULES!!!!
http://forums.alliedmods.net/showthread.php?t=49470
READ THE RULES!!!!
Daniell_ is offline
JCobra
Senior Member
Join Date: Mar 2006
Location: Canada
Old 01-30-2007 , 12:53   Re: Is there a way to turn server NO lagg?
Reply With Quote #66

Update your hlds installation?

HldsUpdateTool.exe -command update -game (game) -dir (server directory)
__________________
User has abandoned this account.
JCobra is offline
Send a message via AIM to JCobra
Daniell_
Junior Member
Join Date: Dec 2006
Location: Helsingborg
Old 01-30-2007 , 15:14   Re: Is there a way to turn server NO lagg?
Reply With Quote #67

Still get the error, PS it's a stand alone server... (i think the most of u know it, but some stupidõs out there dont get what hldsupdatetool is)
__________________
What can i write here? ^^
= Read The Fuck*ng Manual
READ THE RULES!!!!
http://forums.alliedmods.net/showthread.php?t=49470
READ THE RULES!!!!

Last edited by Daniell_; 01-30-2007 at 15:17.
Daniell_ is offline
Optimus Prime
BANNED
Join Date: Jan 2007
Old 01-30-2007 , 15:31   Re: Is there a way to turn server NO lagg?
Reply With Quote #68

Quote:
Originally Posted by Daniell_ View Post
Still get the error, PS it's a stand alone server... (i think the most of u know it, but some stupidõs out there dont get what hldsupdatetool is)
But we are no the one's with the lag.
And so what it is a standalone server? Do YOU know what standalone means? I am not going to go into it but you CAN use the update tool, not that it will help you with your problem.

Last edited by Optimus Prime; 01-30-2007 at 15:33.
Optimus Prime is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 01-30-2007 , 17:27   Re: Is there a way to turn server NO lagg?
Reply With Quote #69

Quote:
Originally Posted by Optimus Prime View Post
I am not going to go into it but you CAN use the update tool, not that it will help you with your problem.
You HAVE to use the update tool or it won't show up in the master server list.
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
BlueSpirit
Junior Member
Join Date: Dec 2006
Old 01-30-2007 , 18:26   Re: Is there a way to turn server NO lagg?
Reply With Quote #70

Do we freaking care bout that dudes?
He has laggs, he doesnt care about what the 2 last posts said.

Every decent owner of a dedicated server will use StandAlone lol.

Again is a BATCH :

Code:
set options=-command update -game cstrike
HldsUpdateTool.exe %options%
Your hldsupdatetool.exe must be in same directory than hlds.exe . For me its D:\Jeux\Valve\HLServer

And you run the batch from this directory.


I think its that man, but i can be wrong. W/e try it. Because hlds takes too much of CPU, the normal priority will play between the use of SWAP space and processor. *** AND SWAP IS F*****G slow. ***. In high priority, hlds will be allowed to use more CPU and RAM. :-] :-) :-]
BlueSpirit is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 20:00.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode