Page 1 of 1
Sourcemod, metamod help
Posted: Sun Sep 14, 2008 8:51 am
by JigglyWiggly
I am probably misinformed and or stupid... but I am pretty busy to look into it deeply and I am a bit confused. I installed metamod and sourcemod, on my dedicated server and they work, but what do I need to get commands like rtv to work? I know mani admin can do those things but I heard it does not work for obsidian.
Posted: Sun Sep 14, 2008 8:53 am
by Keychain
..Jigglywiggly I just played a game of CS:S with you, I think. :V
Posted: Sun Sep 14, 2008 8:54 am
by JigglyWiggly
Keychain wrote:..Jigglywiggly I just played a game of CS:S with you, I think. :V
Last I played css was a few hours ago, I was in the vagrant server or something.
Posted: Sun Sep 14, 2008 8:55 am
by Keychain
My bad I meant OC. I just played CS:S right after OC so I got confused.
Posted: Sun Sep 14, 2008 9:02 am
by JigglyWiggly
Keychain wrote:My bad I meant OC. I just played CS:S right after OC so I got confused.
I played oc a few minutes ago, I was in a server which had 8 people then most of everyone left. I was on the level with a lot of npcs spawners that you kill. (With crysis music)
Re: Sourcemod, metamod help
Posted: Sun Sep 14, 2008 10:02 am
by sisko59
JigglyWiggly wrote: I need to get commands like rtv to work?
Check the folder ...\orangebox\obsidian\addons\sourcemod\plugins.
The file rockthevote.smx have to present. If it's not present, so you can look for in folder disabled. If rockthevote.smx is in disabled, move it in folder plugins (one folder up).
Posted: Sun Sep 14, 2008 7:34 pm
by JigglyWiggly
Thanks a bunch! One last question when I say rtv the only maps you can select is the current map. What file can I edit to add selectable maps like oc_lobby?
Posted: Sun Sep 14, 2008 7:47 pm
by Neico
mapslist.txt i belive (there are also some settings in addons/sourcemod/configs) just look a bit around
Posted: Sun Sep 14, 2008 8:39 pm
by JigglyWiggly
I only found mapslist.cfg in the sourcemod folder and mapslist.txt in the obsidian folder. I'm a bit confused what to do from here.
Here's what's in mapslist.cfg
"/**
* Use this file to configure map lists.
*
* Each section is a map list that plugins can use. For example, the Admin Menu
* requests an "admin menu" map list, and you can control which maps appear via
* this file.
*
* Each section must have a property that explains where to read the maps from.
* There are two properties:
*
* target - Redirect the request to another section.
* file - Read a file of map names, in mapcycle.txt format.
*
* There is one section by default, called "mapcyclefile" - it is mapped to the
* mapcycle.txt file, or whatever the contents of your mapcyclefile cvar is.
*
* If a plugin requests a map list file which doesn't exist, or is empty, SourceMod
* tries the "default" section, and then the "mapcyclefile" section.
*/
"MapLists"
{
/**
* Default requests go right to the mapcyclefile.
*/
"default"
{
"target" "mapcyclefile"
}
/* Admin menu, map menu */
"sm_map menu"
{
"file" "addons/sourcemod/configs/adminmenu_maplist.ini"
}
/* Admin menu, map voting menu */
"sm_votemap menu"
{
"file" "addons/sourcemod/configs/adminmenu_maplist.ini"
}
/* For the "randomcycle" plugin */
"randomcycle"
{
"target" "default"
}
/* For the "mapchooser" plugin */
"mapchooser"
{
"target" "default"
}
/* For the "rockthevote" plugin */
"rockthevote"
{
"target" "default"
}
}
"
Posted: Sun Sep 14, 2008 9:49 pm
by Neico
it stays there what you need to look at, also please use code or quote tags, it's gay to read that shit like that
Posted: Sun Sep 14, 2008 11:58 pm
by fug4life
From reading above and I dont have it, you set up each part refrencing each inteneded maplist.txt for that feature.
So if you want admin to have acess to more maps than players you need a seperate named maplist.txt with the additional maps in, but you must make sure it targets it in the script in the admin part of the code.
Posted: Mon Sep 15, 2008 2:31 am
by JigglyWiggly
Neico wrote:it stays there what you need to look at, also please use code or quote tags, it's gay to read that shit like that
I don't follow what you said, but I'm still a bit confused...
Posted: Mon Sep 15, 2008 5:07 am
by JigglyWiggly
Never mind I read it carefully and I got it.