Todays wipe broke this plugin, pleaseeeee patchSolved

after todays wipe, this plugin no longer works, please patch / update the plugin!

To fix you need to add this:

using Network;​

Β 

And replace this block of code:

private void SendEchoConsole(Network.Connection cn, string msg)
{
    if (Network.Net.sv.IsConnected())
    {
        Network.Net.sv.write.Start();
        Network.Net.sv.write.PacketID(Network.Message.Type.ConsoleMessage);
        Network.Net.sv.write.String(msg);
        Network.Net.sv.write.Send(new Network.SendInfo(cn));
    }
    
}


With:

private void SendEchoConsole(Network.Connection cn, string msg)
{
    if (Net.sv.IsConnected())
    {
        NetWrite netWrite = Net.sv.StartWrite();
        netWrite.PacketID(Network.Message.Type.ConsoleMessage);
        netWrite.String(msg);
        netWrite.Send(new SendInfo(cn));
    }
    
}

thank you my friend! you are a legend =DπŸ™‡β€β™€οΈ

Where do you put theΒ 

Β 

"

using Network;

"Β 
Part?

Β 
nMy2DPywPPVR2hF Altamos

Where do you put theΒ 

Β 

"

using Network;

"Β 
Part?

At the top of the file, next to the other using statements that are in there already.

BLESS YOU internet person <3 thanks!

Locked automatically