Wäre diese Channelconfig in der D2BotLead.dbj richtig?
Den Follower hab ich so eingestellt
Was ist daran falsch, der Leader joint nicht in den Channel und der Follower joint nicht in das Game vom Leader?
Code:
var ChannelConfig = {
// Now you can join separate channels for separate profiles, use separate join messages etc
// Format 1 - single channel: "Profile Name": {JoinChannel: "channel", FirstJoinMessage: "login message", AnnounceGames: true}
// Format 2 - multiple channels: "Profile Name": {JoinChannel: ["channel 1", "channel 2"], FirstJoinMessage: ["channel 1 login", "channel 2 login"], AnnounceGames: true}
// Multiple entries are separated by a comma
"Mystery_XYZ": {JoinChannel: "Mystery", FirstJoinMessage: ".login", AnnounceGames: true}
};
Code:
var JoinSettings = {
"Mystery_X": ["Mystery_XL"]
};
// Advanced config - you don't have to edit this unless you need some of the features provided
var AdvancedConfig = {
/* Features: Override join delay for each profile
* Format *:
"Profile Name": {JoinDelay: number_of_seconds}
* Example * (don't edit this - it's just an example):
"MyProfile1": {JoinDelay: 3},
"MyProfile2": {JoinDelay: 6}
*/
// Put your lines under this one. Multiple entries are separated by commas. No comma after the last one.
"Mystery_XL": {JoinDelay: 1}
};