Difference between revisions of "Friendlist"
(Created page with 'In both AO and AOC, each character should be limited to 1000 contact in friend/buddy list. This limitation is a problem : - for a guildbot of an org with more than 1000 members …') |
|||
Line 7: | Line 7: | ||
So how to bypass this issue ? | So how to bypass this issue ? | ||
− | In Bebot 0.6.x : | + | |
+ | == In Bebot 0.6.x : == | ||
+ | |||
+ | |||
- AOC => might use slaves module only (need testing) | - AOC => might use slaves module only (need testing) | ||
+ | |||
- AO => can use slaves module OR AoCP solution (see below) | - AO => can use slaves module OR AoCP solution (see below) | ||
In short, you need to download file 02_Slaves.php within bot main folder and then add its config line(s) looking like : | In short, you need to download file 02_Slaves.php within bot main folder and then add its config line(s) looking like : | ||
$slaves[] = array("account", "password", "Character); | $slaves[] = array("account", "password", "Character); | ||
+ | |||
More details in this archived topic http://bebot.shadow-realm.org/ao-0-6-x-customunofficial-modules/slaves/ | More details in this archived topic http://bebot.shadow-realm.org/ao-0-6-x-customunofficial-modules/slaves/ | ||
− | In Bebot 0.7.x : | + | |
+ | == In Bebot 0.7.x : == | ||
+ | |||
+ | |||
- AO => must use AoCP solution ; in short, it's a scala proxy of several bots sharing bigger friendlist | - AO => must use AoCP solution ; in short, it's a scala proxy of several bots sharing bigger friendlist | ||
+ | |||
- AOC => has a new tailored solution ; in short, each bot has a slave added to its config by a line looking like : | - AOC => has a new tailored solution ; in short, each bot has a slave added to its config by a line looking like : | ||
$slave = "Character"; | $slave = "Character"; | ||
+ | |||
Both solution are detailed within 0.7 Readme from Git https://github.com/J-Soft/BeBot/ | Both solution are detailed within 0.7 Readme from Git https://github.com/J-Soft/BeBot/ |
Revision as of 10:11, 29 December 2020
In both AO and AOC, each character should be limited to 1000 contact in friend/buddy list.
This limitation is a problem : - for a guildbot of an org with more than 1000 members - for a raidbot with over 1000 subscribers
So how to bypass this issue ?
In Bebot 0.6.x :
- AOC => might use slaves module only (need testing)
- AO => can use slaves module OR AoCP solution (see below) In short, you need to download file 02_Slaves.php within bot main folder and then add its config line(s) looking like :
$slaves[] = array("account", "password", "Character);
More details in this archived topic http://bebot.shadow-realm.org/ao-0-6-x-customunofficial-modules/slaves/
In Bebot 0.7.x :
- AO => must use AoCP solution ; in short, it's a scala proxy of several bots sharing bigger friendlist
- AOC => has a new tailored solution ; in short, each bot has a slave added to its config by a line looking like :
$slave = "Character";
Both solution are detailed within 0.7 Readme from Git https://github.com/J-Soft/BeBot/