I get this error when I try to run a simple hello world script, am I calling upon the API incorrectly?
"Error, Unfinished Socket Stream - Len < 6"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ScriptDotNet2;
using ScriptDotNet2.Network;
namespace test1
{
class Program
{
static void Main(string[] args)
{
Stealth.Default.Client.UOSay("Hello World.");
}
}
}