This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

set nb_group(bla) "egg1, egg2"

Old posts that have not been replied to for several years.
Locked
s
smile

set nb_group(bla) "egg1, egg2"

Post by smile »

set nb_group(yesway) "egg1, egg2"
set nb_group(noway) "egg1, egg2"

set nb_component(mainserver) 0
nb_set $nb_group(yesway) component(mainserver) 0
nb_set $nb_group(noway) component(mainserver) 1


Is this the right way to do it? When I do .mservers I only get the mainserver of the bot I'm on.
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Post by slennox »

I don't believe you should add a space after the comma when listing the bots in nb_group.

In the last two lines you're missing the nb_prefix for the word "component".
s
smile

Post by smile »

okay, the first line was without spaces in the netset.tcl file.

So the other line would be like this:
nb_set $nb_group(group) $nb_prefix(mainserver) 0

Or?
User avatar
slennox
Owner
Posts: 593
Joined: Sat Sep 22, 2001 8:00 pm
Contact:

Post by slennox »

nb_set $nb_group(group) nb_component(mainserver) 0
Locked