Skip to content

Commit

Permalink
tweaked default reply chances for special link messages (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Redbu11dev authored Aug 1, 2024
1 parent f4998ce commit d84ff19
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions playerbot/PlayerbotAIConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,8 @@ bool PlayerbotAIConfig::Initialize()
broadcastChanceGuildManagement = config.GetIntDefault("AiPlayerbot.BroadcastChanceGuildManagement", 30000);
////////////////////////////

toxicLinksRepliesChance = config.GetIntDefault("AiPlayerbot.ToxicLinksRepliesChance", 100); //0-100
thunderfuryRepliesChance = config.GetIntDefault("AiPlayerbot.ThunderfuryRepliesChance", 100); //0-100
toxicLinksRepliesChance = config.GetIntDefault("AiPlayerbot.ToxicLinksRepliesChance", 30); //0-100
thunderfuryRepliesChance = config.GetIntDefault("AiPlayerbot.ThunderfuryRepliesChance", 40); //0-100
guildRepliesRate = config.GetIntDefault("AiPlayerbot.GuildRepliesRate", 100); //0-100

botAcceptDuelMinimumLevel = config.GetIntDefault("AiPlayerbot.BotAcceptDuelMinimumLevel", 10);
Expand Down
4 changes: 2 additions & 2 deletions playerbot/aiplayerbot.conf.dist.in
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ AiPlayerbot.RandomBotQuestIds = 7848,3802,5505,6502,7761,9378
##################################################################################

# Chance to reply to toxic links with toxic links (0-100)
# AiPlayerbot.ToxicLinksRepliesChance = 100
# AiPlayerbot.ToxicLinksRepliesChance = 30
# Chance to reply to thunderfury with thunderfury (0-100)
# AiPlayerbot.ThunderfuryRepliesChance = 100
# AiPlayerbot.ThunderfuryRepliesChance = 40
# Bots will chat in guild about certain events (int) (0-100)
# AiPlayerbot.GuildRepliesRate = 100 # Reply someone saying something.

Expand Down
4 changes: 2 additions & 2 deletions playerbot/aiplayerbot.conf.dist.in.tbc
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,9 @@ AiPlayerbot.RandomBotQuestIds = 7848,3802,5505,6502,7761
##################################################################################

# Chance to reply to toxic links with toxic links (0-100)
# AiPlayerbot.ToxicLinksRepliesChance = 100
# AiPlayerbot.ToxicLinksRepliesChance = 30
# Chance to reply to thunderfury with thunderfury (0-100)
# AiPlayerbot.ThunderfuryRepliesChance = 100
# AiPlayerbot.ThunderfuryRepliesChance = 40
# Bots will chat in guild about certain events (int) (0-100)
# AiPlayerbot.GuildRepliesRate = 100 # Reply someone saying something.

Expand Down
4 changes: 2 additions & 2 deletions playerbot/aiplayerbot.conf.dist.in.wotlk
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ AiPlayerbot.RandomBotQuestIds = 7848,3802,5505,6502,7761
##################################################################################

# Chance to reply to toxic links with toxic links (0-100)
# AiPlayerbot.ToxicLinksRepliesChance = 100
# AiPlayerbot.ToxicLinksRepliesChance = 30
# Chance to reply to thunderfury with thunderfury (0-100)
# AiPlayerbot.ThunderfuryRepliesChance = 100
# AiPlayerbot.ThunderfuryRepliesChance = 40
# Bots will chat in guild about certain events (int) (0-100)
# AiPlayerbot.GuildRepliesRate = 100 # Reply someone saying something.

Expand Down

0 comments on commit d84ff19

Please sign in to comment.