Sound on dialogues Problems

[FONT=Century Gothic]
Greetings unrealians:

I got a problem dealing with the sound , I’m playing my dialogs on the event tick and then i call a function that plays them depending on how many items you collected. The problem is I’m just loosing memory because I suspct event tick is
not the best function to play and call sounds . Could be it’s playing them again and again and would be better just to call once .

Well i will share the blueprint , hope you guys can help me .

Hi Eratos!
Can I know when you want to play the dialogues?
Event Tick is called on every frame…avoid it.

Anyway, if you want Dialogue X when you have X collected items, you can use some Custom Events.

EXAMPLE:

If “Fish” < 5 call “Event 1”
If “Fish” >=5 and < 10 call “Event 2”

Event 1 ----> Play Dialogue 1
Event 2 ----> Play Dialogue 2