AllowTwoSide.Accounts
AllowTwoSide.WhoList
AllowTwoSide.AddFriend
I [COLOR=rgb(36,41,46)]can’t find the three items in world config. tell me where are they?
[COLOR=rgb(36,41,46)]thanks~
AllowTwoSide.Accounts
AllowTwoSide.WhoList
AllowTwoSide.AddFriend
I [COLOR=rgb(36,41,46)]can’t find the three items in world config. tell me where are they?
[COLOR=rgb(36,41,46)]thanks~
They were probably moved to rbac as permissions
[FONT=‘Courier New’]mysql> select * from auth.rbac_permissions where id > 23 AND id < 30;
±—±------------------------------------------------+
| id | name |
±—±------------------------------------------------+
| 24 | Two side faction characters on the same account |
| 25 | Allow say chat between factions |
| 26 | Allow channel chat between factions |
| 27 | Two side mail interaction |
| 28 | See two side who list |
| 29 | Add friends of other faction |
±—±------------------------------------------------+[/FONT]
[FONT=‘Courier New’]mysql> select * from auth.rbac_permissions where id = 195;
±----±-----------------------+
| id | name |
±----±-----------------------+
| 195 | Role: Sec Level Player |
±----±-----------------------+[/FONT]
EXAMPLE: Let’s add both factions on same account
[FONT=‘Courier New’]mysql> INSERT INTO auth
.rbac_linked_permissions
(id
, linkedId
) VALUES (‘195’, ‘24’);[/FONT]
[FONT=‘Courier New’]mysql> select * from auth.rbac_linked_permissions where id = 195;
±----±---------+
| id | linkedId |
±----±---------+
| 195 | 3 |
| 195 | 4 |
| 195 | 5 |
| 195 | 6 |
| 195 | 24 |
| 195 | 27 |
| 195 | 49 |
| 195 | 199 |
±----±---------+[/FONT]