Need some help with the SV commands and AMX

New Member
Joined
Oct 10, 2006
Messages
980
Best answers
0
Location
Australia, NSW, Sydney
Just got a few questions :

1) Where in my Dedicated Server can I edit sv_region?? Typing it up in the console doesn't seem to work. Do I simply add it in : server.cfg?

2) How do I set a permanent time limit on my server.
I'm able to set a limit, but after I change the map through my own will "changelevel" the timelimit dispatches and i'm left with "No Time limit"
Btw, this is through AMXX

Thanks -

-Guzzie
 
Base belongs to me.
👑 Administrator
🌠 Staff
✔️ HL Verified
🚂 Steam Linked
💎Légéñdārý
Joined
Nov 30, 2002
Messages
10,867
Best answers
0
Location
Netherlands
in server.cfg, add a line new called sv_region "xxx" (xx = numbers)

Time limit command also in server.cfg --> mp_timelimit "xx" (xx = minutes).. Example, mp_timelimit "60" (which is 60 minutes = 1 hour)

The "" around the numbers are not really required, even though I am used to it :). Also, AMXX has nothing to do with this though as these are default commands. If you are still confused about everything, here is a small example:

// maximum client movement speed
sv_maxvelocity 5000

// default server name. Change to "Bob's Server", etc.
hostname "HL2Files.com Server #1 (GameSyn.com) By 4u-servers"

//disable cheats
sv_cheats 0

//max player speeds
sv_maxspeed 5000

//Rcon Password
rcon_password "rconpasswordhere"

mp_plcatchup 0

//Time Limit
mp_timelimit 40

// player bounding boxes (collisions, not clipping)
sv_clienttrace 3.5

// Region Settings
sv_region 255

// disable clients' ability to pause the server
pausable 0

//disable cheats
sv_cheats 0
Everything which as // or ; in front of it will be ignored by the server. So, the server won't read the line.
 
New Member
Joined
Oct 10, 2006
Messages
980
Best answers
0
Location
Australia, NSW, Sydney
Ahh!! Thankyou, I was on the right track after all. I was just scared that if I configured these my server would totally blow up.

Thanks Sky <3

-Guzzie
 

Users who are viewing this thread

Top Bottom