Der Request im HLSW Deiner Server IP hat mich zunaechst ein wenig verwirrt.
Egale: Falls Dein Server auf einer Linux Plattform laeuft, dann reicht es schon, wenn Du das Verzeichnis Adminmod im addons Verzeichnis klein schreibst, also:
Code:
addons/adminmod/config/........
Linux ist, was GrossKleinschreibung angeht, recht penibel. Allerdings muesstest Du dann auch alle Verweise in der plugin.ini entsprechend aendern.
Eine Alternative dazu waere, wenn Du das menu_plugin von SDal editierst:
von:
Code:
new g_PlayerCommandFile[]="addons/adminmod/config/ammenu/playercommands.cfg";
new g_MapCommandFile[]="addons/adminmod/config/ammenu/mapcommands.cfg";
new g_MapFile[]="addons/adminmod/config/ammenu/maps.cfg";
new g_ServerCommandFile[]="addons/adminmod/config/ammenu/servercommands.cfg";
new g_VoteCommandFile[]="addons/adminmod/config/ammenu/votecommands.cfg";
new g_OtherCommandFile[]="addons/adminmod/config/ammenu/othercommands.cfg";
new g_StoredCommandFile[]="addons/adminmod/config/ammenu/";
new g_tempStoredCommandFile[]="addons/adminmod/config/ammenu/tempstoredcmds.cfg";
in:
Code:
new g_PlayerCommandFile[]="addons/Adminmod/config/ammenu/playercommands.cfg";
new g_MapCommandFile[]="addons/Adminmod/config/ammenu/mapcommands.cfg";
new g_MapFile[]="addons/Adminmod/config/ammenu/maps.cfg";
new g_ServerCommandFile[]="addons/Adminmod/config/ammenu/servercommands.cfg";
new g_VoteCommandFile[]="addons/Adminmod/config/ammenu/votecommands.cfg";
new g_OtherCommandFile[]="addons/Adminmod/config/ammenu/othercommands.cfg";
new g_StoredCommandFile[]="addons/Adminmod/config/ammenu/";
new g_tempStoredCommandFile[]="addons/Adminmod/config/ammenu/tempstoredcmds.cfg";
(achte auf die Grossschreibung des Adminmod Verzeichnisses)
Auf einer Windowsplattform duerfte das aber irrelevant sein.