Jump to content

Home

quiet bots!


penguin_hash

Recommended Posts

Posted

Can't seem to get the bots on my server to stop chatting. My server.cfg bot section is as follows:

 

// setup bots

set bot_enable "1"

set bot_minplayers "8"

seta g_spSkill "3"

seta bot_challenge "1"

seta bot_nochat "1"

seta bot_fastchat "0"

 

I am confused with the set/seta difference as well.

Posted

dont use quotes on the numbers

 

// setup bots

set bot_enable "1"

set bot_minplayers "8"

seta g_spSkill "3"

seta bot_challenge "1"

seta bot_nochat "1"

seta bot_fastchat "0"

 

should be:

 

// setup bots

set bot_enable 1

set bot_minplayers 8

seta g_spSkill 3

seta bot_challenge 1

seta bot_nochat 1

seta bot_fastchat 0

 

i beleive the difference between set and seta is that seta changes the value in your config file making it more permenet set is more temporary

 

hope that helps

Posted

In my experience, quotes really make no difference except in cases where text with spaces are used. However, the use of quotes makes for easier readability--imho.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...