Server commands?

This is used for general discussion that is not necessarily server-related.
Post Reply
//RS Maverick
A semi-regular
A semi-regular
Posts: 16
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Mon Dec 19, 2005 4:25 am

Server commands?

Post by //RS Maverick »

Hi,
I just began renting a server from you're site and configured most of it to my liking, but just a few questions... In other servers I've been playing in they allow the usual "votekick" "timeleft" "nextmap" etc... commands when a player types it.... how do I enable this? and another one.... How do I make a message pop up say every 5 minutes or whatever?
Thanks alot!

-Mav
User avatar
Oso
Compulsive poster
Compulsive poster
Posts: 67
Joined: Thu Nov 03, 2005 8:37 am

Post by Oso »

Well, I think timeleft and nextmao is already on there if the players write it

/nextmap
/timeleft

But vote kicking with AMXx is only an admins job.

In Admin Mod all people can do it.

Code: Select all

admin_vote_kick <playername>
I hope this helps.
User avatar
Nick|NFo
Former staff
Former staff
Posts: 2252
Joined: Sun Mar 30, 2003 1:56 pm
Location: 127.0.0.1

Post by Nick|NFo »

Adminmod has the following commands if the fun plugin is enabled:

currentmap
nextmap
timeleft

For /nextmap and /timeleft, those are handled by Statsme.

As for the repeating messages, you can edit addons/adminmod/config/adminmod.cfg if you are using adminmod, look for admin_repeat_msg "". Put a message inside the quotes, then look at the lines right above this cvar, called admin_repeat_freq, set that to 300 if you want it every 5 minutes.

For amxmodx, edit addons/amxmodx/configs/amxx.cfg:

// Frequency in seconds and text of scrolling message
amx_scrollmsg "" 600

// Center typed colored messages (last parameter is a color in RRRGGGBBB format)
amx_imessage "Welcome to %hostname%" "000255100"
amx_imessage ""

Just replace what you want in the quotes, you can set the 600 to 300 if you want it every 5 minutes. For the amx_imessages, you need to edit the next cvar down, amx_freq_imessage and set that to 300 for 5 minutes.
-Nick
//RS Maverick
A semi-regular
A semi-regular
Posts: 16
Joined: Mon Dec 19, 2005 4:25 am

Post by //RS Maverick »

Hey guys, thanks alot for the help!!
But just another question.... I'm running a counter strike source server... admin mod is not abailable for that ... what mod should I use?
User avatar
Nick|NFo
Former staff
Former staff
Posts: 2252
Joined: Sun Mar 30, 2003 1:56 pm
Location: 127.0.0.1

Post by Nick|NFo »

//RS Maverick wrote:Hey guys, thanks alot for the help!!
But just another question.... I'm running a counter strike source server... admin mod is not abailable for that ... what mod should I use?
mani mod should cover all that then, thats the most popular admin plugin for source

http://www.mani-admin-plugin.com
-Nick
//RS Maverick
A semi-regular
A semi-regular
Posts: 16
Joined: Mon Dec 19, 2005 4:25 am

Post by //RS Maverick »

Hey thanks for the link! that mod works great. So I got all of that set up... how do I make messages appear on that?! haha
thanks for the help

-Mav
LawLess
New to forums
New to forums
Posts: 3
Joined: Sun Dec 18, 2005 9:00 pm
Location: Vancouver B.C
Contact:

Post by LawLess »

dunno if you have figured this out or not...But i believe what you are referring to is the server adverts...

go to your file manager and scroll down to this cfg

cfg/mani_server.cfg
At the top you will see this, make sure the mani_ adverts are set to 1...
And set the time of how often you want them to pop up.

mani_adverts 1 // Adverts 1 = on, 0 = off
mani_time_between_adverts 60 // Time between adverts displayed

Save changes.

Now go to your file manager and scroll down to this cfg

cfg/mani_admin_plugin/adverts.txt

these are the messages that pop up while in the server.
pick a color for your text, and write in your message after it.

{BLUE}
{CYAN}
{ORANGE}
{RED}
{MAGENTA}
{GREEN}

{GREEN}Welcome to my server...
{MAGENTA}Please be mature on my server.

Save changes.

your done.
//RS Maverick
A semi-regular
A semi-regular
Posts: 16
Joined: Mon Dec 19, 2005 4:25 am

Post by //RS Maverick »

Hey!
Yes I just figured it out and your instructions helped alot, sorry I am a pretty big noob when it comes to this stuff. Thanks alot!

-mav
Post Reply