Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problems getting whitelist to execute
#11
How can i do it run at private match? have in the server.cfg running mywhitelisted.cfg and added it to my mod.csv
Reply

#12
Do not add server.cfg to zone source add mywhitelist to zone source.

Place server.cfg and exec mywhitelist from server.cfg file.


How do you do it in private match?

1. Load mod.
2. shift + ~
3. exec server

//output:
// execing server.cfg from disk
// execing mywhitelist.cfg from fast file

Then start your private match.

Only difference with dedicated unranked is you don't have to exec the server.cfg as
that is configured in the game servers control panel.
Reply

#13
(08-01-2011, 15:32)deadcrayon Wrote: Do not add server.cfg to zone source add mywhitelist to zone source.

Place server.cfg and exec mywhitelist from server.cfg file.


How do you do it in private match?

1. Load mod.
2. shift + ~
3. exec server

//output:
// execing server.cfg from disk
// execing mywhitelist.cfg from fast file

Then start your private match.

Only difference with dedicated unranked is you don't have to exec the server.cfg as
that is configured in the game servers control panel.
Did all that and still having enviroment sounds Undecided
Reply

#14
(08-01-2011, 16:32)FRAN710 Wrote:
(08-01-2011, 15:32)deadcrayon Wrote: Do not add server.cfg to zone source add mywhitelist to zone source.

Place server.cfg and exec mywhitelist from server.cfg file.


How do you do it in private match?

1. Load mod.
2. shift + ~
3. exec server

//output:
// execing server.cfg from disk
// execing mywhitelist.cfg from fast file

Then start your private match.

Only difference with dedicated unranked is you don't have to exec the server.cfg as
that is configured in the game servers control panel.
Did all that and still having enviroment sounds Undecided
I have this:
mod.csv: rawfile,mywhitelist.cfg
mywhitelist.cfg
Code:
setmoddvar r_treeScale
setmoddvar wind_grass_gust_strength
setmoddvar wind_grass_scale
setmoddvar wind_grass_tension  
setmoddvar wind_local_frequency
setmoddvar wind_leaf_scale
setmoddvar r_streamFreezeState
setmoddvar r_picmip
setmoddvar r_picmip_bump
setmoddvar r_picmip_manual
setmoddvar r_picmip_spec
setmoddvar r_picmip_water
server.cfg
Code:
exec mywhitelist.cfg
mymod.gsc:
Code:
    setDvar( "r_treeScale", "0" );
    setDvar( "wind_grass_gust_strength", "0" );  
    setDvar( "wind_grass_scale", "0" );  
    setDvar( "wind_grass_tension", "0" );  
    setDvar( "wind_local_frequency", "0" );  
    setDvar( "wind_leaf_scale", "0" );
What's the problem? im not getting enviromental sounds removed... any help would be really appreciated.
Reply

#15
You don't need to put 'exec myWhitelist.cfg' in your server config. You need your players to type it in their console /exec myWhitelist.cfg or to automated it go to class.menu -> onOpen{ } and put execNow "exec myWhitelist"; in it
[Image: MaEIQ.png]
Reply

#16
(08-02-2011, 12:59)Pozzuh Wrote: You don't need to put 'exec myWhitelist.cfg' in your server config. You need your players to type it in their console /exec myWhitelist.cfg or to automated it go to class.menu -> onOpen{ } and put execNow "exec myWhitelist"; in it
On the menu thing had
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow exec "server.cfg";
        }
Will try thx.
Reply

#17
(08-02-2011, 13:16)FRAN710 Wrote:
(08-02-2011, 12:59)Pozzuh Wrote: You don't need to put 'exec myWhitelist.cfg' in your server config. You need your players to type it in their console /exec myWhitelist.cfg or to automated it go to class.menu -> onOpen{ } and put execNow "exec myWhitelist"; in it
On the menu thing had
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow exec "server.cfg";
        }
Will try thx.
it should be
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow "exec myWhitelist.cfg";
        }
server.cfg is on the server and cannot be executed by the client.
myWhitelist.cfg is on the client's pc and cannot be executed by the server.
[Image: MaEIQ.png]
Reply

