so lately i have been trying to add a simple welcome message from a proxy that i built based on silkroad security api.
the goal is simple eveytime a user logging in succesfully a simple welcome notice will occur, (locally).
so i tried this:
sendpm methods is basically a notice packet thats it.
but then the shard manager shows: msg is unhandled 0x bla bla bla
what am i missing?
the goal is simple eveytime a user logging in succesfully a simple welcome notice will occur, (locally).
so i tried this:
Code:
if (_pck.Opcode == 0x7001)
{
string Charname = _pck.ReadAscii();
Console.Write("Character logged on => " + Charname + "\n");
SendPM("Hello " + Charname + ".");
}
but then the shard manager shows: msg is unhandled 0x bla bla bla
what am i missing?