• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[SOLVED] rbc fixe chat alliance with horde

Status
Not open for further replies.

Come2WoW

Respected Member
Yes, but the alliances and the hordes do not talk or see each other in who.

Nkah now I've done all the work on the confing:
###################################################################################################
# PLAYER INTERACTION
#
#
# AllowTwoSide.Interaction.Calendar
# Description: Allow calendar invites between factions.
# Default: 0 - (Disabled)
# 1 - (Enabled)

AllowTwoSide.Interaction.Calendar = 1

#
# AllowTwoSide.Interaction.Channel
# Description: Allow channel chat between factions.
# Default: 0 - (Disabled)
# 1 - (Enabled)

AllowTwoSide.Interaction.Channel = 1

#
# AllowTwoSide.Interaction.Group
# Description: Allow group joining between factions.
# Default: 0 - (Disabled)
# 1 - (Enabled)

AllowTwoSide.Interaction.Group = 1

#
# AllowTwoSide.Interaction.Guild
# Description: Allow guild joining between factions.
# Default: 0 - (Disabled)
# 1 - (Enabled)

AllowTwoSide.Interaction.Guild = 1

#
# AllowTwoSide.Interaction.Auction
# Description: Allow auctions between factions.
# Default: 0 - (Disabled)
# 1 - (Enabled)

AllowTwoSide.Interaction.Auction = 1

#
# AllowTwoSide.Trade
# Description: Allow trading between factions.
# Default: 0 - (Disabled)
# 1 - (Enabled)

AllowTwoSide.Trade = 1

#
# TalentsInspecting
# Description: Allow inspecting characters from the opposing faction.
# Doesn't affect characters in gamemaster mode.
# Default: 1 - (Enabled)
# 0 - (Disabled)

TalentsInspecting = 1

#
###################################################################################################
 

Tommy

Founder
Yes, but the alliances and the hordes do not talk or see each other in who.

Nkah now I've done all the work on the confing:

They shouldn't be allowed to see each other in the who list, even if you have interfaction enabled. Unless there's an if statement. D:
 

DndTheTroll

Respected Member
use these queries:-
-- allow chat between opposite factions --
INSERT INTO `rbac_group_roles` (`groupId`, `roleId`) VALUES (1, 28);
-- allow you to add friend between opposite factions --
INSERT INTO `rbac_group_roles` (`groupId`, `roleId`) VALUES (1, 36);
-- allow channel chat betw. opp. factions --
INSERT INTO `rbac_group_roles` (`groupId`, `roleId`) VALUES (1, 30);
-- allow you to see opp factions in who list --
INSERT INTO `rbac_group_roles` (`groupId`, `roleId`) VALUES (1, 35);
-- allow you to make two side faction characters in the same account --
INSERT INTO `rbac_group_roles` (`groupId`, `roleId`) VALUES (1, 34);
-- two side mail interaction --
INSERT INTO `rbac_group_roles` (`groupId`, `roleId`) VALUES (1, 19);

hope thats help ^^
 
Status
Not open for further replies.
Top