Alright guys i have been fiddling with my netbots for awhile now and i can't seem to figure out why this won't load.....probably some stupid error i overlooked, forget a comma or somethin, but this is what i keep getting!!
[11:14] Tcl error in file '1':
[11:14] invalid command name "nb_set"
while executing
"nb_set BiOS,RockCrawl,Boeri nb_component(chanlimit) 1"
(file "netbots/netset.tcl" line 101)
invoked from within
"source netbots/netset.tcl"
(file "1" line 1319)
From where you got the "nb_set BiOS,RockCrawl,Boeri " part? Actualy only the "nb_set" part. I don't see it in the netset.tcl file. Check to see if you didn't a typo error or something.
Once the game is over, the king and the pawn go back in the same box.
The nb_set feature allows you to customise components and settings for each netbot in the hub's copy of the netset.tcl file - you don't need to create different versions (in fact, you should NOT create different versions unless you never intend to use netupdate) of netset.tcl to have different components and settings for each bot. Instead, you control settings for all bots in one netset.tcl file. By default, all bots will use the standard settings - e.g. if you have set nb_update "", all bots will use that setting for nb_update. If you'd like a bot to use a different setting, you add an nb_set line. The nb_set syntax is:
nb_set <bot> <setting> <value>
OR
nb_set <bot1,bot2,botN> <setting> <value>
OR
nb_set $nb_group(groupname) <setting> <value> (nb_group is explained in the components documentation)
The nb_set line is placed just after the default setting. Example:
set nb_update ""
nb_set Mikado,BoBo nb_update "YourNick"
11:14] Tcl error in file '1':
[11:14] invalid command name "nb_set"
while executing
"nb_set BiOS,RockCrawl,Boeri nb_component(chanlimit) 1"
(file "netbots/netset.tcl" line 101)
invoked from within
"source netbots/netset.tcl"
(file "1" line 1319)
According to that, you are trying to import the netset.tcl files, when you should be importing the netbots.tcl file.
This will take care of loading netset.tcl for you.
11:14] Tcl error in file '1':
[11:14] invalid command name "nb_set"
while executing
"nb_set BiOS,RockCrawl,Boeri nb_component(chanlimit) 1"
(file "netbots/netset.tcl" line 101)
invoked from within
"source netbots/netset.tcl"
(file "1" line 1319)
According to that, you are trying to import the netset.tcl files, when you should be importing the netbots.tcl file.
This will take care of loading netset.tcl for you.
Knew it was somethin i just toally overlooked or didn't see or somethin!