Hey guys,
for last couple days i am trying to setup a “leader - manual gamer” and followers that will always join the same game as a manual player and do nothing. But with no success so I would really appreciate some help.
I setup an profile for D2BotLead called Leader where i just added to parameters “-L”
and then after that i created a game called game1 password game
then i created D2BotFollow profile called Follower.
Inside a config file D2BotFollow I changed below lines:
var JoinSettings = {
“Leader”: [“all”]
};
// Put your lines under this one. Multiple entries are separated by commas. No comma after the last one.
“Follower”: {JoinDelay: 3}
Then inside a Paladin.js (that’s my follower) I changed below lines:
Scripts.UserAddon = false;
Config.Leader = “LeadersCharName”;
Config.QuitList = [“LeadersCharName”];
Config.QuitListMode = 1;
Config.QuitListDelay = [1, 5];
Please help me with that, what i need to change to make it work?