From 1128e0280acb6e8ac7c82e1cd97d1b8405e80f6d Mon Sep 17 00:00:00 2001 From: Atidot3 Date: Sun, 28 Jul 2024 18:44:56 +0200 Subject: [PATCH] reduce spam --- src/strategy/generic/EmoteStrategy.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/strategy/generic/EmoteStrategy.cpp b/src/strategy/generic/EmoteStrategy.cpp index d4a053bc..d3b72fa3 100644 --- a/src/strategy/generic/EmoteStrategy.cpp +++ b/src/strategy/generic/EmoteStrategy.cpp @@ -16,10 +16,10 @@ void EmoteStrategy::InitTriggers(std::vector& triggers) if (sPlayerbotAIConfig->randomBotTalk) { - triggers.push_back(new TriggerNode("often", NextAction::array(0, new NextAction("suggest what to do", 35.0f), - new NextAction("suggest dungeon", 50.0f), - new NextAction("suggest trade", 65.0f), - new NextAction("talk", 10.0f), + triggers.push_back(new TriggerNode("often", NextAction::array(0, new NextAction("suggest what to do", 10.0f), + new NextAction("suggest dungeon", 3.0f), + new NextAction("suggest trade", 3.0f), + new NextAction("talk", 1.0f), nullptr))); }