49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using Core.Models.Eft.Common;
|
|
using Core.Models.Eft.Profile;
|
|
using Core.Services;
|
|
using Core.Utils;
|
|
using SptCommon.Annotations;
|
|
|
|
namespace Core.Helpers.Dialogue.SptMessageHandlers
|
|
{
|
|
[Injectable]
|
|
public class HelloMessageHandler(
|
|
MailSendService _mailSendService,
|
|
RandomUtil _randomUtil) : IChatMessageHandler
|
|
{
|
|
protected List<string> _listOfMessages = ["hello", "hi", "sup", "yo", "hey", "bonjour"];
|
|
|
|
public int GetPriority()
|
|
{
|
|
return 100;
|
|
}
|
|
|
|
public bool CanHandle(string message)
|
|
{
|
|
return _listOfMessages.Contains(message, StringComparer.OrdinalIgnoreCase);
|
|
}
|
|
|
|
public void Process(string sessionId, UserDialogInfo sptFriendUser, PmcData sender)
|
|
{
|
|
_mailSendService.SendUserMessageToPlayer(
|
|
sessionId,
|
|
sptFriendUser,
|
|
_randomUtil.GetArrayValue([
|
|
"Howdy",
|
|
"Hi",
|
|
"Greetings",
|
|
"Hello",
|
|
"Bonjor",
|
|
"Yo",
|
|
"Sup",
|
|
"Heyyyyy",
|
|
"Hey there",
|
|
"OH its you",
|
|
$"Hello {sender?.Info?.Nickname}",
|
|
]),
|
|
[], null
|
|
);
|
|
}
|
|
}
|
|
}
|