At last. Nothing wrong with SM itself, just SM users

And if you wondering why mapchooser works but not other plugins, it have coded slightly different way.
It start look server cvar mapcyclefile if not found map file first, not all SM base plugin do that.
I urge you to read yet these two links what I posted before
https://forums.alliedmods.net/showpo...70&postcount=3
Quote:
Originally Posted by Nomarky
I have several SM installations, each in its own folder in the addons folder. SM otherwise loads and works fine. Each server has its own mapcycle, defined by the mapcyclefile cvar. That also works fine, the server cycles maps form that file correctly.
The strange thing is that votemap works, which calls from the same file, but change map and set next map in the admin menu don't.
|
But after todays/yesterdays update,
server cvar mapcyclefile
reads files from now on inside CFG folder.
So sourcemod not quite following into same directory, yet! https://bugs.alliedmods.net/show_bug.cgi?id=5719
You need do map cycle file, inside cfg and duplicate to cstrike folder.
*Add map cycle file in cstrike...
About your map list file, add it in
cstrike folder
Code:
"MapLists"
{
/**
* Default requests go right to the mapcyclefile.
*/
"default"
{
"target" "mapcyclefile" // reads file what server mapcyclefile have
}
/* Admin menu, map menu */
"sm_map menu"
{
"file" "dm3_maplist.txt"
}
/* Admin menu, map voting menu */
"sm_votemap menu"
{
"target" "sm_map menu"
}
/* For the "randomcycle" plugin */
"randomcycle"
{
"target" "default"
}
/* For the "mapchooser" plugin */
"mapchooser"
{
"target" "default"
}
/*For the 'Votemap' (PlayersVotes) Plugin*/
"playersvotes"
{
"file" "dm3_maplist.txt"
}
/*For Customvotes*/
"sm_cvote setnextmap"
{
"file" "dm3_maplist.txt"
}
/*For Customvotes*/
"sm_cvote setnextmapmulti"
{
"file" "dm3_maplist.txt"
}
/*For Customvotes*/
"sm_cvote votemap"
{
"file" "dm3_maplist.txt"
}
}
__________________