#18
(08-02-2011, 13:21)Pozzuh Wrote:
(08-02-2011, 13:16)FRAN710 Wrote:
(08-02-2011, 12:59)Pozzuh Wrote: You don't need to put 'exec myWhitelist.cfg' in your server config. You need your players to type it in their console /exec myWhitelist.cfg or to automated it go to class.menu -> onOpen{ } and put execNow "exec myWhitelist"; in it
On the menu thing had
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow exec "server.cfg";
        }
Will try thx.
it should be
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow "exec myWhitelist.cfg";
        }
server.cfg is on the server and cannot be executed by the client.
myWhitelist.cfg is on the client's pc and cannot be executed by the server.
Did all that but still not whitelistening. I think the problem is that i have a quickmenu and that's for normal menus.
Reply

#19
(08-03-2011, 01:11)FRAN710 Wrote:
(08-02-2011, 13:21)Pozzuh Wrote:
(08-02-2011, 13:16)FRAN710 Wrote:
(08-02-2011, 12:59)Pozzuh Wrote: You don't need to put 'exec myWhitelist.cfg' in your server config. You need your players to type it in their console /exec myWhitelist.cfg or to automated it go to class.menu -> onOpen{ } and put execNow "exec myWhitelist"; in it
On the menu thing had
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow exec "server.cfg";
        }
Will try thx.
it should be
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow "exec myWhitelist.cfg";
        }
server.cfg is on the server and cannot be executed by the client.
myWhitelist.cfg is on the client's pc and cannot be executed by the server.
Did all that but still not whitelistening. I think the problem is that i have a quickmenu and that's for normal menus.

That shouldn't matter.
maybe remove the '.cfg'
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow "exec myWhitelist";
        }
Also, did you properly put the config in your mod csv?
Code:
rawfile,myWhitelist.cfg
[Image: MaEIQ.png]
Reply

#20
(08-03-2011, 06:40)Pozzuh Wrote:
(08-03-2011, 01:11)FRAN710 Wrote:
(08-02-2011, 13:21)Pozzuh Wrote:
(08-02-2011, 13:16)FRAN710 Wrote:
(08-02-2011, 12:59)Pozzuh Wrote: You don't need to put 'exec myWhitelist.cfg' in your server config. You need your players to type it in their console /exec myWhitelist.cfg or to automated it go to class.menu -> onOpen{ } and put execNow "exec myWhitelist"; in it
On the menu thing had
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow exec "server.cfg";
        }
Will try thx.
it should be
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow "exec myWhitelist.cfg";
        }
server.cfg is on the server and cannot be executed by the client.
myWhitelist.cfg is on the client's pc and cannot be executed by the server.
Did all that but still not whitelistening. I think the problem is that i have a quickmenu and that's for normal menus.

That shouldn't matter.
maybe remove the '.cfg'
Code:
        onOpen
        {
            setDvar cl_bypassMouseInput "1"
            execNow "exec myWhitelist";
        }
Also, did you properly put the config in your mod csv?
Code:
rawfile,myWhitelist.cfg
execNow exec "myWhitelist";
execNow "exec myWhitelist"; -> is this correct? its not working on private match or dedicated server.
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  [FIX] Mw3 server problems 99IRock 0 3,453 02-02-2013, 00:05
Last Post: 99IRock
  Hot Problems AZUMIKKEL 5 3,602 01-20-2013, 16:19
Last Post: Arteq
  Problems trying to import BO2 Camos DidUknowiPwn 3 2,798 12-27-2012, 18:11
Last Post: DidUknowiPwn
  Help Server problems (Wierd!) 99IRock 3 4,155 12-03-2012, 20:26
Last Post: 99IRock
  Help New .iwi files problems Shady360 3 3,787 11-30-2012, 13:05
Last Post: Shady360
  [Request] hotkey Bind and execute iwd files in main folder of game! raminr63 10 4,900 10-10-2012, 16:28
Last Post: Pozzuh
  Help Rotate/Delay problems Puffiamo 5 3,360 08-30-2012, 11:22
Last Post: d0h!
  CoD black ops + xkMod problems chrz 7 4,594 06-01-2012, 22:15
Last Post: surtek
  addon/ error/problems hillbilly 0 1,572 05-12-2012, 07:49
Last Post: hillbilly
  Help mod problems kashwak 0 1,360 03-26-2012, 08:22
Last Post: kashwak

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.