• 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] Alliance - Horde Language

Status
Not open for further replies.

Dark

Enthusiast
hey guys how to make universal language for alliance and horde how enable talk on Trinity Core
 

Dark

Enthusiast
it's not working :) alliance can't see horde messages and horde alliance messages
worldserver.conf
Code:
###################################################################################################
# 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
Did you save the file and restart the server after you changed the settings? It works. :p
 

Tommy

Founder
Can you show me a screenshot? Works perfectly fine for me.

Are you referring to channel/guild/party chat or?
 

Dark

Enthusiast
worldserver.conf already saved and worldserver restarted ! :D
29vialc.jpg
 

Tommy

Founder
Well, the config options only pertains to channel, groups, guilds, etc -- not /say, /yell, etc.

What you could do is edit playercreateinfo_spell and give each race the Language they don't have. Here are the spellIds:

668 - Language Common
669 - Language Orcish
672 - Language Dwarven
671 - Language Darnassian
17737 - Language Gutterspeak
670 - Language Taurahe
7340 - Language Gnomish
7341 - Language Troll
813 - Language Thalassian
29932 - Language Draenei
 

Tommy

Founder
oh yes but can we make Cript or anything make Universal Language for all players ?

What I mentioned above works for all players. You can make a script, but the Languages are spells. Making a script would be pointless when you have tables that does it by default.
 

Synth

Exalted Member
World.conf is not working anymore RBAC you have to enabled on RBAC with using this query's:
Code:
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
(192, 25), -- Allow say chat between factions for Administrator
(193, 25), -- Allow say chat between factions for GameMaster
(194, 25), -- Allow say chat between factions for Moderators
(195, 25), -- Allow say chat between factions for Players
(192, 26), -- Allow channel chat between factions for Administrator
(193, 26), -- Allow channel chat between factions for GameMaster
(194, 26), -- Allow channel chat between factions for Moderators
(195, 26); -- Allow channel chat between factions for Players
Add this to your "auth" DB i hope its fixed :smile:
 
Status
Not open for further replies.
Top