Author Topic: Server Commands!!!!  (Read 4402 times)

Soviet

  • Posts: 12
  • Turrets: +0/-0
Server Commands!!!!
« on: June 18, 2007, 06:28:30 am »
Hey Anyone who would like to post server commands so people can copy and past into there admin.dat file please go ahead!!! and would anyone be able to make a !muteall and !unmuteall ? oh and is there a way to make dynamic commands like !gravity #

Caveman

  • Guest
Server Commands!!!!
« Reply #1 on: June 18, 2007, 08:58:07 am »
Could someone please make the search a LITTLE more prominent?

Greudin

  • Posts: 131
  • Turrets: +1/-1
    • http://tremulous.bricosoft.com
Server Commands!!!!
« Reply #2 on: June 18, 2007, 10:53:25 am »
Howdy,
Part of admin.dat used by tremx.bricosoft.com
 
[command]
command = reservation
exec    = exec match.cfg
desc    = Load up match configuration
levels  = 5

[command]
command = noreservation
exec    = exec server.cfg
desc    = Put configuration back to normal
levels  = 5

[command]
command = delire
exec    = exec delire.cfg
desc    = gravite speed changes
levels  = 4 5

[command]
command = nodelire
exec    = exec nodelire.cfg
desc    = params normaux
levels  = 4 5

[command]
command = pickup
exec    = exec pickup.cfg
desc    = Load up pickup configuration
levels  = 5

[command]
command = nopickup
exec    = exec server.cfg
desc    = Put configuration back to normal
levels  = 5

[command]
command = maxbp
exec    = exec maxbp.cfg
desc    = max build points for both races
levels  = 4 5

[command]
command = nomaxbp
exec    = exec nomaxbp.cfg
desc    = build points back to normal
levels  = 4 5

[command]
command = s3
exec    = exec s3.cfg
desc    = all s3
levels  = 4 5

[command]
command = s2
exec    = exec s2.cfg
desc    = all s2
levels  = 4 5

[command]
command = s2a
exec    = exec s2a.cfg
desc    = aliens are s2
levels  = 4 5

[command]
command = s3a
exec    = exec s3a.cfg
desc    = aliens are s3
levels  = 4 5

[command]
command = s3h
exec    = exec s3h.cfg
desc    = humans are s3
levels  = 4 5

Examples of .cfg :

http://tremx.bricosoft.com/base/maxbp.cfg

http://tremx.bricosoft.com/base/nomaxbp.cfg
url=http://tremulous.bricosoft.com][/url]

tuple

  • Posts: 833
  • Turrets: +97/-80

Death On Ice

  • Posts: 1287
  • Turrets: +126/-141
Server Commands!!!!
« Reply #4 on: June 18, 2007, 06:25:11 pm »
How to make a !muteall command, if not already explained in Tuple's tutorial:

First of all, go to your admin.dat and make a [command] block. This is done by scrolling to the very end, past the bans.

Then, you should type:
Code: [Select]
[command]
command = MuteAll
exec    = exec muteall.cfg
desc    = Mutes all the players on the server.
levels  = 6 7 8


Since we made the exec field refer to another file, we have to make that file in order for the command to function.

So we would open our text editor and make a file that contains the following:
Code: [Select]
!mute 1
!mute 2
!mute 3
!mute 4
!mute 5
!mute 6
!mute 7
!mute 8
!mute 9
!mute 10
!mute 11
!mute 12
!mute 13
!mute 14
!mute 15
!mute 16
!mute 17
!mute 18
!mute 19
!mute 20


(Sorry for the long post)

Then, after we rename our document to muteall.cfg and place it in the tremulous/base folder, it should work!