Difference between revisions of "Friendlist"

From Bebot Wiki 2
Jump to navigationJump to search
Line 29: Line 29:
 
     $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/ (official) or https://github.com/bitnykk/BeBot/ (sandbox)

Revision as of 10:12, 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/ (official) or https://github.com/bitnykk/BeBot/ (sandbox)