Add osNpcSayTo(key npc, key target, integer channel, string message)

Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
This commit is contained in:
Bill Blight
2018-12-10 21:52:36 -08:00
committed by UbitUmarov
parent af2a9d9508
commit 0881840946
4 changed files with 32 additions and 2 deletions

View File

@@ -682,8 +682,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
m_OSSL_Functions.osNpcSay(npc, channel, message);
}
public void osNpcSayTo(LSL_Key npc, string target, int channel, string msg)
{
m_OSSL_Functions.osNpcSayTo(npc, target, channel, msg);
}
public void osNpcShout(key npc, int channel, string message)
{
m_OSSL_Functions.osNpcShout(npc, channel, message);