Hey all,
Now am trying to be in patch 5755 :D => TOO HARD :(
i have updated Packet[10014] => Spawnacket
but i see the monster one time and it hide again
and when i see it, i see it like npc =))
i've updated Y, X + 4 to be X = 100, Y = 102
and Name +4 to be Name = 242
and this is Packet[10014]
I have tried more than 50 time but i didn't make it :/
is there any packet i should upgrade to fix this problem ? any help ?
Now am trying to be in patch 5755 :D => TOO HARD :(
i have updated Packet[10014] => Spawnacket
but i see the monster one time and it hide again
and when i see it, i see it like npc =))
i've updated Y, X + 4 to be X = 100, Y = 102
and Name +4 to be Name = 242
and this is Packet[10014]
Code:
public string Name
{
get
{
return _Name;
}
set
{
_Name = value;
if (ClanName != "")
{
SpawnPacket = new byte[8 + 242 + _Name.Length + ClanName.Length + 2 + 4];
WriteUInt16((ushort)(SpawnPacket.Length - 8), 0, SpawnPacket);
WriteUInt16(10014, 2, SpawnPacket);
WriteStringList(new List<string>() { _Name, "", ClanName, "" }, 242, SpawnPacket);
}
else
{
SpawnPacket = new byte[8 + 242 + _Name.Length + 18 + 4];
WriteUInt16((ushort)(SpawnPacket.Length - 8), 0, SpawnPacket);
WriteUInt16(10014, 2, SpawnPacket);
WriteStringList(new List<string>() { _Name, "" }, 242, SpawnPacket);
}
}
}
is there any packet i should upgrade to fix this problem ? any help ?